Kalman filter 使用经验总结

来源:互联网 发布:淘宝叶彬儿靠不靠谱 编辑:程序博客网 时间:2024/05/18 15:06

Reference

  • wiki
  • How a Kalman filter works, in pictures
  • Kalman filter application

Summary

  • hidden status: [x,y,vx,vy]
  • observed status: [x,y]
  • from hidden status to observed status: transition matrix MT
    [xt+1,yt+1,vxt+1,vyt+1]T=MT[xt,yt,vxt,vyt]T

    • for vxtvx0,vytvx0, we have MT=[1 0 c 0;0 1 0 c;0 0 1 0;0 0 0 1]
    • for vxt=vx0+axt,vyt=vy0+ayt, we have MT=[?]

Particle Filter, A Better Choice

  • c++ code
  • course and usage
  • Matlib and c++
  • github and c++
0 0