-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uniformized Landmark msg with LandmarkDetection already in ros2 branc…
…h. Fixed right image conversion bug when converting from SensorData msg. Fixed some SensorData related subscribers not initialized.
- Loading branch information
Showing
7 changed files
with
42 additions
and
20 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# header.stamp: the timestamp of the detection (e.g. image timestamp) | ||
# header.frame_id: the base frame of pose (e.g., camera optical frame) | ||
std_msgs/Header header | ||
|
||
# Landmark's frame id | ||
string landmark_frame_id | ||
|
||
# Landmark's unique ID: should be >0 | ||
int32 id | ||
|
||
# Size in meters of the landmark/tag (optional, set 0 to not use it). | ||
float32 size | ||
|
||
# Pose of the landmark in header.frame_id frame. | ||
# If covariance is unknown, keep it as null matrix. | ||
# rtabmap_slam/rtabmap's landmark_angular_variance and | ||
# landmark_linear_variance parameters can be used | ||
# for convenience if covariance is null. | ||
geometry_msgs/PoseWithCovariance pose | ||
|
||
|
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,8 @@ | ||
|
||
# header.stamp: the timestamp of the detection (e.g. image timestamp) | ||
# header.frame_id: the base frame of pose (e.g., camera optical frame) | ||
std_msgs/Header header | ||
|
||
LandmarkDetection[] landmarks | ||
|
||
|
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