raphaelschwinger / cone_reconstruction

0 stars 1 forks source link

track moving car for each frame #16

Closed raphaelschwinger closed 3 years ago

raphaelschwinger commented 3 years ago

Output the position of the car at each timestamp

Deliverables

raphaelschwinger commented 3 years ago

https://vuamitom.github.io/2019/12/13/fast-iterate-through-video-frames.html

rxxxxxxb commented 3 years ago

Tracking the car :

Methods that we can use:

Important concepts for object detection from a video:

Steps to follow :

  1. Apply frame differencing on every pair of consecutive frames.
  2. Apply image thresholding on the output image of the previous step.
  3. Perform image dilation on the output image of the previous step.
  4. Find contours in the output image.
  5. Shortlist contours appearing in the detection zone.
  6. Save frames along with the final contours.
raphaelschwinger commented 3 years ago

@rxxxxxxb why do you suggest a CSRT Tracker and not e.g. KFC Tracker? I would suggest that we try out these two first.

rxxxxxxb commented 3 years ago

Yes, we can try both of them.

But according to my knowledge so far, CSRT performs better with low FPS and provides higher accuracy than KCF. That's why I want to try it first.

raphaelschwinger commented 3 years ago

@rxxxxxxb I added a new PR for your code https://github.com/raphaelschwinger/cone_reconstruction/pull/24.

CSRT seems to perform better then KCF in my tests as well!