- Identify the ball
- Determine its position
- Record the position
- plot or analyze
What are the steps involved in tracking an object.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello Jurgen, I am working on a ball tracking project...I am a novice...can you please instruct me on what all steps are involved in tracking a ball,as i move it in front of my camera..
0 commentaires
Réponses (2)
Joseph Areeda
le 24 Déc 2012
Modifié(e) : Joseph Areeda
le 24 Déc 2012
I'm not Jurgen but hopefully you'll take comments from the peanut gallery.
I would break down the problem into these pieces:
Identification is the hard part. It is greatly simplified if you have high contrast such as a bright ball against a dark background especially if the ball is a constant size that is not moving toward or away from the camera.
For something like that a simple thresholding technique works pretty well. Some simple algorithm to remove extraneous points might be needed.
Then the position could just be the center of gravity of the points identified as the ball.
What you end up with is the (x,y) position of the ball in the frame. Assuming a constant time per frame you can just store it in 2 vectors and use Matlab plot function to display it.
Joe
Image Analyst
le 24 Déc 2012
Modifié(e) : Image Analyst
le 24 Déc 2012
I'm not Jurgen either. Apparently he made quite a positive impression on you but perhaps I might also have something worthwhile to say.....
There is so much code on tracking in the File Exchange and in the documentation for the Computer Vision toolbox. Have you considered searching MATLAB Central?
In addition, I have several color segmentation demos in my File Exchange: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
If you need help with noise, then run some noise reduction filters on your frames. Otherwise post the binary image of the object and we can suggest methods to clean up the noise, like imclose(), or bwareaopen() or something like that. http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers
0 commentaires
Voir également
Catégories
En savoir plus sur Computer Vision with Simulink dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!