You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked the repo for the custom visualization code but did not find anything, thus assuming something like detectron2:
fromdetectron2.utils.visualizerimportVisualizermeta_data=# metadata of the dataset data=# first image of the dataset in the detectron2 dict formatv=Visualizer(data['image'].permute(1,2,0).numpy(), metadata=meta_data, scale=1.0)
out=v.draw_sem_seg(one_data[0]['obj_part_sem_seg'])
Image.fromarray(out.get_image())
The problem is that I get a nonsense class label visualized compared to the image (using ground truth) with the code above.
Is there an example of any of the following:
a script that uses the inference output
a single inference example from image input to visualization (as seen in the paper)?
The text was updated successfully, but these errors were encountered:
Dear authors,
I have checked the repo for the custom visualization code but did not find anything, thus assuming something like detectron2:
The problem is that I get a nonsense class label visualized compared to the image (using ground truth) with the code above.
Is there an example of any of the following:
The text was updated successfully, but these errors were encountered: