-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathestimation.launch
77 lines (69 loc) · 2.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<launch>
<arg name="output" default="log"/>
<arg name="standalone" default="false"/>
<!-- World setup -->
<include if="$(arg standalone)" file="$(find agimus_demos)/launch/tiago_deburring_world_setup.launch">
</include>
<!-- Setup vision -->
<group ns="vision">
<!-- <node name="camera_to_xtion" pkg="tf2_ros" type="static_transform_publisher"
args="0.08 0.0 0.0 0.0 0.0 0.0 xtion_link camera_link"/> -->
<node pkg="agimus_vision" type="tracker_object"
output="$(arg output)"
name="tracker"
>
<param name="imageTopic" value="/xtion/rgb/image_raw" />
<param name="cameraInfoTopic" value="/xtion/rgb/camera_info" />
<param name="depthImageTopic" value="/xtion/depth/image_raw" />
<param name="depthCameraInfoTopic" value="/xtion/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="xtion_rgb_optical_frame" />
<param name="depthScale" value="0.001"/>
<param name="depthRGBDistance" value="0.047"/>
</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 5
--size 0.0845
--tag 6
--size 0.0845
--tag 13
--size 0.0845
--tag 14
--size 0.0845
--tag 15
--size 0.06
--tag 100
--size 0.06
--tag 101
--size 0.06
--tag 102
"
output="$(arg output)"
/>
<!-- Driller -->
<node pkg="agimus_demos" type="group_of_tags.py" name="driller_tags" args="
--child-frame-format 'driller/tag36_11_{:0>5d}'
--measurement-parent-frame xtion_rgb_optical_frame
--group-frame driller/base_link
--no-description
--size 0.04
--tag 230
--size 0.04
--tag 23
"
output="$(arg output)"
/>
</group>
</launch>