-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intersection Over Union (IoU) as feature penalty #238
Comments
This issue has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/overlap-tracker-in-trackmate-links-2-spots-in-the-same-frame/80680/6 |
Hi @tinevez, As I am very interested in this feature, I may be motivated enough to try to implement it! Yet, I would like to have your opinion on the best way to do so. Actually IoU would be quite different from other penalties since it is not a My first idea would be to add a weight for this IoU penalty, set to 0 by default, and in
This What is your opinion on this? |
Excellent! I think it would be wise not to make it a penalty, but a basic cost. For this I would do another tracker, separate from the ones that are based on distance. I don't think mixing distance and IoU would work well. It should not be crazy hard to at least test the idea: The quickest way to implement these modification is IMHO to subclass the It's cool no? I mean, the extensibility. |
Sounds clear! I will try it in the days to come, and let you know if I have some issues. Thanks a lot! |
I was wondering if it was possible to add IoU as a feature penalty for the LAP tracker. Indeed, when working with cellpose and cells that do not really change between frames, it makes sense to consider the overlap between cells of consecutive frames.
Would it be something easy to add?
The text was updated successfully, but these errors were encountered: