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
A detection is matched to a groundtruth and marked as true
positive if 1) IoU is over 0.5 and 2) the groundtruth is not
matched to another detection. When multiple detections are
matched to the same groundtruth, we only pick the one with
the highest IoU.
In the code eval_task1.py I don't see the part when multiple detections are matched to the same groundtruth, it only pick the one with the highest IoU. Right now it seems the code only match criteria 1), but not 2).
The text was updated successfully, but these errors were encountered:
According to the RCTW-17 paper on arXiv, it says,
In the code eval_task1.py I don't see the part when multiple detections are matched to the same groundtruth, it only pick the one with the highest IoU. Right now it seems the code only match criteria 1), but not 2).
The text was updated successfully, but these errors were encountered: