-
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 DetectedObjects messages and TrackedObjects messages Signed-off-by: Ryohsuke Mitsudome <[email protected]> * feat!(autoware_planning_msgs): remove PathWithLaneId msgs Signed-off-by: Ryohsuke Mitsudome <[email protected]> * feat!(autoware_perception_msgs): rename traffic signals to traffic lights Signed-off-by: Ryohsuke Mitsudome <[email protected]> * remove control mode command msg Signed-off-by: Yukihito Saito <[email protected]> * fix(autoware_vehicle_msgs): remove ControlModeCommands.msg in CMakeLists.txt (#90) Signed-off-by: Ryohsuke Mitsudome <[email protected]> * feat(autoware_vehicle_msgs)!: remove VehicleControlCommand, VehicleKinematicState, and VehicleOdometry messages (#88) feat!(autoware_vehicle_msgs): remove VehicleControlCommand, VehicleKinematicState, and VehicleOdometry messages Signed-off-by: mitsudome-r <[email protected]> * Revert "feat!(autoware_perception_msgs): rename traffic signals to traffic lights" This reverts commit 768bb85. * add TrafficLight msgs Signed-off-by: Yutaka Kondo <[email protected]> * add todo Signed-off-by: Yutaka Kondo <[email protected]> --------- Signed-off-by: Ryohsuke Mitsudome <[email protected]> Signed-off-by: Yukihito Saito <[email protected]> Signed-off-by: mitsudome-r <[email protected]> Signed-off-by: Yutaka Kondo <[email protected]> Co-authored-by: Ryohsuke Mitsudome <[email protected]> Co-authored-by: Ryohsuke Mitsudome <[email protected]> Co-authored-by: Yutaka Kondo <[email protected]>
- Loading branch information
1 parent
224bd3a
commit 54c1dab
Showing
21 changed files
with
108 additions
and
30 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 @@ | ||
float32 existence_probability | ||
ObjectClassification[] classification | ||
DetectedObjectKinematics 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,25 @@ | ||
# Only position is available, orientation is empty. Note that the shape can be an oriented | ||
# bounding box but the direction the object is facing is unknown, in which case | ||
# orientation should be empty. | ||
uint8 UNAVAILABLE=0 | ||
|
||
# The orientation is determined only up to a sign flip. For instance, assume that cars are | ||
# longer than they are wide, and the perception pipeline can accurately estimate the | ||
# dimensions of a car. It should set the orientation to coincide with the major axis, with | ||
# the sign chosen arbitrarily, and use this tag to signify that the orientation could | ||
# point to the front or the back. | ||
uint8 SIGN_UNKNOWN=1 | ||
|
||
# The full orientation is available. Use e.g. for machine-learning models that can | ||
# differentiate between the front and back of a vehicle. | ||
uint8 AVAILABLE=2 | ||
|
||
geometry_msgs/PoseWithCovariance pose_with_covariance | ||
|
||
bool has_position_covariance | ||
uint8 orientation_availability | ||
|
||
geometry_msgs/TwistWithCovariance twist_with_covariance | ||
|
||
bool has_twist | ||
bool has_twist_covariance |
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 | ||
DetectedObject[] 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,5 @@ | ||
unique_identifier_msgs/UUID object_id | ||
float32 existence_probability | ||
ObjectClassification[] classification | ||
TrackedObjectKinematics 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,22 @@ | ||
# Only position is available, orientation is empty. Note that the shape can be an oriented | ||
# bounding box but the direction the object is facing is unknown, in which case | ||
# orientation should be empty. | ||
uint8 UNAVAILABLE=0 | ||
|
||
# The orientation is determined only up to a sign flip. For instance, assume that cars are | ||
# longer than they are wide, and the perception pipeline can accurately estimate the | ||
# dimensions of a car. It should set the orientation to coincide with the major axis, with | ||
# the sign chosen arbitrarily, and use this tag to signify that the orientation could | ||
# point to the front or the back. | ||
uint8 SIGN_UNKNOWN=1 | ||
|
||
# The full orientation is available. Use e.g. for machine-learning models that can | ||
# differentiate between the front and back of a vehicle. | ||
uint8 AVAILABLE=2 | ||
|
||
geometry_msgs/PoseWithCovariance pose_with_covariance | ||
geometry_msgs/TwistWithCovariance twist_with_covariance | ||
geometry_msgs/AccelWithCovariance acceleration_with_covariance | ||
|
||
uint8 orientation_availability | ||
bool is_stationary |
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 | ||
TrackedObject[] 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,31 @@ | ||
# constants for common use | ||
uint8 UNKNOWN = 0 | ||
|
||
# constants for color | ||
uint8 RED = 1 | ||
uint8 AMBER = 2 | ||
uint8 GREEN = 3 | ||
uint8 WHITE = 4 | ||
|
||
# constants for shape | ||
uint8 CIRCLE = 1 | ||
uint8 LEFT_ARROW = 2 | ||
uint8 RIGHT_ARROW = 3 | ||
uint8 UP_ARROW = 4 | ||
uint8 UP_LEFT_ARROW=5 | ||
uint8 UP_RIGHT_ARROW=6 | ||
uint8 DOWN_ARROW = 7 | ||
uint8 DOWN_LEFT_ARROW = 8 | ||
uint8 DOWN_RIGHT_ARROW = 9 | ||
uint8 CROSS = 10 | ||
|
||
# constants for status | ||
uint8 SOLID_OFF = 1 | ||
uint8 SOLID_ON = 2 | ||
uint8 FLASHING = 3 | ||
|
||
# variables | ||
uint8 color | ||
uint8 shape | ||
uint8 status | ||
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,2 @@ | ||
int64 traffic_light_group_id | ||
autoware_perception_msgs/TrafficLightElement[] elements |
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 @@ | ||
builtin_interfaces/Time stamp | ||
autoware_perception_msgs/TrafficLightGroup[] traffic_light_groups |
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,2 +1,3 @@ | ||
# TODO(youtalk): Remove this after migration to TrafficLight | ||
int64 traffic_signal_id | ||
autoware_perception_msgs/TrafficSignalElement[] elements |
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,2 +1,3 @@ | ||
# TODO(youtalk): Remove this after migration to TrafficLight | ||
builtin_interfaces/Time stamp | ||
autoware_perception_msgs/TrafficSignal[] signals |
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,3 +1,4 @@ | ||
# TODO(youtalk): Remove this after migration to TrafficLight | ||
# constants for common use | ||
uint8 UNKNOWN = 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.