-
Notifications
You must be signed in to change notification settings - Fork 175
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
V-IOU tracker improvements implementation ? #7
Comments
Hi, I had not time to cleanup and publish the code yet. I am not sure when this will happen, but it is definitely on my todo list. For the prediction I am using a visual single object tracker (e.g. KCF is fast and reliable, at least for a couple of frames). Maybe a kalman filter is more suitable for your javascript application? |
Hi, thanks for your comment ! I'll look into KCF and Kalman filter... For now our implementation is giving good enough results but we didn't benchmark it really well. We have a very basic prediction method. Feel free to close this if you want.. And I'm glad you will eventually publish the code at some point. Best |
I will leave this open for reference since some people already asked about this by mail. |
Kalman is good but ...it is a cpu killer. |
Congrs V-IOU is the top3 in the tracking challenge on MOT19 from yesterday's CVPR meeting, look forward to see its implementation! |
@jamessmith90 @lynnw123 |
@bochinski |
@bochinski Do you have plans to release the updated version ? |
@dexception thanks! I already started working on the code but wasnt able to finish it yet as something else came in between. |
@bochinski |
@bochinski |
@dexception @suman-19 Sorry about the delay, I know that a few people are waiting on this. My original time line was to do this months ago but every time I want to start on this something else comes in between. I will try to do this sometime in the next weeks and I sincerely hope that I can keep my promise this time. |
Thanks for the update. |
@bochinski Any progress ? |
@bochinski Any update ? |
I'm also very interested in this |
@bochinski 7 months and still waiting for a release.. :-) |
Waiting.. |
waiting .. :) |
waiting.. |
I finally managed to push the v-iou code. I am sorry for the delay, it took way longer than anticipated. One reason for this is that i decided to completely rewrite my original code to get a clean version that is similar to the iou tracker code. Let me know if you encounter any issues, the results should be the same as in the paper and challenge submissions. |
thank you! |
Hello All, Any idea how to run this tracker V-IOU for a custom video with real-time detection ? Thank You ! |
Hello,
Is the v-iou implementation available somewhere ? (based on paper Extending IOU Based Multi-Object Tracking by Visual Information)
I'm doing something close to V-IOU idea in a node.js implementation: https://github.com/tdurand/node-moving-things-tracker but in a much less "academic" way.
There is not much details about the "prediction" method you use for the visual tracking.. On my project I'm using velocity / acceleration vectors but do not change the bounding box width / height
From you paper, I'm gonna try this idea of searching "back-wards through the last ttl frames for each new track" , this is something I'm not doing currently
Thanks !
Thibault
The text was updated successfully, but these errors were encountered: