Replies: 1 comment 1 reply
-
Thank you for your proposal!
I also think Solution A is the best. 😄 |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
I think the current Autoware Universe is designed to use multiple LiDARs. Therefore, single LiDAR will cause an error in the concatenate_data node. I thought that the concatenate_data node is not necessary when there is only one input point cloud, but frame transformation is also performed in the concatenate_data, and if not, an error will occur in the later processing. I could not find any other node that only performs frame transformation.
Advantages of supporting single LiDAR
To solve this problem, I propose the following solution.
Solutions
Solution A
Change in the concatenate_data node so that if there is only one input topic, only the frame transformation is performed and the transformed point cloud is output.
I understand that a single LiDAR does not require concatenating the point cloud, but the developer only needs to change a few parameters in the sample code to make it work.
Solution B
Split the concatenate filter node into a concatenate filter and a frame transformation node, so that only the frame transformation node is executed when there is only one input point group.
Solution C
Add the function to transform frames in other filters (e.g., outlier_filter, which is one before concatenate_filter in the node diagram).
I think the output_frame parameter in node_parameters on this page should be able to be used for outliner_filter, etc.
I think solution A or solution C would be better as adding too many nodes would affect the processing time.
Please let me know if there are other solutions or other ways to use a single LiDAR.
Beta Was this translation helpful? Give feedback.
All reactions