我正在尝试使用icp算法来对齐2个RGBD云,但是功能对齐会导致分段错误,我不知道为什么以及如何解决这个问题,如果有人可以帮助我,我将不胜感激< / p>
这是我想要做的一个例子。
pcl::IterativeClosestPoint<pcl::PointXYZ, pcl::PointXYZ> icp;
vector<int>index;
pcl::removeNaNFromPointCloud(*cloud_in,*cloud_in,index);
pcl::removeNaNFromPointCloud(*cloud_out,*cloud_out,index);
icp.setInputCloud(cloud_in);
icp.setInputTarget(cloud_out);
pcl::PointCloud<pcl::PointXYZ> Final;
icp.align(Final);
答案 0 :(得分:0)
我有同样的问题。在我的例子中,输入点云是有序点云(分辨率为48x64)并包含NaN。即使我应用了pcl :: removeNaNFromPointCloud,仍然存在nan值。我通过在处理之前将有序输入点云转换为无序点云(Nx3)来解决问题。
如果您的cloud_in也是有序点云,请尝试将其转换为无序,如下所示:
cloud_in->width = cloud_in->width * cloud_in->height;
cloud_in->height = 1;
cloud_in->is_dense = false;
cloud_in->points.resize (cloud_in->width * cloud_in->height);
// Then remove NaNs and apply ICP