/Kalman-and-Bayesian-Filters-in-Python

《Kalman and Bayesian Filters in Python》学习记录。

Primary LanguageJupyter Notebook

Kalman and Bayesian Filters in Python

注意! 此中文版项目仅用于个人学习目的,不用做任何商业用途。更多内容请访问 由Roger R Labbe Jr初始建立的《Kalman-and-Bayesian-Filters-in-Python》项目。

# 这里是引文链接.
RLabbe. (Oct 14, 2020). Kalman and Bayesian Filters in Python [GitHub仓库]. Retrieved from https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/blob/master/README.md

目录

编号 名称 内容概要 在线链接
00 前言 写这本书的动机,如何下载和阅读这本书。 Open in Jupyter nbviewer
01 The g-h Filter TODO
02 TODO
03 TODO
04 TODO
05 TODO
06 TODO
07 TODO
08 TODO
09 TODO
10 TODO
11 TODO
12 TODO
13 TODO
14 TODO
TODO

前言

Motivation behind writing the book. How to download and read the book. Requirements for IPython Notebook and Python. github links.

Chapter 1: The g-h Filter

Intuitive introduction to the g-h filter, also known as the $\alpha$-$\beta$ Filter, which is a family of filters that includes the Kalman filter. Once you understand this chapter you will understand the concepts behind the Kalman filter.

Chapter 2: The Discrete Bayes Filter

Introduces the discrete Bayes filter. From this you will learn the probabilistic (Bayesian) reasoning that underpins the Kalman filter in an easy to digest form.

Chapter 3: Probabilities, Gaussians, and Bayes' Theorem

Introduces using Gaussians to represent beliefs in the Bayesian sense. Gaussians allow us to implement the algorithms used in the discrete Bayes filter to work in continuous domains.

Chapter 4: One Dimensional Kalman Filters

Implements a Kalman filter by modifying the discrete Bayes filter to use Gaussians. This is a full featured Kalman filter, albeit only useful for 1D problems.

Chapter 5: Multivariate Gaussians

Extends Gaussians to multiple dimensions, and demonstrates how 'triangulation' and hidden variables can vastly improve estimates.

Chapter 6: Multivariate Kalman Filter

We extend the Kalman filter developed in the univariate chapter to the full, generalized filter for linear problems. After reading this you will understand how a Kalman filter works and how to design and implement one for a (linear) problem of your choice.

Chapter 7: Kalman Filter Math

We gotten about as far as we can without forming a strong mathematical foundation. This chapter is optional, especially the first time, but if you intend to write robust, numerically stable filters, or to read the literature, you will need to know the material in this chapter. Some sections will be required to understand the later chapters on nonlinear filtering.

Chapter 8: Designing Kalman Filters

Building on material in Chapters 5 and 6, walks you through the design of several Kalman filters. Only by seeing several different examples can you really grasp all of the theory. Examples are chosen to be realistic, not 'toy' problems to give you a start towards implementing your own filters. Discusses, but does not solve issues like numerical stability.

Chapter 9: Nonlinear Filtering

Kalman filters as covered only work for linear problems. Yet the world is nonlinear. Here I introduce the problems that nonlinear systems pose to the filter, and briefly discuss the various algorithms that we will be learning in subsequent chapters.

Chapter 10: Unscented Kalman Filters

Unscented Kalman filters (UKF) are a recent development in Kalman filter theory. They allow you to filter nonlinear problems without requiring a closed form solution like the Extended Kalman filter requires.

This topic is typically either not mentioned, or glossed over in existing texts, with Extended Kalman filters receiving the bulk of discussion. I put it first because the UKF is much simpler to understand, implement, and the filtering performance is usually as good as or better then the Extended Kalman filter. I always try to implement the UKF first for real world problems, and you should also.

Chapter 11: Extended Kalman Filters

Extended Kalman filters (EKF) are the most common approach to linearizing non-linear problems. A majority of real world Kalman filters are EKFs, so will need to understand this material to understand existing code, papers, talks, etc.

Chapter 12: Particle Filters

Particle filters uses Monte Carlo techniques to filter data. They easily handle highly nonlinear and non-Gaussian systems, as well as multimodal distributions (tracking multiple objects simultaneously) at the cost of high computational requirements.

Chapter 13: Smoothing

Kalman filters are recursive, and thus very suitable for real time filtering. However, they work extremely well for post-processing data. After all, Kalman filters are predictor-correctors, and it is easier to predict the past than the future! We discuss some common approaches.

Chapter 14: Adaptive Filtering

Kalman filters assume a single process model, but manuevering targets typically need to be described by several different process models. Adaptive filtering uses several techniques to allow the Kalman filter to adapt to the changing behavior of the target.

Appendix A: Installation, Python, NumPy, and FilterPy

Brief introduction of Python and how it is used in this book. Description of the companion

library FilterPy.

Appendix B: Symbols and Notations

Most books opt to use different notations and variable names for identical concepts. This is a large barrier to understanding when you are starting out. I have collected the symbols and notations used in this book, and built tables showing what notation and names are used by the major books in the field.

Still just a collection of notes at this point.

Appendix D: H-Infinity Filters

Describes the $H_\infty$ filter.

I have code that implements the filter, but no supporting text yet.

Appendix E: Ensemble Kalman Filters

Discusses the ensemble Kalman Filter, which uses a Monte Carlo approach to deal with very large Kalman filter states in nonlinear systems.

Appendix F: FilterPy Source Code

Listings of important classes from FilterPy that are used in this book.

Supporting Notebooks

These notebooks are not a primary part of the book, but contain information that might be interested to a subest of readers.

Computing and plotting PDFs

Describes how I implemented the plotting of various pdfs in the book.

Interactions

Interactive simulations of various algorithms. Use sliders to change the output in real time.

Converting the Multivariate Equations to the Univariate Case

Demonstrates that the Multivariate equations are identical to the univariate Kalman filter equations by setting the dimension of all vectors and matrices to one.

Iterative Least Squares for Sensor Fusion

Deep dive into using an iterative least squares technique to solve the nonlinear problem of finding position from multiple GPS pseudorange measurements.

Taylor Series

A very brief introduction to Taylor series.

Github repository