Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add radar tracks msgs converter #1012

Prev Previous commit
Next Next commit
update README
Signed-off-by: scepter914 <scepter914@gmail.com>
  • Loading branch information
scepter914 committed Jun 20, 2022
commit 605754a4b028b6a48e4faee2b04ef585a92c2258
19 changes: 19 additions & 0 deletions perception/radar_tracks_msgs_converter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,22 @@ This package convert from [radar_msgs/msg/RadarTracks](https://github.com/ros-pe
- Default parameter is "base_link"
- `use_twist_compensation` (bool): If the parameter is true, then the twist of output objects' topic is compensated by ego vehicle motion.
- Default parameter is "false"

## Note

This package convert the label from `radar_msgs/msg/RadarTrack.msg` to Autoware label.
Label id is defined as below.

| | RadarTrack | Autoware |
| ---------- | ---------- | -------- |
| UNKNOWN | 32000 | 0 |
| CAR | 32001 | 1 |
| TRUCK | 32002 | 2 |
| BUS | 32003 | 3 |
| TRAILER | 32004 | 4 |
| MOTORCYCLE | 32005 | 5 |
| BICYCLE | 32006 | 6 |
| PEDESTRIAN | 32007 | 7 |

- [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.
- [Autoware objects label](https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs/-/blob/master/autoware_auto_perception_msgs/msg/ObjectClassification.idl)