where kalman filter fails in multiobject tracking?
古いコメントを表示
Why KF can't track jitter and creep conditions? can i get code for MTT using Particle filter?
回答 (2 件)
Dima Lisin
2014 年 7 月 31 日
編集済み: Dima Lisin
2014 年 7 月 31 日
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.
カテゴリ
ヘルプ センター および File Exchange で Track Objects and Estimate Motion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!