Project

General

Profile

Statistics
| Branch: | Revision:

root / rgbdslam / launch / octomap.launch @ 9240aaa3

History | View | Annotate | Download (755 Bytes)

1 9240aaa3 Alex
<launch>
2
  <!--might only work with the experimental octomap (as of May 11)-->
3
    <!-- Launch octomap_server for mappingL: Listens to incoming PointCloud2 data 
4
    and incrementally build an octomap. The data is sent out in different representations. -->
5
	<node pkg="octomap_server" type="octomap_server_node" name="octomap_server">
6
		<param name="resolution" value="0.0250" />
7
		
8
		<!-- fixed map frame (set to 'map' if SLAM or localization running!) -->
9
		<param name="frame_id" type="string" value="map" />
10
		
11
		<!-- maximum range to integrate (speedup, accuracy) -->
12
		<param name="max_sensor_range" value="7.0" />
13
		
14
		<!-- data source to integrate (PointCloud2) -->
15
        <remap from="cloud_in" to="/rgbdslam/batch_clouds" />
16
	</node>
17
</launch>