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
How should i understand the annotation?
Is it something like that? <Target ID>, <frame number>, <bbox_left>,<bbox_top>,<bbox_width>,<bbox_height>,<score>,<object_category>,<truncation>,<occlusion>
How may i display the bounding boxes such that it look like that? I do not need the class, but i just need the ID and the bounding box.
Or something like that
The text was updated successfully, but these errors were encountered:
The only thing that you need is the class ID and the boxes, so you could edit the annotations files and keep only the important information, and then manually draw the boxes per image with the opencv. You could try something like this,(adjust it to your problem). The key lines are the cv2.rectangle and cv2.putText.
@KyriakosChris hey! Thanks for the code. I forgot to close the issue as i solved it awhile back using cv2 methods too. Your implementation is neater :)
I notice that the annotation files looked like that
How should i understand the annotation?
Is it something like that?
<Target ID>, <frame number>, <bbox_left>,<bbox_top>,<bbox_width>,<bbox_height>,<score>,<object_category>,<truncation>,<occlusion>
How may i display the bounding boxes such that it look like that? I do not need the class, but i just need the ID and the bounding box.
Or something like that
The text was updated successfully, but these errors were encountered: