Towards-Realtime-MOT icon indicating copy to clipboard operation
Towards-Realtime-MOT copied to clipboard

If it is a bug ? in the multitracker.py line336-line337

Open luckcodingdog opened this issue 4 years ago • 0 comments

Thanks for your open source code! I have a question: in the line336-line337 of multitracker.py :

self.lost_stracks = sub_stracks(self.lost_stracks, self.removed_stracks) self.removed_stracks.extend(removed_stracks)

I think it should first extend removed_stacks then sub_stracks, so just change the turn of the two lines.

self.removed_stracks.extend(removed_stracks) self.lost_stracks = sub_stracks(self.lost_stracks, self.removed_stracks)

luckcodingdog avatar Sep 17 '20 03:09 luckcodingdog