-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
965 additions
and
566 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
1 0.33 0 0 0 0 0 0 | ||
2 0.33 1 0 0 0 0 0 | ||
3 0.33 0 1 0 0 0 0 | ||
4 0.33 1 1 0 0 0 0 |
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,6 @@ | ||
uint32 id | ||
geometry_msgs/PoseWithCovariance pose | ||
Point2D c1 | ||
Point2D c2 | ||
Point2D c3 | ||
Point2D c4 |
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,2 @@ | ||
Header header | ||
Marker[] markers |
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,2 @@ | ||
float32 x | ||
float32 y |
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,5 +1,8 @@ | ||
<library path="lib/libaruco_pose"> | ||
<class name="aruco_pose/aruco_pose" type="ArucoPose" base_class_type="nodelet::Nodelet"> | ||
<class name="aruco_pose/aruco_detect" type="ArucoDetect" base_class_type="nodelet::Nodelet"> | ||
<description/> | ||
</class> | ||
<class name="aruco_pose/aruco_map" type="ArucoMap" base_class_type="nodelet::Nodelet"> | ||
<description/> | ||
</class> | ||
</library> |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<package> | ||
<name>aruco_pose</name> | ||
<version>0.0.0</version> | ||
<description>ArUco maps precise pose estimation nodelet</description> | ||
<description>Positioning by ArUco markers</description> | ||
|
||
<maintainer email="[email protected]">Oleg Kalachev</maintainer> | ||
<license>MIT</license> | ||
|
@@ -11,21 +11,30 @@ | |
<author email="[email protected]">Oleg Kalachev</author> | ||
<author email="[email protected]">Artem Smirnov</author> | ||
|
||
<!-- Use build_depend for packages you need at compile time: --> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<build_depend>tf</build_depend> | ||
<build_depend>tf2</build_depend> | ||
<build_depend>tf2_ros</build_depend> | ||
<build_depend>tf2_geometry_msgs</build_depend> | ||
<build_depend>cv_bridge</build_depend> | ||
<build_depend>dynamic_reconfigure</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
<build_depend>message_runtime</build_depend> | ||
<build_depend>nodelet</build_depend> | ||
<build_depend>roscpp</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>cv_bridge</build_depend> | ||
<build_depend>tf</build_depend> | ||
<!-- Use buildtool_depend for build tool packages: --> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<!-- Use run_depend for packages you need at runtime: --> | ||
<build_depend>std_msgs</build_depend> | ||
<run_depend>nodelet</run_depend> | ||
<run_depend>roscpp</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>cv_bridge</run_depend> | ||
<!-- Use test_depend for packages you need only for testing: --> | ||
<!-- <test_depend>gtest</test_depend> --> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>tf</run_depend> | ||
<run_depend>tf2</run_depend> | ||
<run_depend>tf2_ros</run_depend> | ||
<run_depend>tf2_geometry_msgs</run_depend> | ||
|
||
<!-- The export tag contains other, unspecified, tags --> | ||
<export> | ||
|
Oops, something went wrong.