-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from 23pointsNorth/patch-1
Update the example launch file
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
<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="image_rect" /> | ||
<remap from="camera_info" to="camera_info" /> | ||
|
||
<!-- Optional: Subscribe to the compressed stream--> | ||
<param name="image_transport" type="str" value="compressed" /> | ||
|
||
<!-- Describe the tags --> | ||
<rosparam param="tag_descriptions">[ | ||
{id: 0, size: 0.163513}, | ||
{id: 1, size: 0.163513, frame_id: a_frame}, | ||
{id: 2, size: 0.163513}, | ||
{id: 2, size: 0.163513, frame_id: tag_2}, | ||
{id: 3, size: 0.163513}, | ||
{id: 4, size: 0.163513}, | ||
{id: 5, size: 0.163513}] | ||
</rosparam> | ||
</node> | ||
</launch> | ||
</launch> |