bay

Classification of SLAM

SLAM techniques can be classified into two groups: Filtering and Smoothing

  • Filtering is an online state estimation problem where only the latest measurements are used for updating the state. Methods include Extended Kalman Filter (EKF) and Particle Filter (PF)
  • Smoothing estimates the full robot trajectory from the complete set of measurements (not just the latest). Methods include Factor Graph Optimization or more specifically Pose Graph Optimization (PGO)

What is Graph SLAM

A graph-based SLAM approach constructs a simplified estimation problem by abstracting the raw sensor measurements. These raw measurements are replaced by the edges in the graph which can then be seen as “virtual measurements”.

What is Pose Graph Optimization

The objective of pose graph optimization is to estimate robot trajectory (collection of poses) from pairwise relative measurements. From these relative measurements, we infer the odometric constraints and loop closing constraints, which form the edges of the graph.

PGO is a hard non-convex optimization problem. The state-of-the-art solvers use iterative optimization techniques.

References

Studied

To Study