
- Introduce the concept of state that encapsulates multiple random variables and consider dynamical systems with non-trivial non-linear dynamics (state transition models) common in robotics and many other fields.
- Introduce the time index explicitly in the aforementioned state evolution as represented via a graphical model.
The Bayesian Filter
We are introducing this algorithm, by considering a embodied agent (a robot) that moves in an environment.

(b) the measurement update step that that weighs the belief with the probability that measurement was observed. Bayes Filter
= bayes_filter( for all do: (prediction) (measurement update) endfor
Door state estimation
To illustrate how the Bayes filter is useful, lets look at a practical example. This example was borrowed from Sebastian Thrun’s book, “Probabilistic Robotics”, MIT Press, 2006. The problem we are considering is estimating the state of a door using an agent (robot) equipped with a monocular camera.
Measurement Model
No real agent has ideal sensing abilities so the sensor or measurement model is noisy and lets assume for simplicity that its given by:| Description | Probabilistic Model |
|---|---|
| if its open, agent can sense it as such with prob 60% | |
| if its open, agent can sense it as closed with prob 40% | |
| if its closed, agent senses it open with prob 20% | |
| if its closed, agent can sense it as such with prob 80% |
Transition Model
Lets also assume that the agent is using a arm manipulator to push the door open if its closed. Note So we have the following transition distribution:| Transition description | Probabilistic Finite State Machine |
|---|---|
| if its open, a push leaves it open | |
| if its open, a push does not close it | |
| if its closed, a push opens it with probability 80% | |
| if its closed, a push leaves it closed with probability 20% | |
| if its open, doing nothing leaves it open | |
| if its open, doing nothing does not close it | |
| if its closed, doing nothing does not open it | |
| if its closed, doing nothing leaves it closed |

