- Identify the ball
- Determine its position
- Record the position
- plot or analyze
What are the steps involved in tracking an object.
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Joseph Areeda
2012-12-24
编辑:Joseph Areeda
2012-12-24
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
2012-12-24
编辑:Image Analyst
2012-12-24
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!