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 searched the Yolov8 Tracking issues and found no similar enhancement requests.
Description
IoU is not a great fit for small/fast moving objects because there can easily be no overlap in cases where detections are actually quite close.
There are other metrics where the tolerance for discrepancy between the distance between detections does not depend on the size of the detected object like centroid distance.
Ideally, the Tracker class should abstract over the distance metric that is used. IoU could be the default, but in some cases centroid distance + perhaps a separate box size comparison might be more appropriate.
I agree that the addition of centroid distance would make sense for fast moving objects. I have however not time to implement or experiment with this at the moment, but will leave this open 😄.
👋 Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.
Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!
Search before asking
Description
IoU is not a great fit for small/fast moving objects because there can easily be no overlap in cases where detections are actually quite close.
There are other metrics where the tolerance for discrepancy between the distance between detections does not depend on the size of the detected object like centroid distance.
Ideally, the Tracker class should abstract over the distance metric that is used. IoU could be the default, but in some cases centroid distance + perhaps a separate box size comparison might be more appropriate.
IOU is hard coded e.g. here:
https://github.com/mikel-brostrom/yolo_tracking/blob/05172962914805dab99acb3d2d8592797dbf38a7/boxmot/trackers/strongsort/sort/tracker.py#L147
Use case
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: