Point cloud library PCL learning: conditionally constrained plane segmentation (SACMODEL_NORMAL_PARALLEL_PLANE)

When using pcl to extract planes in the point cloud space, we generally use the SACMODEL_PLANE model and use the sampling consistency algorithm (RANSAC) algorithm for extraction. When the environment is more complex, we can use the SACMODEL_NORMAL_PARALLEL_PLANE model to constrain the normal direction of the plane and more accurately segment the plane point cloud.

Encapsulated function

Parameters: (input point cloud, normal normal, extracted plane point cloud, filtered point cloud, plane parameters, maximum allowable distance from point to model, number of iterations)

void normalPlaneSeg(pcl::PointCloud<pcl::PointXYZ>::Ptr Inputcloud,Eigen::Vector3f axis, pcl::PointCloud<pcl::PointXYZ>::Ptr filtercloud, pcl::PointCloud<pcl::PointXYZ>::Ptr filtercloud1,
pcl::ModelCoefficients::Ptr coefficients, double Threshold, int Iterationscount=1000)
{
       typedef pcl::PointXYZ PointT;
       //定义一些对象
       pcl::NormalEstimation<PointT,pcl::Normal> ne;  //法线估计对象
       pcl::SACSegmentationFromNormals<PointT,pcl::Normal> seg;    //分割对象
       pcl::PCDWriter writer;                 //PCD文件读取对象
       pcl::ExtractIndices<PointT>extract;   //点提取对象
       pcl::search::KdTree<PointT>::Ptr tree(new pcl::search::KdTree<PointT>());
       //定义一些变量
       pcl::PointCloud<pcl::Normal>::Ptr cloud_normals(new pcl::PointCloud<pcl::Normal>);
       pcl::PointCloud<PointT>::Ptr cloud_filtered(new pcl::PointCloud<PointT>);
       pcl::PointCloud<pcl::Normal>::Ptr cloud_normals2(new pcl::PointCloud<pcl::Normal>);
       pcl::PointIndices::Ptr inliers(new pcl::PointIndices);

       ne.setSearchMethod(tree);
       ne.setInputCloud(Inputcloud);
       ne.setKSearch(5);
       ne.compute(*cloud_normals);
       
       seg.setOptimizeCoefficients(true);           //设置对估计模型优化
       seg.setModelType(pcl::SACMODEL_NORMAL_PARALLEL_PLANE);//设置分割模型为带约束的平面
       seg.setMethodType(pcl::SAC_RANSAC);          //参数估计方法
       seg.setNormalDistanceWeight(0.1);            //设置表面法线权重系数
       seg.setMaxIterations(Iterationscount);       //设置迭代的最大次数,默认是10000
       seg.setDistanceThreshold(Threshold);         //设置内点到模型的距离允许最大值
       seg.setInputCloud(Inputcloud);
       seg.setInputNormals(cloud_normals);
       seg.segment(*inliers, *coefficients);
       seg.setAxis(axis);
       seg.setEpsAngle(PI / 120);//设置角度误差
       
       extract.setInputCloud(Inputcloud);
       extract.setIndices(inliers);
       extract.setNegative(false);//设置成true是保存滤波后剩余的点,false是保存在区域内的点
       extract.filter(*filtercloud);
       extract.setNegative(true);//设置成true是保存滤波后剩余的点,false是保存在区域内的点
       extract.filter(*filtercloud1);
} 

Examples

Extract the top surface of the point cloud on the cylinder
Insert picture description here

Published 22 original articles · Likes2 · Visits 1157

Guess you like

Origin blog.csdn.net/qinqinxiansheng/article/details/105497232