yihongXU / deepMOT

Official Implementation of How To Train Your Deep Multi-Object Tracker (CVPR2020)
GNU Lesser General Public License v3.0
499 stars 86 forks source link

Problem about track_on_mot.py #6

Closed jjldr closed 5 years ago

jjldr commented 5 years ago

Thank you for your sharing. However, in tracking_on_mot.py, your implementation of siameseRPN is not parallel, which lead to very slow inference time. Could you provide a parallel version. Thank you.

yihongXU commented 5 years ago

Hi, you are right. I did it in sequential way in order to let more people with limited GPU resources run the code. Current version needs around 2Gb of memory.

I will try to make a parallel version soon (hopefully this weekend).

Thanks for pointing out the problem.