Kalman Filter, Extended Kalman Filter, Unscented Kalman Filter

<p>The second term of&nbsp;<a href="https://www.udacity.com/course/self-driving-car-engineer-nanodegree--nd013" rel="noopener ugc nofollow" target="_blank">Self-Driving Car Engineer Nanodegree</a>&nbsp;devotes Robotics. Therefore, the first two projects we spend on learning Kalman filter (KF) and its variations. We implemented three different versions of KF suitable for SDC and I decided to write and overview which describe key differences.</p> <p>The first question is why we need KF at all. Why can&rsquo;t we rely on measurement we receive from our sensors? The answer is simple. We do not live in a perfect world, and we can not trust our sensors and measurements 100%. And KF gives us a way to combine measurements from different sensors (like LIDAR or RADAR) and mathematical model we built to predict out position. How does it do it? Basically, it finds a weighted sum of our measurements depending on how much we trust a particular sensor or our model.</p> <p><a href="https://medium.com/@kastsiukavets.alena/kalman-filter-extended-kalman-filter-unscented-kalman-filter-dbbd929f83c5"><strong>Website</strong></a></p>
Tags: Kalmans filter