Introduction to SLAM

Course Note SLAM (Cyrill Stachniss)

Jihong Ju on September 30, 2018

Simultaneously localization and mapping (SLAM) is a chicken-and-egg problem.

Localization Estimate the path of the robot, i.e., a sequence of poses and locations,

Mapping Build a map of the environment,

SLAM Simultaneously estimate the path of the robot and build a map of the environment given the robot’s controls

and observations

Probabilistic approaches

The real word is full of uncertainty, especially when we talk about robot perception and robot control. Graphical models are commonly used to represent uncertainty.

Graphical models

Full SLAM estimates the full robot’s path and the map:

Graphical model of full SLAM

Online SLAM seeks to recover only the most recent pose:

It means marginalizing out the previous poses (recursively):

Graphical model of online SLAM

Motion Model

How does the robot move?

Example: Standard Odometry model

  • Robot moves $ (x, y, \theta) $ -> $ (x’, y’, \theta’) $

  • Odometry information $ u = (\delta_{rot1}, \delta_{trans}, \delta_{rot2}) $

Observation Model

How do I interpret the observations?

Example: Standard Observation Model

Side notes

Why SLAM is HARD?

  • Both the map and robot path are unknown, and estimations of map and robot path are correlated
  • Observations to map association is also unknown. Wrong data association could cause catastrophical consequences

Taxonomy of the SLAM problem

  • Volumetric vs. feature-based SLAM
  • Topologic vs. geometric maps
  • Known vs. unknown correspondence
  • Static vs. dynamic environments
  • Small vs. large uncertainty
  • Active vs. passive SLAM
  • Any-time and any-space SLAM
  • Single-robot vs. multi-robot SLAM