ifzhang / ByteTrack

[ECCV 2022] ByteTrack: Multi-Object Tracking by Associating Every Detection Box
MIT License
4.69k stars 891 forks source link

内存溢出 #229

Open WXWXwqz opened 2 years ago

WXWXwqz commented 2 years ago

self.removed_stracks 没有清除操作会导致内存一直增加最终溢出。

tenggyut commented 2 years ago

是不是不应该用self.removed_stracks,而应该用removed_stracks哟

ghost commented 1 year ago

see how ultralytics handle this problem: https://github.com/ultralytics/ultralytics/blob/main/ultralytics/trackers/byte_tracker.py#L291 Perhaps the author keep all the removed_stracks for other purposes, after all, it is for academic study.