Kalman FIlter Flashcards

1
Q

input μt−1 , Σt−1 , ut , zt

A

The robot/object has a true state(where it is positioned) which the environment knows. This value could be its position on a hallway and the speed of which its traveling at a given time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

// Control update
μ̄t = At μt−1 + Bt*ut + et
Σ̄t = At Σt−1 ATt + Rt

A

Predict state and uncertainty.
For the robot to move it needs to update at a time which for this example would be acceleration (ut). The robot would then have new measurements in relation to its position and speed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Control update

A

What ut to choose based upon μt and Σt?
* platform: move towards target based upon μt
* possible extension: accelerate faster with smaller Σt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Uncertainty

A

Uncertainty is possible degree of inaccuracy in belief

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

// Kalman gain
Kt = ΣtCtT (CtΣt*CtT + Qt )−1

A

The Kalman Gain is the relative weight in which the new measurement is taken into account. If the error in the measurement is relatively small, the Kalman Gain will approach one which puts emphasize on the measurement. Generally, the Kalman gain will decrease with every new measurement, putting greater believe in the model prediction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

zt = Ct *xt + δt

A

The measurements produced will carry a degree of random noise (E.g. if it wants to move 1m it could move 0.98m or 1.2 m instead). While the environment knows the exact amount of noise the platform can’t distinguish between the true value and noise. (Zt = true position with noise).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

// Measurement update
μt = μt + Kt (zt − Ct*μt )
Σt = ( I − Kt Ct )Σt

A

Calculate the believed state and uncertainty from a prediction and observation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

// Done
return μt , Σt

A

Returns the updated Belief of current state and the uncertainty Σt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Environment

A

The reality : platform is at position pos, platform has speed, platform is described by state x at time t

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

xt, ut, zt

A

xt: true state of the platform (position and speed).
ut: platform update (acceleration command given).
zt: noisy observation done by platform (echo and speedometer).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A, B, C

A

A: contribution of xt−1 to xt (speed at t − 1 changes position at t).
B: contribution of ut on xt (acceleration at t changes speed at t).
C: conversion from state to deterministic observation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

εt , δt , μt, Σt

A

εt: probabilistic part in state (position and speed). Control noise
δt: noisy part in observation (echo and speedometer).
μt: Belief of current state
Σt: Uncertainty in belief

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

μ ̄t, Σ ̄ t, Kt

A

μ ̄t: Predicted belief of current state after control update (intermediate result)
Σ ̄ t: Predicted uncertainty in belief after control update (intermediate result)
Kt: Kalman Gain (determines degree to account for measurement in favor of previous belief)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

R, Q

A

R: Accounts for model’s unknown probabilistic part in state (εt)
Q: Accounts for model’s unknown noisy part in observation (δt)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

εt

A

Control noise
Keep in mind: the environment “knows” the exact values of N (0, σpos ) and N (0, σspeed ), the platform does not!
The robot however has an idea (or at least an estimate) of the values σpos and σspeed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly