我正在使用PCL 分割模块中的 SACSegmentation来过滤掉地平面。
该方法是拟合 3D 对象的前表面,而不是拟合地平面,如下面的第二个 pcd 文件所示。
任何建议我应该怎么做才能适合和过滤地平面点。
提前致谢。
pcl::ModelCoefficients::Ptr coefficients(new pcl::ModelCoefficients);
pcl::SACSegmentation<pcl::PointXYZ> segmentation;
segmentation.setInputCloud(cloudAll);
segmentation.setOptimizeCoefficients(true);
segmentation.setModelType(pcl::SACMODEL_PLANE );
segmentation.setMethodType(pcl::SAC_RANSAC );
segmentation.setDistanceThreshold(20.20);