Smorodov / Multitarget-tracker

Multiple Object Tracker, Based on Hungarian algorithm + Kalman filter.
Apache License 2.0
2.2k stars 652 forks source link

How could I use custom detector ? #448

Open mx2013713828 opened 7 months ago

mx2013713828 commented 7 months ago

Thanks for your great work! thats amazing !!

I just want tracking object and use our custom detector . I have bbox result ,so how could I apply your project for tracking my detection resul? I think you can give me some useful advice!~

Wating for your reply :smile:

Nuzhny007 commented 6 months ago

Hi! Yes, you can use custom detector. A simple way - derive from VideoExample class like this: https://github.com/Smorodov/Multitarget-tracker/blob/master/example/examples.h Or you can convert your detections to this format: typedef std::vector regions_t;

mx2013713828 commented 6 months ago

Hi! Yes, you can use custom detector. A simple way - derive from VideoExample class like this: https://github.com/Smorodov/Multitarget-tracker/blob/master/example/examples.h Or you can convert your detections to this format: typedef std::vector regions_t;

Thanks for your reply! I am trying~