Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (976 Bytes)

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