-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_adapi_v1_msgs): add object recognition msg (#25)
* add perception message for object recognition Signed-off-by: tkhmy <[email protected]> * use the correct msg Signed-off-by: tkhmy <[email protected]> * change naming Signed-off-by: tkhmy <[email protected]> * fix naming Signed-off-by: tkhmy <[email protected]> * change shape Signed-off-by: tkhmy <[email protected]> * add missing data Signed-off-by: tkhmy <[email protected]> * change naming Signed-off-by: tkhmy <[email protected]> * change naming Signed-off-by: tkhmy <[email protected]> * change shape type Signed-off-by: tkhmy <[email protected]> --------- Signed-off-by: tkhmy <[email protected]>
- Loading branch information
Showing
7 changed files
with
35 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
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,5 @@ | ||
unique_identifier_msgs/UUID id | ||
float64 existence_probability | ||
autoware_adapi_v1_msgs/ObjectClassification[] classification | ||
autoware_adapi_v1_msgs/DynamicObjectKinematics kinematics | ||
shape_msgs/SolidPrimitive 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,2 @@ | ||
std_msgs/Header header | ||
autoware_adapi_v1_msgs/DynamicObject[] objects |
5 changes: 5 additions & 0 deletions
5
autoware_adapi_v1_msgs/perception/msg/DynamicObjectKinematics.msg
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,5 @@ | ||
geometry_msgs/Pose pose | ||
geometry_msgs/Twist twist | ||
geometry_msgs/Accel accel | ||
|
||
autoware_adapi_v1_msgs/DynamicObjectPath[] 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,3 @@ | ||
geometry_msgs/Pose[] path | ||
builtin_interfaces/Duration time_step | ||
float64 confidence |
11 changes: 11 additions & 0 deletions
11
autoware_adapi_v1_msgs/perception/msg/ObjectClassification.msg
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 | ||
float64 probability |