bochinski / iou-tracker

Python implementation of the IOU Tracker
http://www.nue.tu-berlin.de
MIT License
689 stars 175 forks source link

V-IOU tracker improvements implementation ? #7

Open tdurand opened 5 years ago

tdurand commented 5 years ago

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

bochinski commented 5 years ago

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?

tdurand commented 5 years ago

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

bochinski commented 5 years ago

I will leave this open for reference since some people already asked about this by mail.

jamessmith90 commented 5 years ago

@bochinski

Kalman is good but ...it is a cpu killer. Using width,height and nearness with t-1 frames with time < 6 seconds will increase accuracy.

lynnw123 commented 5 years ago

Congrs V-IOU is the top3 in the tracking challenge on MOT19 from yesterday's CVPR meeting, look forward to see its implementation!

bochinski commented 5 years ago

@jamessmith90 I agree, but nothing is for free. Visual single object tracking/optical flow works much better (especially when the target movement is non-linear) but is much more cpu intensive. It really depends on what you want to achieve and what you can settle with.

@lynnw123 thank you very much, unfortunately I was not able to attend this years CVPR on short notice but I assume it was a great workshop. Anyway, this is a good motivation for me to publish the code sooner than later.

jamessmith90 commented 5 years ago

@bochinski Looking forward to your v-iou implementation.

dexception commented 4 years ago

@bochinski Congrats for your position in MOT19.

Do you have plans to release the updated version ?

bochinski commented 4 years ago

@dexception thanks!

I already started working on the code but wasnt able to finish it yet as something else came in between. Hopefully there are no more problems/delays so you can expect the release of the code very soon.

dexception commented 4 years ago

@bochinski Can you share a timeline with us ?

suman-19 commented 4 years ago

@bochinski Kindly provide some info.

bochinski commented 4 years ago

@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.

dexception commented 4 years ago

Thanks for the update.

dexception commented 4 years ago

@bochinski Any progress ?

jamessmith90 commented 4 years ago

@bochinski Any update ?

nicolaerosia commented 4 years ago

I'm also very interested in this

ashuezy commented 4 years ago

@bochinski 7 months and still waiting for a release.. :-)

uday60 commented 4 years ago

Waiting..

penolove commented 4 years ago

waiting .. :)

sachingoyal0104 commented 4 years ago

waiting..

bochinski commented 4 years ago

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.

nicolaerosia commented 4 years ago

thank you!

akshu281 commented 4 years ago

Hello All,

Any idea how to run this tracker V-IOU for a custom video with real-time detection ?

Thank You !