Replies: 1 comment
-
Hi @le02146 , By default, the scale metrics use absolute ares (in pixels). For the relative/ratio, you'll need to implement the logic in the function _evaluate_image(...). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The coco evaluation metrics use AP in three different size scales: small (
area < 32^2 pixels
), medium and large.https://github.com/rafaelpadilla/review_object_detection_metrics#aps-apm-and-apl-
How to use dfferent setting?
In my case, I want to define a object as small when the width ratio is small ?
For example,
width_of_bbox / width_of_image < 10%
.Any suggestioins?
Thank you .
Beta Was this translation helpful? Give feedback.
All reactions