-
Notifications
You must be signed in to change notification settings - Fork 2
/
estimation.launch
41 lines (40 loc) · 1.35 KB
/
estimation.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
<launch>
<arg name="output" default="log"/>
<!-- Setup vision -->
<group ns="vision">
<node pkg="agimus_vision" type="tracker_object"
output="$(arg output)"
name="tracker"
>
<param name="imageTopic" value="/camera/color/image_raw" />
<param name="cameraInfoTopic" value="/camera/color/camera_info" />
<param name="depthImageTopic" value="/camera/depth/image_raw"/>
<param name="depthCameraInfoTopic" value="/camera/depth/camera_info"/>
<param name="debugDisplay" value="false" />
<param name="broadcastTopic" value="true" />
<param name="broadcastTf" value="true" />
<param name="broadcastTfPostfix" value="_tf" />
<param name="objectType" value="apriltag" />
<param name="cameraFrame" value="camera_color_optical_frame" />
</node>
<!-- Part -->
<node pkg="agimus_demos" type="group_of_tags.py" name="part_tags" args="
--child-frame-format 'part/tag36_11_{:0>5d}'
--measurement-parent-frame xtion_rgb_optical_frame
--group-frame part/base_link
--no-description
--size 0.0845
--tag 1
--size 0.0845
--tag 6
--size 0.0845
--tag 15
--size 0.0415
--tag 100
--size 0.0415
--tag 101
"
output="$(arg output)"
/>
</group>
</launch>