This package shows how to use the ZED Wrapper with RTAB-map
Follow the install guide
To launch the example, open a terminal and launch:
$ roslaunch zed_rtabmap_example zed_rtabmap.launch
Example of indoor 3D mapping using RTAB-map and ZED
To correctly use the ZED wrapper with the rtabmap_ros node we need to match the following RTABmap parameters:
rgb_topic-> topic of the color information to be associated to the points of the 3D mapdepth_topic-> topic of the depth informationcamera_info_topic-> topic of RGB camera parameters used to create the association of each color pixel to the relative 3D pointdepth_camera_info_topic-> topic of the depth camera parameter, to convert the 2D depth image to a 3D point cloudodom_topic-> name of the camera frame
The values associated to the above parameters are the following:
<arg name="odom_topic" default="zed_node/odom" />
<arg name="rgb_topic" default="zed_node/rgb/image_rect_color" />
<arg name="depth_topic" default="zed_node/depth/depth_registered" />
<arg name="camera_info_topic" default="zed_node/rgb/camera_info" />
<arg name="depth_camera_info_topic" default="zed_node/depth/camera_info" />
