-
Notifications
You must be signed in to change notification settings - Fork 346
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 #81 from AprilRobotics/wxm-const-ref-and-isometry3d
Minor improvements: const-ref; Eigen::Isometry3d, warn if intrinsics aren't set
- Loading branch information
Showing
3 changed files
with
43 additions
and
42 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
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,20 +1,23 @@ | ||
<launch> | ||
<arg name="launch_prefix" default="" /> <!-- set to value="gdbserver localhost:10000" for remote debugging --> | ||
<arg name="node_namespace" default="apriltag_ros_continuous_node" /> | ||
<!-- set to value="gdbserver localhost:10000" for remote debugging --> | ||
<arg name="launch_prefix" default="" /> | ||
|
||
<!-- configure camera input --> | ||
<arg name="camera_name" default="/camera_rect" /> | ||
<arg name="image_topic" default="image_rect" /> | ||
<arg name="queue_size" default="1" /> | ||
|
||
<!-- Set parameters --> | ||
<rosparam command="load" file="$(find apriltag_ros)/config/settings.yaml" ns="$(arg node_namespace)" /> | ||
<rosparam command="load" file="$(find apriltag_ros)/config/tags.yaml" ns="$(arg node_namespace)" /> | ||
|
||
<node pkg="apriltag_ros" type="apriltag_ros_continuous_node" name="$(arg node_namespace)" clear_params="true" output="screen" launch-prefix="$(arg launch_prefix)" > | ||
<!-- apriltag_ros continuous detection node --> | ||
<node pkg="apriltag_ros" type="apriltag_ros_continuous_node" name="apriltag_ros_continuous_node" clear_params="true" output="screen" launch-prefix="$(arg launch_prefix)"> | ||
<!-- Remap topics from those used in code to those on the ROS network --> | ||
<remap from="image_rect" to="$(arg camera_name)/$(arg image_topic)" /> | ||
<remap from="camera_info" to="$(arg camera_name)/camera_info" /> | ||
|
||
<param name="publish_tag_detections_image" type="bool" value="true" /> <!-- default: false --> | ||
<param name="publish_tag_detections_image" type="bool" value="true" /><!-- default: false --> | ||
<param name="queue_size" type="int" value="$(arg queue_size)" /> | ||
|
||
<!-- load parameters (incl. tag family, tags, etc.) --> | ||
<rosparam command="load" file="$(find apriltag_ros)/config/settings.yaml"/> | ||
<rosparam command="load" file="$(find apriltag_ros)/config/tags.yaml"/> | ||
</node> | ||
</launch> |
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