-
Hi! What are the requirements for sensor configuration in using Autoware? I am trying to build autonomous driving capability for my own robot and would like to know what kind of sensors I need to use Autoware. It seems that LiDAR is required for ndt_scan_matcher, but how about other sensors such as IMU, odometry, GNSS, or camera? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@kminoda The sensing policy around the localization module is as follows. LiDAR pointcloud ( Vehicle Twist ( IMU ( GNSS ( The basic idea can be found at the following URL, the previous AutowareArchitectureProposal documents. |
Beta Was this translation helpful? Give feedback.
@kminoda
Thanks for your question!
Unfortunately, there is no documentation about the whole sensing policy just for now. 🤕
The sensing policy around the localization module is as follows.
LiDAR pointcloud (
sensor_msgs/PointCloud2
) is mandatory.https://github.com/autowarefoundation/autoware.universe/tree/main/localization/ndt_scan_matcher
Vehicle Twist (
geometry_msgs/TwistWithCovarianceStamped
) is mandatory.https://github.com/autowarefoundation/autoware.universe/tree/main/localization/ekf_localizer
IMU (
sensor_msgs/Imu
) is not mandatory, but it can be used withgyro_odometer
to improve the accuracy of Vehicle Twist.https://github.com/autowarefoundation/autoware.universe/tree/main/…