This package provides ROS implentation of the tinySLAM (https://openslam.org/tinyslam.html) that is one of the most simpliest and lightweight SLAM methods. Current implementation is compatible with ROS Jade and adds some improvements to the original method: the alternative model of a grid map cell that keeps track of the average of all stored effective values (probability of being occupied with scan’s quality taken into account); an option to compute probability of a cell being occupied based on how the laser beam splits the cell (the original implementation uses the constant value).
Current implementation supposes that the robot provides odometry data and laser scan measurements from the horizontally mounted fixed laser scanner. These data should be provided through the ROS topics (see Subscribed topics).
Use the provided launch-file to run and configure tinySLAM node:
roslaunch tiny_slam tinyslam_run.launch path:=[path to dataset]
Dataset should be in BAG format (http://wiki.ros.org/rosbag). You also may comment out rosbag node in the launch file if you use the real-time data or replace it with some other dataset player.
The tiny_slam node takes in sensor_msgs/LaserScan messages and odometry data from /tf topic and builds a map (nav_msgs/OccupancyGrid) that can be retrieved via the ROS topic /map.
base_link → odom_combined: usually provided by the odometry system (e.g., the driver for the mobile base)
map → robot_pose: the current estimate of the robot's pose within the map frame
Copyright (c) 2016 JetBrains Research, Mobile Robot Algorithms Laboratory