Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to do motion tracking of an object using video? [closed]

Could someone direct me to a tutorial or guide me how to track motion of an object moving with 6 DOF. I am planing to use a video stream of a moving toy car. I want to calculate displacement and rotation angle of the toy car. I came across some research papers but couldn't find any libraries to the job.

Is there a way to do this using OpenCV or Matlab or some other freely available software?

Thank you

like image 253
Niroshan Avatar asked Jan 15 '11 20:01

Niroshan


3 Answers

I doubt there is a program ready to use for that... at least you will have to get a couple of methods or libraries and use no so easy maths to do that. People do their thesis about that!

This is a paper I read recently:

http://cobweb.ecn.purdue.edu/RVL/Research/ModelBasedTracking/index.html

If you think is not what you are looking for then go the references only to get more ideas ;)

like image 25
nacho4d Avatar answered Oct 15 '22 08:10

nacho4d


Tracking is a classical computer vision problem to which research is still devoted in computer science; you can quickly get a sense of the state-of-the-art in this field by checking the list of accepted papers in CVPR 2010 (which is an annual top computer vision conference) and you'll see that there is still active work being published on the topic (search for the word "tracking" within the list).

The standard processing pipeline of a solution for a tracking problem works as follows: The image is first parsed to extract meaningful descriptors that capture relevant corners and other salient features of the image. These descriptors are later fed to an on-line classifier that is trained to detect likely instances of your particular object of interest in each frame. The descriptor of your object may be known a priori, (i.e. computed off-line) from previous examples of what the object looks like, but it is usually updated in every frame by what the the system sees over time, to make the detection adaptive to the dynamic object appearance. Finally, in order to choose from a pool of possible candidates in each frame (from those that were detected), parameters such as the position and velocity of your objects are estimated with respect to previous frames using a sequential statistical model.

There is a vast computer vision literature on good image descriptors, but some of the most popular ones are SIFT, SURF, or HOG. For classification, two of the most successful methods are support vector machines or classification ensembles (e.g. boosting or random forests), and for the estimation part, most people still use Kalman filters (which is a type of sequential Markov model), particle filters or more generally density estimation models.

The specific case you described is a bit easier than the more general and difficult object-tracking problem with arbitrary camera and object motion in natural outdoor scenes, so you might be able to find some code online that could work right away in your setting, but I doubt it. As others pointed out, (and to the best of my knowledge), there is no off-the-shelf library that works right away for all sorts of objects, backgrounds and motion spaces. That said, you can probably find code for the individual components of the standard general pipeline I described above (classifiers, banks of filters/features, Markov estimation models) online.

My suggestion is, if you are interested in building a good system (i.e. one that actually works), then look at the websites of the authors of most recent papers in top annual computer vision conferences, such as CVPR, ICCV, ECCV and SIGGRAPH. They tend to have code online for their most recent work with some video examples, and this might help you get a sense of how their methods work in a real setting.

like image 76
13 revs Avatar answered Oct 15 '22 10:10

13 revs


Maybe the KLT Tracker (Kanade Lucas Tomasi) can help you. It tells you where detected points moved between the images. The OpenCV library contains a version of the KLT Tracker but without affine conistency check (as the KLT homepage states).

like image 24
Christian Ammer Avatar answered Oct 15 '22 10:10

Christian Ammer