Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anybody know a tutorial for Kalman filtering for programmers, like "what programmers should know about Kalman", or "Kalman in practice"?

share|improve this question
"what programmers should know" - what kind of programmers? I've dipped my toes into all manner of programming fields, and I've never heard of a Kalman filter before now. Though, I am not exactly an expert on either computer vision or analog electronics, which is where wiki claims this is used. – BlueRaja - Danny Pflughoeft Mar 29 '11 at 21:45
It's a filter that's good at tracking stuff over time, without requiring a lot of memory (one previous data point only). That's why it's popular in computer vision (the one data point is still an entire scene) or analog electronics (analog memory is a pain) – MSalters Mar 30 '11 at 16:57
@BlueRaja-DannyPflughoeft: Robotic Programmers, Scientific Programmers, ... – M M. Nov 6 '11 at 10:38

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.

4 Answers

up vote 13 down vote accepted

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.

share|improve this answer

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.

s' = [px py pz vx vy vz]; // s is a 6x1 vector.

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.

 z' = [x1 y1 x2 y2 x3 y3 x4 y4] //  z is a 8x1 vector 

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

share|improve this answer
1  
The first link is a real treat for anyone trying to learn Kalman filter. It doesn't complicate and just shows the basic example with good explanation. – Primož 'c0dehunter' Kralj Aug 7 '12 at 8:13
@PrimožKralj It's just the repetition of the material I link to in my answer. It's in no aspect better, simpler, or nicer than that. – Ali Oct 2 '12 at 21:29
1  
I wouldn't say it's a repetition as it uses a different approach. In my case it was a great kick-starter. Anyways, better to have more resources :) – Primož 'c0dehunter' Kralj Oct 3 '12 at 7:22

This article is a good start: http://en.wikipedia.org/wiki/Kalman_filter

share|improve this answer
A good point made there is that a Phase Locked Loop (PLL) is a special case of a Kalman filter, for signals who are known to be sinusoidal. Ie. understand them first. – MSalters Mar 30 '11 at 16:50

This pdf shows a implementation of Kalman filter in python.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.