rafaelpadilla / review_object_detection_metrics

Object Detection Metrics. 14 object detection metrics: mean Average Precision (mAP), Average Recall (AR), Spatio-Temporal Tube Average Precision (STT-AP). This project supports different bounding box formats as in COCO, PASCAL, Imagenet, etc.
Other
1.08k stars 215 forks source link

Coordinates format has repeated option #119

Closed NIKHILDUGAR closed 1 year ago

NIKHILDUGAR commented 1 year ago

printshot_main_screen

Coordinates format 1 and 2 are the same and there should be one that takes the absolute value.

rafaelpadilla commented 1 year ago

I disagree. All formats are different. Some consider x,y,w,h and others consider x,y,x2,y2. There are options for absolute and relative values as well.

What format do you use that is not covered in one of these options?

NIKHILDUGAR commented 1 year ago

There seems to be no textual difference between the first 2 options. I wanted to use x center, ycenter, and width, height on absolute values this is what my UI looks like currently. Screenshot from 2023-03-06 16-14-13

rafaelpadilla commented 1 year ago

If you compare the first two options horizontally, the difference is that one uses , while the other requires . If you compare them vertically, one requires ABSOLUTE values, while the other requires RELATIVE ones.

As your format is not fully supported, you will need to adapt your format for one of the supported ones.

NIKHILDUGAR commented 1 year ago

ok understood. thank you.