user2996475
user2996475

Reputation: 3

best algo to track an object in an AVI video, with opencv in c++

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

Answers (2)

jparimaa
jparimaa

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

Related Questions