我可以使用C++中的PCL将无组织的点云数据转换为有组织的点云数据吗?

问题描述 投票:0回答:1

我想使用C++中的PCL将无组织的点云数据转换为有组织的点云数据。我想要对点云进行正常估计。但该代码接受有组织的点云数据。你有什么建议吗?

https://pcl.readthedocs.io/projects/tutorials/en/latest/normal_estimation_using_integral_images.html#normal-estimation-using-integral-images

c++ 3d geometry point-cloud-library point-clouds
1个回答
0
投票

一般不会。有组织的点云与图像类似,这意味着点具有相邻关系。请参阅此处了解更多信息:https://pcl.readthedocs.io/projects/tutorials/en/master/basic_structs.html#basic-structs

您发布的教程仅适用于有组织的点云,但此教程也适用于无组织的点云:https://pcl.readthedocs.io/projects/tutorials/en/master/normal_estimation.html#normal-estimation

© www.soinside.com 2019 - 2024. All rights reserved.