Replies: 1 comment
-
Hi @felixf4xu, As you might noticed, our sensor driver does not support your sensor yet. For now, to overcome issues with incompatible fields format, Autoware users usually write ROS node which converts sensor's data into compatible format.
However, if it will cause high latency in your sensing pipeline, you might need to consider changes in sensor's driver directly. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'd like to check how to add
PointXYZI
type support forautoware_pointcloud_preprocessor
.I'm using RoboSense rs-ruby-80 lidar, which supports XYZI and XYZIRT formats as documented at https://github.com/RoboSense-LiDAR/rslidar_sdk?tab=readme-ov-file#12-point-type-supported
XYZI - x, y, z, intensity
XYZIRT - x, y, z, intensity, ring, timestamp
But in
autoware_pointcloud_preprocessor
, onlyPointXYZIRC
andPointXYZIRADRT
are supported, evenPointXYZI
is treated as error:So I'd like to check how to convert
XYZIRT
toXYZIRC
"C" (channel) in
XYZIRC
is like robosence "R" (ring), so it's available.then "R" in
XYZIRC
is return type, which is configured as "Strong" (on robosense lidar's web config page), so it is "SINGLE_STRONGEST"?In that case, where is the best place to convert the data type?
Beta Was this translation helpful? Give feedback.
All reactions