-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpointcloud_screenpoint.launch
28 lines (26 loc) · 1.18 KB
/
pointcloud_screenpoint.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<launch>
<arg name="image" default="/AizuSpiderAA/ARM_CAMERA/" />
<arg name="points" default="/AizuSpiderAA/ARM_CAMERA/points" />
<arg name="image_type" default="image" />
<!-- JAXON -->
<!--
<arg name="image" default="/multisense_local/left/" />
<arg name="points" default="/multisense_local/organized_image_points2" />
<arg name="image_type" default="image_rect_color" />
-->
<machine name="localhost" address="localhost" />
<arg name="cloud_machine" default="localhost" />
<arg name="display_machine" default="localhost" />
<arg name="USE_VIEW" default="true" />
<!-- launch/pointcloud_screenpoint.launch -->
<include file="$(find jsk_pcl_ros)/launch/pointcloud_screenpoint.launch">
<arg name="cloud_machine" default="$(arg cloud_machine)"/>
<arg name="display_machine" default="$(arg display_machine)"/>
<arg name="image" default="$(arg image)"/>
<arg name="image_type" default="$(arg image_type)"/>
<arg name="points" default="$(arg points)"/>
<arg name="USE_DEPTH_CREATER" default="false" />
<arg name="USE_REGISTERED_DEPTH" default="false"/>
<arg name="USE_VIEW" default="$(arg USE_VIEW)"/>
</include>
</launch>