deep_sort_pytorch icon indicating copy to clipboard operation
deep_sort_pytorch copied to clipboard

Why is my trace missing the first two frames?

Open jianjiandandande opened this issue 4 years ago • 5 comments

I cut the video into frames, and the result, after executing the code, is all traced from the third frame

jianjiandandande avatar May 02 '20 14:05 jianjiandandande

Tracks have a property which only confirms the track if the track existed for 3 frames. You can change that in tracker.py file def __init__(self, metric, max_iou_distance=0.7, max_age=50, n_init=3) where n_init is the number of frames before tracker is confirmed.

khayliang avatar May 08 '20 12:05 khayliang

Tracks have a property which only confirms the track if the track existed for 3 frames. You can change that in tracker.py file def __init__(self, metric, max_iou_distance=0.7, max_age=50, n_init=3) where n_init is the number of frames before tracker is confirmed.

oh, yes. I find it, thank you

jianjiandandande avatar May 08 '20 12:05 jianjiandandande

@khayliang do you the format of reading the file results.txt?

eng100200 avatar Sep 24 '20 07:09 eng100200

@jianjiandandande do you the format of reading the file results.txt?

eng100200 avatar Sep 24 '20 07:09 eng100200

@eng100200 I think that the format is: ,

joaquinCaceres avatar Nov 09 '20 19:11 joaquinCaceres