-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_perception_msgs): add PredictedObjects msgs (#63)
* feat(autoware_perception_msgs): add PredictedObjects msgs Signed-off-by: beginningfan <[email protected]> * style(pre-commit): autofix * feat(autoware_perception_msgs): fix conflicting msgs Signed-off-by: beginningfan <[email protected]> --------- Signed-off-by: beginningfan <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Ryohsuke Mitsudome <[email protected]>
- Loading branch information
1 parent
9de9a00
commit 993addf
Showing
8 changed files
with
44 additions
and
0 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,11 @@ | ||
uint8 UNKNOWN = 0 | ||
uint8 CAR = 1 | ||
uint8 TRUCK = 2 | ||
uint8 BUS = 3 | ||
uint8 TRAILER = 4 | ||
uint8 MOTORCYCLE = 5 | ||
uint8 BICYCLE = 6 | ||
uint8 PEDESTRIAN = 7 | ||
|
||
uint8 label | ||
float32 probability |
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 @@ | ||
unique_identifier_msgs/UUID id | ||
ObjectClassification classification | ||
PredictedObjectKinematics kinematics | ||
Shape shape |
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 @@ | ||
geometry_msgs/PoseWithCovariance initial_pose_with_covariance | ||
geometry_msgs/TwistWithCovariance initial_twist_with_covariance | ||
geometry_msgs/AccelWithCovariance initial_acceleration_with_covariance | ||
PredictedPath[100] predicted_paths |
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 @@ | ||
std_msgs/Header header | ||
PredictedObject[] objects |
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,3 @@ | ||
geometry_msgs/Pose[100] path | ||
builtin_interfaces/Duration time_step | ||
float32 confidence |
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,7 @@ | ||
uint8 BOUNDING_BOX=0 | ||
uint8 CYLINDER=1 | ||
uint8 POLYGON=2 | ||
|
||
uint8 type | ||
geometry_msgs/Polygon footprint | ||
geometry_msgs/Vector3 dimensions |
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