how can i track a set of pixels using kalman filter?
4 次查看(过去 30 天)
显示 更早的评论
to track object from frame to frame, I wanna track a defined pixels that determines the object, using kalman filter... I don't know from where I begin
1 个评论
Roger Labbe
2015-11-6
You can try my free Kalman filtering book here: https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python
It is in Python, not Matlab, but once you lean the basic ideas you can either write your own code or download one of several libraries available for kalman filtering.
I didn't answer your computer vision part. That's a whole different problem. Ideally you would want a feedback loop. The Kalman filter predicts where to look for the pixel. You run image detection to try to find the pixel. If where you found it matches the prediction, you are doing well. If not, well, that's where the difficulty starts. Generally you will have either 0 detected pixels, or multiple detected pixels. Look into authors such as Lawrence Stone, or Bar-Shalom. The wikipedia article https://en.wikipedia.org/wiki/Radar_tracker gives you some common algorithm names to start investigating.
Despite the tutorials on youtube and such that make this seem trivial this is in general quite a difficult problem. But the above is the journey you need to take, though I skipped the details of image detection, which is its own field.
采纳的回答
Dima Lisin
2015-11-6
There is a vision.KalmanFilter object in the Computer Vision System Toolbox. Take a look at the Motion-based Multiple Object Tracking example.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!