where kalman filter fails in multiobject tracking?
Afficher commentaires plus anciens
Why KF can't track jitter and creep conditions? can i get code for MTT using Particle filter?
Réponses (2)
Sampada
le 31 Juil 2014
0 votes
Dima Lisin
le 31 Juil 2014
Modifié(e) : Dima Lisin
le 31 Juil 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.
Catégories
En savoir plus sur State Estimation dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!