how to improve maps from octomap?
Hi ,
I am trying to build quality maps by using octomap on ROS hydro using a xtion pro live sensor mounted on the robot.
The map generated by octomap do not update well, when visiting the same area and corrupts the map. . I am using gmapping for SLAM with a Hokuyo sensor. The 2d grid map builds up nicely and updates but the octomap overlays the map and do no update.
I am doing this on a p3dx pioneer robot. My octomap_mapping.launch file looks like this
<launch>
<node pkg="octomap_server" type="octomap_server_node" name="octomap_server">
<param name="resolution" value="0.05" />
<!-- fixed map frame (set to 'map' if SLAM or localization running!) -->
<param name="frame_id" type="string" value="odom" />
<!-- maximum range to integrate (speedup!) -->
<param name="sensor_model/max_range" value="5.0" />
<!-- data source to integrate (PointCloud2) -->
<remap from="cloud_in" to="/camera/depth_registered/points" />
</node>
</launch>
Can someone help me and suggest ideas as to how I can improve the maps generated by octomap. Thanks
Alex