We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 344a43e commit 69f7172Copy full SHA for 69f7172
src/superannotate/lib/core/usecases/images.py
@@ -838,11 +838,10 @@ def execute(self):
838
color = class_color_map.get(instance["className"])
839
if not color:
840
class_color_map[instance["className"]] = self.generate_color()
841
- fill_color = (
842
- *class_color_map[instance["className"]],
843
- self.TRANSPARENCY,
844
- )
845
for image in images:
+ fill_color = (
+ *class_color_map[instance["className"]], 255 if image.type == "fuse" else self.TRANSPARENCY
+ )
846
if instance["type"] == "bbox":
847
image.content.draw_bbox(
848
**instance["points"],
0 commit comments