ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
4

rtabmap_ros + Kinect = 2D map. How to? (newbie)

asked 2015-06-14 00:27:20 -0500

kenshin23 gravatar image

updated 2015-07-03 00:51:25 -0500

Hi all, as the title suggests, I need help regarding RGB-D SLAM map creation (using RTAB-Map) -- apologies in advance if I get some terms wrong:

TL;DR Version:

I have a Kinect and ROS Indigo in Ubuntu 14.04 and want to create a 2D map. with no odometry/laser scans (only handheld Kinect) at first. Hardly any experience with ROS as well, so much handholding is needed.

Longer Version:

I'm working on creating a map for navigation of an autonomous robot. Because of time constraints, I'm actually not going to use the robot for now, but will start with using a Kinect by itself, so RGB-D SLAM sounds like the way to go. I found RTAB-Map and it seems like the perfect choice, but I'm having some problems with it (mainly due to me not entirely understanding how it works.) I'm looking to achieve the following:

  • Scan the environment with the Kinect (I do this following this tutorial: Kinect Mapping though I would like to minimize lost odometry problems) (Note: I'm using Freenect since OpenNI doesn't seem to detect my Kinect. I'm not sure why.)
  • Get the 2D projection of the 3D cloud map (Don't know how to get this, yet)
  • Optionally (but preferred), figure out a way to select a vertical "slice" of data to get the 2D projection (i.e.: set a minimum-maximum height to detect obstacles)
  • Save the optimized 2D projection as a map, like the ones seen on RTAB-Map demos.

I have almost no experience with ROS, so I need as much handholding as possible.

Could anyone help me do this (or point me in the right direction), please? Thanks in advance.

Edit:

Big thank you to matlabbe for the help (and sorry for not commenting sooner.) After much fighting with the OpenNI drivers, I got the commands above to work, but when adding a Map and then setting the rtabmap/proj_map topic, sometimes I get a "map not found" error.

When it does work, I find that the loop closure detection doesn't appear to be working: i.e., if I scan the area with the Kinect, pause for a while, and then rescan the area again, I get a cloud map that appears to be the same as the original scan, but skewed. It's probably my fault, as I'm not familiar with the software yet, but am I missing something?

edit retag flag offensive close merge delete

Comments

If you look at the bottom of your Kinect, I would bet that it is a model 1473 Kinect. This model number doesn't work with openni for some reason. Here is some more info on it here.

luketheduke gravatar image luketheduke  ( 2015-09-13 12:20:20 -0500 )edit

2 Answers

Sort by ยป oldest newest most voted
5

answered 2015-06-16 10:27:32 -0500

matlabbe gravatar image

updated 2021-08-09 10:27:09 -0500

You can look at the Turtlebot demo on RTAB-Map's forum. There is an option to use it without the robot (generating odometry from the Kinect). It simulates a laser scan and visual odometry is constraint to 2D. This demo is compatible with the turtlebot navigation tutorials on ROS:

$ roslaunch turtlebot_bringup minimal.launch
$ roslaunch rtabmap_ros demo_turtlebot_mapping.launch rgbd_odometry:=true args="--delete_db_on_start"
$ rosrun rviz rviz -d turtlebot_navigation.rviz

In this demo, you will get a 2D map from the assembled laser scans. To visualize the projection map (3D cloud to 2D map), select in RVIZ under the map object, the rtabmap/proj_map topic. In the launch the file, you can set

<node name="rtabmap" pkg="rtabmap_ros" type="rtabmap" output="screen" args="$(arg args)">
    ...    
    <param name="proj_max_height" type="double" value="2.0"/>
</node>

under rtabmap node to set the maximum height of the cloud used for projection (default 2 meters).

edit flag offensive delete link more

Comments

Hi again, and thank you very much for the help. I've gotten the instructions to work, however, one last key piece of info is missing: how to save the resulting maps, 3D and 2D. I've tried with 'rosrun map_server map_saver -f map (and /map:=/map2d)' but I always get "Waiting for the map". Any ideas?

kenshin23 gravatar image kenshin23  ( 2015-07-08 19:10:54 -0500 )edit

You don't need a map_server. The 2D and 3D maps are saved in ~/.ros/rtabmap.db file. When re-launching rtabmap without "--delete_db_on_start" argument and with "localization=true", it will load the map in rtabmap.db, then republish the 2D and 3D maps after the robot is able to localize in the map.

matlabbe gravatar image matlabbe  ( 2015-07-09 16:09:36 -0500 )edit

But normally, you should still be able to save a map with map_server like:

$ rosrun map_server map_saver map:=/map
$ rosrun map_server map_saver map:=/rtabmap/proj_map

3D point cloud:

$ rosrun pcl_ros pointcloud_to_pcd input:=/rtabmap/map_cloud
matlabbe gravatar image matlabbe  ( 2015-07-09 16:15:07 -0500 )edit
0

answered 2015-07-06 19:31:37 -0500

troman gravatar image

I'm using a Kinect to build 2D maps at the moment as well and getting pretty good results. Here are some of the packages I'm using:

SLAM: hector_slam - uses scan matching so it can localize without need for external odometry

Laser Scan: depthimage_to_laserscan - converts a 3d pointcloud to a fake laser scan

Maps: map_server - lets you save and publish maps

I'm sorry if this doesn't quite answer the specifics but these have worked for me and you're trying to accomplish basically the same thing.

edit flag offensive delete link more

Comments

Hi @troman Could you explain me how do you get hector_slam works? I've been tried using this package to create a 2D map with kinect but still I cannot even have a map. I really appreciate any info than you can give me.

jcardenasc93 gravatar image jcardenasc93  ( 2015-09-07 19:00:08 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2015-06-14 00:27:20 -0500

Seen: 6,957 times

Last updated: Aug 09 '21