From f4e2c0be0d71b0c076aad8675e63bec79ca1c3ec Mon Sep 17 00:00:00 2001 From: scepter914 Date: Wed, 14 Feb 2024 06:51:57 +0900 Subject: [PATCH] update document Signed-off-by: scepter914 --- .../radar-data/supported-functions/data-message.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/design/autoware-architecture/sensing/data-types/radar-data/supported-functions/data-message.md b/docs/design/autoware-architecture/sensing/data-types/radar-data/supported-functions/data-message.md index a2d7e201ceb..103054b9d09 100644 --- a/docs/design/autoware-architecture/sensing/data-types/radar-data/supported-functions/data-message.md +++ b/docs/design/autoware-architecture/sensing/data-types/radar-data/supported-functions/data-message.md @@ -13,14 +13,14 @@ To sum up, Autoware uses radar data type as below. - -``` +```sh std_msgs/Header header radar_msgs/RadarReturn[] returns ``` - -``` +```sh # All variables below are relative to the radar's frame of reference. # This message is not meant to be used alone but as part of a stamped or array message. @@ -39,7 +39,7 @@ float32 amplitude # The amplitude of the of the return (d - [radar_msgs/msg/RadarTrack.msg](https://github.com/ros-perception/radar_msgs/blob/ros2/msg/RadarTrack.msg) -``` +```sh # Object classifications (Additional vendor-specific classifications are permitted starting from 32000 eg. Car) uint16 NO_CLASSIFICATION=0 uint16 STATIC=1 @@ -66,7 +66,7 @@ float32[6] size_covariance # Upper-triangle covariance about th For object classifications [radar_msgs/msg/RadarTrack.msg](https://github.com/ros-perception/radar_msgs/blob/ros2/msg/RadarTrack.msg), additional vendor-specific classifications are permitted starting from 32000. In addition to this, considering [existing label definition](https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs/-/blob/master/autoware_auto_perception_msgs/msg/ObjectClassification.idl), Autoware define object classifications as below. -``` +```sh uint16 UNKNOWN = 32000; uint16 CAR = 32001; uint16 TRUCK = 32002;