Hey there,
I noticed that my semantic labels contain two semantic classes for the “Default” class, which both get generated automatically. The UNLABELLED class is used, when Props simply have no label assigned and the BACKGROUND class represents the space where there is realy nothing. Is it possible to fuse those two classes together, as I don’t want to separate them and I want both together as my “Default” class. Do I need to write a custom Writer for this?
I initialize my BasicWriter like this:
writer = rep.WriterRegistry.get("BasicWriter")
writer.initialize( output_dir="output_dir", rgb=True, semantic_segmentation=True, colorize_semantic_segmentation=False, semantic_types=['Label'])
writer.attach([render_product])
Thanks in advance.