forked from ros-perception/ar_track_alvar
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #4 from TeamSOBITS/noetic-check
Noetic devel (ros-perception#89)
- Loading branch information
Showing
14 changed files
with
97 additions
and
167 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<launch> | ||
<arg name="marker_size" default="4.4" /> | ||
<arg name="max_new_marker_error" default="0.08" /> | ||
<arg name="max_track_error" default="0.0" /> | ||
|
||
<arg name="cam_image_topic" default="/kinect_head/depth_registered/points" /> | ||
<arg name="cam_info_topic" default="/kinect_head/rgb/camera_info" /> | ||
|
||
<arg name="output_frame" default="/torso_lift_link" /> | ||
<arg name="med_filt_size" default="10" /> | ||
<arg name="bundle_files" default="$(find ar_track_alvar)/bundles/truthTableLeg.xml $(find ar_track_alvar)/bundles/table_8_9_10.xml" /> | ||
|
||
<node name="ar_track_alvar" pkg="ar_track_alvar" type="findMarkerBundles" respawn="false" output="screen" args="$(arg marker_size) $(arg max_new_marker_error) $(arg max_track_error) $(arg cam_image_topic) $(arg cam_info_topic) $(arg output_frame) $(arg med_filt_size) $(arg bundle_files)" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<launch> | ||
<arg name="marker_size" default="4.4" /> | ||
<arg name="max_new_marker_error" default="0.08" /> | ||
<arg name="max_track_error" default="0.2" /> | ||
|
||
<arg name="cam_image_topic" default="/wide_stereo/left/image_color" /> | ||
<arg name="cam_info_topic" default="/wide_stereo/left/camera_info" /> | ||
|
||
<arg name="output_frame" default="/torso_lift_link" /> | ||
<arg name="bundle_files" default="$(find ar_track_alvar)/bundles/truthTableLeg.xml $(find ar_track_alvar)/bundles/table_8_9_10.xml" /> | ||
|
||
<node name="ar_track_alvar" pkg="ar_track_alvar" type="findMarkerBundlesNoKinect" respawn="false" output="screen"> | ||
<param name="marker_size" type="double" value="$(arg marker_size)" /> | ||
<param name="max_new_marker_error" type="double" value="$(arg max_new_marker_error)" /> | ||
<param name="max_track_error" type="double" value="$(arg max_track_error)" /> | ||
<param name="output_frame" type="string" value="$(arg output_frame)" /> | ||
<param name="bundle_files" type="string" value="$(arg bundle_files)" /> | ||
|
||
<remap from="camera_image" to="$(arg cam_image_topic)" /> | ||
<remap from="camera_info" to="$(arg cam_info_topic)" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<launch> | ||
<arg name="marker_size" default="4.4" /> | ||
<arg name="max_new_marker_error" default="0.08" /> | ||
<arg name="max_track_error" default="0.2" /> | ||
|
||
<arg name="cam_image_topic" default="/kinect_head/depth_registered/points" /> | ||
<arg name="cam_info_topic" default="/kinect_head/rgb/camera_info" /> | ||
<arg name="output_frame" default="/torso_lift_link" /> | ||
|
||
<node name="ar_track_alvar" pkg="ar_track_alvar" type="individualMarkers" respawn="false" output="screen"> | ||
<param name="marker_size" type="double" value="$(arg marker_size)" /> | ||
<param name="max_new_marker_error" type="double" value="$(arg max_new_marker_error)" /> | ||
<param name="max_track_error" type="double" value="$(arg max_track_error)" /> | ||
<param name="output_frame" type="string" value="$(arg output_frame)" /> | ||
|
||
<remap from="camera_image" to="$(arg cam_image_topic)" /> | ||
<remap from="camera_info" to="$(arg cam_info_topic)" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<launch> | ||
<arg name="marker_size" default="4.4" /> | ||
<arg name="max_new_marker_error" default="0.08" /> | ||
<arg name="max_track_error" default="0.2" /> | ||
<arg name="cam_image_topic" default="/wide_stereo/left/image_color" /> | ||
<arg name="cam_info_topic" default="/wide_stereo/left/camera_info" /> | ||
<arg name="output_frame" default="/torso_lift_link" /> | ||
|
||
<node name="ar_track_alvar" pkg="ar_track_alvar" type="individualMarkersNoKinect" respawn="false" output="screen"> | ||
<param name="marker_size" type="double" value="$(arg marker_size)" /> | ||
<param name="max_new_marker_error" type="double" value="$(arg max_new_marker_error)" /> | ||
<param name="max_track_error" type="double" value="$(arg max_track_error)" /> | ||
<param name="output_frame" type="string" value="$(arg output_frame)" /> | ||
|
||
<remap from="camera_image" to="$(arg cam_image_topic)" /> | ||
<remap from="camera_info" to="$(arg cam_info_topic)" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<launch> | ||
<arg name="nof_markers" default="8" /> | ||
<arg name="marker_size" default="4.4" /> | ||
<arg name="max_new_marker_error" default="0.08" /> | ||
<arg name="max_track_error" default="0.2" /> | ||
<arg name="cam_image_topic" default="/wide_stereo/left/image_color" /> | ||
<arg name="cam_info_topic" default="/wide_stereo/left/camera_info" /> | ||
<arg name="output_frame" default="/torso_lift_link" /> | ||
|
||
<node name="ar_track_alvar" pkg="ar_track_alvar" type="trainMarkerBundle" respawn="false" output="screen" args="$(arg nof_markers) $(arg marker_size) $(arg max_new_marker_error) $(arg max_track_error) $(arg cam_image_topic) $(arg cam_info_topic) $(arg output_frame)" /> | ||
</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
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