Multitarget-tracker
Multitarget-tracker copied to clipboard
How could I use custom detector ?
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:
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<CRegion> regions_t;
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~