How a Kalman filter works, in pictures (2015)
21–30 of 35 posts
Re: How a Kalman filter works, in pictures (2015)
#22Nice pics for exam studies. But in industry Worse Is Better and Kalman Filters is ofent just the optimal way to remove noise you yourself added in your simulation. I've never seen any implementation use of Kalman filters where the covariance matrix is actually sound ... and I usually go with just lowpassfilters or moving averages.
Re: How a Kalman filter works, in pictures (2015)
#23Earlier quoted context omitted.
It's industry standard in aerospace, granted one usually uses the EKF with nonlinear dynamics so the covariance matrix is not estimated perfectly. That setup is also flexible enough to let you introduce of band measurements from the past but with the correct timestamp and correct.
It's kind of interesting that how particular fields chose to embrace certain particular methods; till I have worked with aerospace domain,I never had heard of the Kalman filter, whereas some of the newer and even more fundamental methods like wavelets and compressed sensing appear to have such low traction in Aerospace till now.
Re: How a Kalman filter works, in pictures (2015)
#24This is my favourite explanation of how a Kalman filter works http://htmlpreview.github.io/?https://github.com/aguaviva/Ka...
That finally made me understand it better, and it's much shorter than most explanations without losing necessary details.
Also even though I took both ML and probability and statistics courses saying "it's just Bayesian inference to update the posterior" makes it more confusing for me.
Re: How a Kalman filter works, in pictures (2015)
#25This is my favourite explanation of how a Kalman filter works http://htmlpreview.github.io/?https://github.com/aguaviva/Ka...
Here’s a good HN discussion of that article: https://news.ycombinator.com/item?id=16575679 HN comments were quite informative too.
Re: How a Kalman filter works, in pictures (2015)
#26Earlier quoted context omitted.
It's industry standard in aerospace, granted one usually uses the EKF with nonlinear dynamics so the covariance matrix is not estimated perfectly. That setup is also flexible enough to let you introduce of band measurements from the past but with the correct timestamp and correct.
It's kind of interesting that how particular fields chose to embrace certain particular methods; till I have worked with aerospace domain,I never had heard of the Kalman filter, whereas some of the newer and even more fundamental methods like wavelets and compressed sensing appear to have such low traction in Aerospace till now.
Re: How a Kalman filter works, in pictures (2015)
#27Re: How a Kalman filter works, in pictures (2015)
#28It looks very similar to Bayesian estimation. I wonder what is really the difference. Does any of you know, or have a link that explains it?
Re: How a Kalman filter works, in pictures (2015)
#29With autogenerated block diagram and description here: https://google.github.io/detectorgraph/docs/html/robotlocali...
Re: How a Kalman filter works, in pictures (2015)
#30^ A very simple Python implementation of a Kalman Filter with Matplotlib for visualisation.