논문명 | Simple online and realtime tracking |
---|---|
저자(소속) | Bewley, Alex and Ge, Zongyuan and Ott, Lionel and Ramos, Fabio and Upcroft, Ben () |
학회/년도 | 2016, 논문 |
Citation ID / 키워드 | |
데이터셋(센서)/모델 | 25 FPS(맥북 프로) |
관련연구 | |
참고 | 홈페이지, Youtube, [추천]한글정리 |
코드 | python/C++, Tracking-with-darkflow |
년도 | 1st 저자 | 논문명 | 코드 |
---|---|---|---|
2016 | Alex Bewley | Simple Online and Realtime Tracking | 깃허브 |
2017 | Wojke | Simple Online and Realtime Tracking with a Deep Association Metric | 깃허브 |
2018 | Wojke | Deep Cosine Metric Learning for Person Re-identification | - |
Tracking Things in Object Detection Videos의 정리글
기본 동작 : it compares a frame with the next using dimensions like position of the bbox, size of the bbox and compute a velocity vector.
It does have novelties compared to our approach:
Does not handle re-entering:
Out of the box not that great. The main problem being that there is high number of identity switches (as it does not handle re-entering). But it does perform better for some cases where our tracker is losing tracking.
Also, and this is true for all trackers of the MOT benchmark, the are optimized for persons, not cars, we didn't try with persons as we didn't shoot footage of persons yet, but we can hope that it performs way better than our algorithm for this.