DeepSort icon indicating copy to clipboard operation
DeepSort copied to clipboard

Proplems in tracking the MOT-16

Open xdg2016 opened this issue 5 years ago • 4 comments

Dear Sir, when I ran the code, the program often goes into a dead cycle then gets stuck and rushes to collapse. I tracked the code and found the proplem: image The program jumps between steps 3 and 5,and can't stop!can you tell me how to adrress it? thank you !

xdg2016 avatar Mar 29 '19 06:03 xdg2016

I had the same problem. How did you solve it?

wuyong139 avatar Jan 19 '20 08:01 wuyong139

I had the same problem. How did you solve it? @xdg2016 @bitzy

WooXinyi avatar Jan 19 '20 08:01 WooXinyi

I had the same problem and was able to find the reason in my case. The vector containing the detections was not filled correctly. I used another yolo implementation to detect them and then tried to fill the ,,DETECTIONS" object the way shown in this project.

You should check how your ,,DETECTIONS" object is filled and if it makes sense.

hakan6710 avatar Jun 09 '21 15:06 hakan6710

I had the same problem. I used it without Tensorflow, so the feature vector was initialized with random values (e.g. n.a.n.). This results in a deadlock. Setting all feature vector values to 0.0 solved my problem.

Kaeseknacker avatar Jul 08 '21 07:07 Kaeseknacker