Replies: 2 comments 2 replies
-
|
我用的也是 速腾雷达,没遇到过你这个情况,录个bag发给我看看,2秒钟就可以 |
Beta Was this translation helpful? Give feedback.
2 replies
-
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





Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Dear Autoware technical staff, I recently encountered some tricky issues while using the
autoware_pointcloud_preprocessorpackage. Specifically, I encountered the following error when using thevoxel_grid_downsample_filternode; I've been setting breakpoints and tracing the problem for a long time, but I still haven't been able to resolve it.I also tried using AI tools for research, but I didn't find a good solution. My process was as follows:
1、ros2 launch rslidar_sdk start.py
Use this command to start the Robosense E1R, a solid-state LiDAR. This node will publish a topic called rslidar_points, which follows the Autoware LiDAR format with message format XYZIRCAEDT, type pointcloud2.
2、ros2 run tf2_ros static_transform_publisher 0 0 0 0 0 1 base_link rslidar
This command defines a static TF transformation because it's not currently installed on an actual device; the goal is simply to get the autoware core functionality package running, hence the use of a static TF transformation.
3、ros2 launch autoware_pointcloud_preprocessor voxel_grid_downsample_filter_node.launch.xml input_topic_name:=/rslidar_points
The following error occurred when I entered this command. Through breakpoint tracing, I determined that the problem was still caused by the TF conversion. However, I couldn't find more detailed information in the official documentation for autoware_pointcloud_preprocessor, so I don't know what to do next.
4、It's noteworthy that I didn't encounter any errors when running the
approximate_downsample_filternode, and the first two steps were completed identically, also using static TensorFlow transformations, which is confusing me. I noticed two differences betweenapproximate_downsample_filter.launch.xmlandvoxel_grid_downsample_filter_node.launch.xml. The former doesn't have default values set forinput_frameandoutput_frame, while the latter's default value isbase_link. If I remove the default values forinput_frameandoutput_frameinvoxel_grid_downsample_filter_node.launch.xml, the program stops throwing errors, but I still can't subscribe to valid PointCloud2 data on RViz.zhsd@zhsd-B760-GAMING-X-GEN5:~/Desktop/autoware-humble$ ros2 launch autoware_pointcloud_preprocessor voxel_grid_downsample_filter_node.launch.xml input_topic_name:=/rslidar_points
[INFO] [launch]: All log files can be found below /home/zhsd/.ros/log/2025-12-16-16-34-54-428920-zhsd-B760-GAMING-X-GEN5-66520
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [voxel_grid_downsample_filter_node-1]: process started with pid [66521]
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.593111421] [voxel_grid_downsample_filter_node]: start...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.595779669] [voxel_grid_downsample_filter_node]: Init tf...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.595893350] [voxel_grid_downsample_filter_node]: Init tf done...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.595940483] [voxel_grid_downsample_filter_node]: callback done...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.596016239] [voxel_grid_downsample_filter_node]: TF frame: base_link.
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.596065663] [voxel_grid_downsample_filter_node]: TF frame: base_link.
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.596079356] [voxel_grid_downsample_filter_node]: TF frame: base_link.
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.644618687] [voxel_grid_downsample_filter_node]: faster_input_indices_callback START...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.644796180] [voxel_grid_downsample_filter_node]: calculate_transform_matrix START...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.662840864] [voxel_grid_downsample_filter_node]: calculate_transform_matrix END...
[voxel_grid_downsample_filter_node-1] [WARN] [1765874094.721975874] [voxel_grid_downsample_filter_node]: convert_output_costly start...
[ERROR] [voxel_grid_downsample_filter_node-1]: process has died [pid 66521, exit code -11, cmd '/home/zhsd/Desktop/autoware-humble/install/autoware_pointcloud_preprocessor/lib/autoware_pointcloud_preprocessor/voxel_grid_downsample_filter_node --ros-args -r __node:=voxel_grid_downsample_filter_node --params-file /home/zhsd/Desktop/autoware-humble/install/autoware_pointcloud_preprocessor/share/autoware_pointcloud_preprocessor/config/voxel_grid_downsample_filter_node.param.yaml --params-file /tmp/launch_params_a91fn1ue --params-file /tmp/launch_params_0yx32lg4 -r input:=/rslidar_points -r output:=/sensing/lidar/top/voxel_grid_downsample_filter/pointcloud'].
Beta Was this translation helpful? Give feedback.
All reactions