-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathconfig_nodepth.launch
59 lines (52 loc) · 2.38 KB
/
config_nodepth.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>
<!--
config_nodepth.launch
Author: Ravi Joshi
Note: Do not run this file directly. Please call run.launch file instead.
Date: 2019/11/23
-->
<launch>
<!-- rostopic to subscribe for color images -->
<arg name="color_topic" default="/camera/color/image_raw" />
<!-- rostopic to subscribe for depth images.
leave this field as it is because we do not have depth information. -->
<arg name="depth_topic" default="depth_topic" />
<!-- rostopic to subscribe for camera calibration parameters.
leave this field as it is because we do not have depth information. -->
<arg name="cam_info_topic" default="cam_info_topic" />
<!-- frame id for point cloud and 3D skeleton data.
leave this field as it is because we do not have depth information. -->
<arg name="frame_id" default="no_depth" />
<!-- we do not have depth information.
hence set the flag. -->
<arg name="no_depth" default="true" />
<arg name="skeleton" default="false" />
<arg name="skeleton_hands" default="false" />
<!-- no RViz support -->
<arg name="rviz" default="false" />
<!-- note that the following parameters are going to assigned by other launch file upon call. -->
<arg name="print" default="" />
<arg name="pub_topic" default="" />
<arg name="pointcloud" default="" />
<arg name="id_text_size" default="" />
<arg name="openpose_args" default="" />
<arg name="id_text_offset" default="" />
<arg name="openpose_model_dir" default="" />
<arg name="skeleton_line_width" default="" />
<include file="$(find ros_openpose)/launch/core.launch" >
<arg name="print" value="$(arg print)" />
<arg name="no_depth" value="$(arg no_depth)" />
<arg name="skeleton" value="$(arg skeleton)" />
<arg name="frame_id" value="$(arg frame_id)" />
<arg name="pub_topic" value="$(arg pub_topic)" />
<arg name="color_topic" value="$(arg color_topic)" />
<arg name="depth_topic" value="$(arg depth_topic)" />
<arg name="id_text_size" value="$(arg id_text_size)" />
<arg name="openpose_args" value="$(arg openpose_args)" />
<arg name="id_text_offset" value="$(arg id_text_offset)" />
<arg name="skeleton_hands" value="$(arg skeleton_hands)" />
<arg name="cam_info_topic" value="$(arg cam_info_topic)" />
<arg name="openpose_model_dir" value="$(arg openpose_model_dir)" />
<arg name="skeleton_line_width" value="$(arg skeleton_line_width)" />
</include>
</launch>