-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrun_apriltag_detection.launch
More file actions
27 lines (23 loc) · 1.23 KB
/
Copy pathrun_apriltag_detection.launch
File metadata and controls
27 lines (23 loc) · 1.23 KB
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
<launch>
<node pkg="apriltags_ros" type="apriltag_detector_node" name="apriltag_detector" output="screen">
<!-- Remap topic required by the node to custom topics -->
<remap from="image_rect" to="axis1" />
<remap from="camera_info" to="axis1/camera_info" />
<!-- Optional: Subscribe to the compressed stream-->
<param name="image_transport" type="str" value="compressed" />
<!-- Select the tag family: 16h5, 25h7, 25h9, 36h9, or 36h11(default) -->
<param name="tag_family" type="str" value="36h11" />
<!-- Enable projected optical measurements for more accurate tag transformations -->
<!-- This exists for backwards compatability and should be left true for new setups -->
<param name="projected_optics" type="bool" value="true" />
<!-- Describe the tags -->
<rosparam param="tag_descriptions">[
{id: 0, size: 0.163513, frame_id: april_tag_frame_id_0},
{id: 1, size: 0.163513, frame_id: april_tag_frame_id_1},
{id: 2, size: 0.163513, frame_id: april_tag_frame_id_2},
{id: 3, size: 0.163513, frame_id: april_tag_frame_id_3},
{id: 4, size: 0.163513, frame_id: april_tag_frame_id_4},
{id: 5, size: 0.163513, frame_id: april_tag_frame_id_5}]
</rosparam>
</node>
</launch>