DeepSort
DeepSort copied to clipboard
Proplems in tracking the MOT-16
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:
The program jumps between steps 3 and 5,and can't stop!can you tell me how to adrress it? thank you !
I had the same problem. How did you solve it?
I had the same problem. How did you solve it? @xdg2016 @bitzy
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.
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.