Kalman filter and bounding box tracking
12 次查看(过去 30 天)
显示 更早的评论
Hi all! I hope that someone can help me with that!
I have a video that shows a face. Firstly, I detect the region of the eye from a face. The detection gives me a boundind box with [x,y,height,widht] coordinates. So now, i need KALMAN filter to track this bounding box.
Is it possible with kalman or should i use another tracker? Also i need this tracker to be in real time.
Thanks in advance!
0 个评论
采纳的回答
Erik S.
2015-2-9
Hi,
Do you have computer vision toolbox?
There is vision.KalmanFilter method there you can use.
0 个评论
更多回答(2 个)
Dima Lisin
2015-2-9
编辑:Dima Lisin
2015-2-9
The easiest way to use the Kalman filter is to track the centroid of the eye. If bbox is your bounding box, then you can compute the centroid as bbox(1,2) + bbox(3,4) / 2. Please see the Using Kalman Filter for Object Tracking example for how to track a single object. For tracking multiple objects using the Kalman filter, see the Motion-Based Multiple Object Tracking example.
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!