Search code examples
trackingobject-detection

how to combine SSD with tracker to accomplish multiple object tracking


how to combine object detection algorithm (e.g. SSD, YOLO, Faster RCNN and so on) with tracker(e.g. KCF TLD and so on) to accomplish multiple object tracking? Somebody could share concerned papers, blogs, wedsite or github code?? thank you very much


Solution

  • First of all, You only need a single combination of detection and tracking such as Yolo-KCF or SSD-KCF to track multiple objects.

    You can use Darknet Yolo for detection: https://github.com/pjreddie/darknet

    and SORT for tracking: https://github.com/abewley/sort

    or combined: https://github.com/Qidian213/deep_sort_yolov3

    you can try the different combination with same rules.