Skip to content

Latest commit

 

History

History
418 lines (219 loc) · 21 KB

state_estimation.md

File metadata and controls

418 lines (219 loc) · 21 KB

Bayes filter

https://latex.codecogs.com/svg.latex?\\
\text{1. } P(A|B)=\frac{P(A,B)}{P(B)} \\ P(x)=\int P(x,y)dy =\sum P(x|y)P(y) \\ P(x)=\sum P(x,y_i) \\ \text{2. }P(A|B,C)=\frac{P(A,B,C)} {P(B,C)}=\frac{P(B|A,C)P(A,C)}{P(B|C)P(C)}=\frac{P(B|A,C)P(A|C)P(C)}{P(B|C)P(C)}=\frac{P(B|A,C)P(A|C)}{P(B|C)}

https://latex.codecogs.com/svg.latex?\\
\text{3. }P(A,B)=\sum P(A,B,C_i)=\sum P(A|B,C_i)P(B,C_i)=\sum P(A|B,C_i)P(C_i|B)P(B) \\ \text{4. } P(A|B)=\frac{P(A,B)}{P(B)}=\frac{\sum P(A|B,C_i)P(C_i|B)P(B)}{P(B)} =\sum P(A|B,C_i)P(C_i|B)

Markov property:



https://latex.codecogs.com/svg.latex?\\ \text{5. } P(Z_t|X_{0:t},Z_{0:t-1}, U_{1:t})=P(Z_t|X_t) \\ \text{6. } P(X_t|X_{1:t-1},Z_{1:t-1}, U_{1:t})=P(X_t|U_t)





https://latex.codecogs.com/svg.latex?Bel(X_t)=P(\underbrace{X_t}_A|\underbrace{U_1, Z_1,...,U_t}_C , \underbrace{Z_t}_B)



Using (2) we will have:

https://latex.codecogs.com/svg.latex?Bel(X_t)=P(\underbrace{X_t}_A|\underbrace{U_1, Z_1,...,U_t}_C , \underbrace{Z_t}_B)=\frac{P(B|A,C)P(A|C)}{P(B|C)}=\eta P(B|A,C)P(A|C)=\eta P(Z_t|X_t,U_1, Z_1,...,U_t)P(X_t|U_1, Z_1,...,U_t)

now using (5),

https://latex.codecogs.com/svg.latex?Bel(X_t)=\eta P(Z_t|X_t)P(X_t|U_1, Z_1,...,U_t)

Now by using (4):

https://latex.codecogs.com/svg.latex?Bel(X_t)=\eta P(Z_t|X_t)\int P(X_t|U_1, Z_1,...,U_t, X_{t-1})P(X_{t-1}|U_1, Z_1,...,U_t) dX_{t-1}

Now by using (6):

https://latex.codecogs.com/svg.latex?Bel(X_t)=\eta P(Z_t|X_t)\int P(X_t|U_t, X_{t-1})P(X_{t-1}|U_1, Z_1,...,U_t) dX_{t-1}

since https://latex.codecogs.com/svg.latex?X_t-1 has no dependency on https://latex.codecogs.com/svg.latex?U_t, we can omit it:

https://latex.codecogs.com/svg.latex?Bel(X_t)=\eta P(Z_t|X_t)\int P(X_t|U_t, X_{t-1})P(X_{t-1}|U_1, Z_1,...,Z_{t-1},U_{t-1}) dX_{t-1}



https://latex.codecogs.com/svg.latex?Bel(X_t)=\eta P(Z_t|X_t)\int P(X_t|U_t, X_{t-1})Bel(X_{t-1}) dX_{t-1}

Property of Covariance





Product of Gaussian







We can reformulate it as:





For multidimensional data







Newton Law of Motion









Prediction (Estimation)

New mean:



New Covariance:

Correction (Update)





Fusing and knocking out will give us new gain:



which give us corrected mean:

and new covariance:

Extended Kalman Filter



For instance for a 2D robot with state and twist command :





First order Linearization:





Linearization of prediction function:

For example for a 2D mobile robot with laser scanner:





Linearization of update function:

Prediction Step







Update Step







Finding the appropriate values for Q (process noise covariance) and R (measurement noise covariance)

Finding the appropriate values for ( Q ) (process noise covariance) and ( R ) (measurement noise covariance) is crucial for the performance of the Kalman filter. These matrices represent the uncertainties in your model and measurements, respectively.

Here are some methods and guidelines to determine ( Q ) and ( R ):

  1. Physical Insights or Expert Knowledge:

    • Sometimes, based on the physical understanding of the system, one can approximate the uncertainties in the process and measurements.
  2. Statistical Methods:

    • If you have access to some ground truth data, you can use it to estimate ( R ). For instance, by comparing your measurements to the ground truth, you can compute the variance or covariance of the measurement error.
    • For ( Q ), if you can measure or estimate the "real" state of the system at multiple time points, you can use these data points to estimate the state transition error, and thus ( Q ).
  3. Tuning:

    • In the absence of clear physical insight or ample ground truth data, a common approach is to tune the values of ( Q ) and ( R ) empirically to get optimal performance.
    • Start with an initial guess and adjust based on performance. If your estimate is too noisy, you might need to increase ( R ) or decrease ( Q ). If your estimate is lagging behind the real value, you might need to decrease ( R ) or increase ( Q ).
    • This method can be iterative and sometimes time-consuming, but it is often effective.
  4. Process Model:

    • If you have a physical or mathematical model of the system, you can use it to estimate ( Q ). For example, if you have a motion model and know the variance of acceleration disturbances, you can use that to estimate ( Q ).
  5. Maximum Likelihood Estimation:

    • If you have a good dataset, you can set up a likelihood function based on the Kalman filter equations and then use optimization techniques to find the values of ( Q ) and ( R ) that maximize this likelihood.
  6. Trial and Error:

    • Sometimes, simply trying a range of values and evaluating the performance for each can help. This method is brute force and can be computationally intensive but might be effective in some cases.
  7. Use Adaptive Filters:

    • Adaptive Kalman filters adjust ( Q ) and ( R ) on the fly based on the observed innovations (the difference between estimated measurements and actual measurements). This way, the filter can self-tune to some extent.

Remember that the Kalman filter assumes that the process noise and the measurement noise are Gaussian and white. Ensure that your ( Q ) and ( R ) reflect this assumption, or the filter's performance might be suboptimal.

Lastly, tuning the Kalman filter, especially determining ( Q ) and ( R ), is often as much an art as it is a science. Practical experience, combined with understanding the underlying system, can make the process more intuitive over time.

EKF Implementations

Refs: 1, 2

EKF for Differential Drive Robot

State Space

So at the beginning we have only robot pose (robot start in its own frame) and orientation and zero land mark, as the robot explor we will add landmarks and increase the state space, but here we assume that all landmark are known beforehand, so for a map with landmarks: dimensional Gaussian



Compact Representation:







Refs: 1, 2, 3

Error State Extended Kalman Filter

Invariant extended Kalman filter

Tracking Multiple Objects

Refs: 1

Track-Level Fusion

Refs: 1

FilterPy

Refs: 1

STATE ESTIMATION FOR ROBOTICS

Ref: 1