Reputation: 3
I would like to track a target in video AVI I made, I run a lukas Kanade algo I found on internet and it's not doing what I whant because it follow every point moving in the record. Do you know if there is an algo in open source whith wich I can select my target with an ROI and track in each frame ? (I use opencv 2.4.6 with Visual studio 2013)
Upvotes: 0
Views: 6974
Reputation: 2044
I don't fully understand what you are looking for but here is a quite good list of OpenCV tracking methods: http://www.intorobotics.com/how-to-detect-and-track-object-with-opencv/
For simple usage of ROI check the answer to this question: Understanding region of interest in openCV 2.4
Upvotes: 3
Reputation: 2860
You can try OpenTLD algorithm by Zdenek Kalal. Here is original MatLAB implementation and port to the C++ .
Upvotes: 0