where kalman filter fails in multiobject tracking?

1 view (last 30 days)
Why KF can't track jitter and creep conditions? can i get code for MTT using Particle filter?

Answers (2)

Sampada
Sampada on 31 Jul 2014
Yes. i am using the same example. But couldn't change parameters of KF. in fact i dont know how to do it. Even can't see coding of correct() and predict() functions. Please help me in doing that. I am using BBC motion gallery videos for trial. I don't get proper results when used abrupt motion change videos

Dima Lisin
Dima Lisin on 31 Jul 2014
Edited: Dima Lisin on 31 Jul 2014
The KF is implemented as a class called vision.KalmanFilter. correct() and predict() are its methods. You can see the code by doing
>> edit vision.KalmanFilter
But you do not need to change the code. The example is using the configureKalmanFilter() function to create the KF object. The function lets you specify the motion model, the initial error covariance, and the noise covariances as diagonal matrices.
If you want additional flexibility in specifying the parameters, you can use the constructor of vision.KalmanFilter directly.
For more information, please see this example on how to set up the Kalman filter .

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!