Replies: 3 comments 1 reply
-
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.
-
Morning, Xu @felixf4xu In the age of autoware.ai, developer don't need to do much work to integrate their lidar The most easiest way to make your real vehicle move is to follow Szymko @amadeuszsz san's suggestion to make a manual converter Feel free to contact me. we are happy to help chinese autoware developers, since we are the co-founder of Autoware Foundation and it is our duty to make more use it I base in 南京,not far away from you Happy hacking 心刚 |
Beta Was this translation helpful? Give feedback.
-
Thanks, but I still don't quite understand the reason why It's is fine to support It should not be treated as an error for |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
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