where kalman filter fails in multiobject tracking?
Mostrar comentarios más antiguos
Why KF can't track jitter and creep conditions? can i get code for MTT using Particle filter?
Respuestas (2)
Sampada
el 31 de Jul. de 2014
0 votos
Dima Lisin
el 31 de Jul. de 2014
Editada: Dima Lisin
el 31 de Jul. de 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.
Categorías
Más información sobre State Estimation en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!