Does anybody know a tutorial for Kalman filtering for programmers, like "what programmers should know about Kalman", or "Kalman in practice"?
|
closed as not constructive by finnw, BЈовић, Lev Levitsky, Maerlyn, lazyberezovsky Nov 22 '12 at 17:58
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Kalman filter is difficult to understand. If you do not understand it you won't be able to implement it correctly. The good news is that you have other filters with comparable results, you may find this answer helpful. See especially the filter.pdf. If you insist on the Kalman filter, the most human readable intro with examples I have found so far is the SIGGRAPH Course Pack. |
||||
|
|
|
Well, I have read this "kalman filter for dummies", which I think is really good, and you also have an example with values, what you need to find, what you need to measure, and the equations you need to implement. Have a look, it helped me, I think everybody should read this before going deeply into Kalman filter theory. Once you have a general idea, as a programer you should consider next (when applying to visual tracking). 1- Sizes of matrices. You will have a state vector that you will try to estimate in each iteration of the filter (in visual trackin each iteration equals to each frame processed). Imagine your state vector is 3D position and velocity.
You will have a measurement vector z of arbitrary size. As an example lets choose 4 points detected in the image that we can somehow relate to the state. This means you have to be able to express the state in terms of the measurements.
You can have all matriz sizes now. Follow this post for nomenclature. x is the state. Jacobian F: 6x6 Error Covariance P: 6x6 Error covariance Q: 6x6 Error Covariance R: 8x8 Innovation y: 8x1 Innovation covariance: 8x8 Jacobian H: 8x6 Kalman gain K: 6x8 |
|||||||||||
|
|
This article is a good start: http://en.wikipedia.org/wiki/Kalman_filter |
|||
|