Exploring Various SLAM Algorithms

SLAM, which stands for Simultaneous Localization and Mapping, is a critical technology used in robotics, augmented reality, and other fields that require precise positioning and mapping in real time. The goal of SLAM is to enable a robot or other device to navigate an environment and construct a map of that environment simultaneously using only sensor data. With SLAM, machines can navigate and interact with the environment more accurately and effectively, making it a crucial component of many modern technologies.

Visual SLAM Image
Image Source: GIS Resources
In this project, different LiDAR and visual SLAM algorithms were explored, including Hector SLAM, Gmapping, Cartographer, RTAB-Map, and ORB-SLAM 3, with the goal of creating a map or trajectory of a round-trip route. The sensor dataset was collected using an IMU, Realsense Cameras, and LiDAR and then processed with the SLAM algorithms mentioned earlier. Finally, we compared the trajectories or maps generated by each SLAM algorithm and discussed the challenges encountered with our dataset.

Description of SLAM Algorithms

Hector SLAM: This LiDAR-based SLAM algorithm matches new incoming scans to the map using Gauss-Newton least squares for scan matching. It performs well in geometrically rich environments but struggles in straight or featureless areas.

Gmapping SLAM: Utilizing a Rao-Blackwellized particle filter, this algorithm creates 2D occupancy grid maps. It works well in distinctive environments but produces overlapping maps in straight paths due to poor scan registration.

Cartographer SLAM: This algorithm integrates LiDAR and IMU data to produce accurate 2D/3D maps. While it performs better in straight-line navigation, it struggles with rotational movements, leading to inaccuracies during turns.

RTAB-Map: This graph-based SLAM leverages RGB-D cameras and creates point cloud maps with loop closures, achieving robust and accurate mapping. However, slight deviations may occur in repetitive or feature-sparse areas.

ORB-SLAM 3: A modern visual SLAM system that provides precise trajectories by leveraging loop closure detection and semantic segmentation. It handles turns less effectively but achieves high accuracy overall.

SLAM Algorithm Sensor Map Type Performance Odometry Needed
Hector SLAM 2D Lidar Grid Bad No
Gmapping SLAM 2D Lidar Grid Bad Yes
Cartographer SLAM 2D Lidar/IMU Grid Bad Yes
RTAB-Map RGB-D Camera Grid/Point Cloud Good No
ORB-SLAM 3 Stereo Camera Trajectory Good No

References

  1. “hector_slam - ROS Wiki,” Ros.org. [Online]. Available: http://wiki.ros.org/hector_slam. [Accessed: 29-Apr-2023].
  2. “gmapping - ROS Wiki,” Ros.org. [Online]. Available: http://wiki.ros.org/gmapping. [Accessed: 29-Apr-2023].
  3. “laser_scan_matcher - ROS Wiki,” Ros.org. [Online]. Available: http://wiki.ros.org/laser_scan_matcher. [Accessed: 29-Apr-2023].
  4. “Cartographer ROS integration — cartographer ROS documentation,” Readthedocs.io. [Online]. Available: https://google-cartographer-ros.readthedocs.io/en/latest/. [Accessed: 29-Apr-2023].
  5. “rtabmap_ros - ROS Wiki,” Ros.org. [Online]. Available: http://wiki.ros.org/rtabmap_ros. [Accessed: 29-Apr-2023].
  6. S. Kohlbrecher, O. von Stryk, J. Meyer, and U. Klingauf, “A flexible and scalable SLAM system with full 3D motion estimation,” in 2011 IEEE International Symposium on Safety, Security, and Rescue Robotics, 2011.
  7. W. Hess, D. Kohler, H. Rapp, and D. Andor, “Real-Time Loop Closure in 2D LIDAR SLAM,” in Robotics and Automation (ICRA), 2016 IEEE International Conference on. IEEE, 2016.
  8. ORB_SLAM3: “ORB-SLAM3: An Accurate Open-Source Library for Visual, Visual-Inertial and Multi-Map SLAM.”