赞
踩
在点云正式处理之前,主要对点云数据进行预处理的一些工作,比如NAN去除、特征值异常检测、自定义条件异常检测等等。
读取点云
//创建点云指针,最原始点云数据
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_source(new pcl::PointCloud<pcl::PointXYZ>);
pcl::io::loadPCDFile("C:/pclpoint/1012/Cloud0.pcd", *cloud_source);
//去除NAN点
std::vector<int> indices_src; //保存去除的点的索引
pcl::removeNaNFromPointCloud(*cloud_source, *cloud_source, indices_src);
void EigenvalueDetection(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud) { // 计算点云的特征值 pcl::PointCloud<pcl::Normal>::Ptr normals(new pcl::PointCloud<pcl::Normal>); pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> normal_estimation; pcl::search::KdTree<pcl::PointXYZ>::Ptr tree(new pcl::search::KdTree<pcl::PointXYZ>); normal_estimation.setInputCloud(cloud); normal_estimation.setSearchMethod(tree); normal_estimation.setKSearch(10); normal_estimation.compute(*normals); // 定义异常标准并标记异常点 pcl::PointCloud<pcl::PointXYZRGB>::Ptr colored_cloud(new pcl::PointCloud<pcl::PointXYZRGB>); for (int i = 0; i < cloud->size(); ++i) { float curvature = normals->at(i).curvature; // 根据定义的异常标准判断是否为异常点 if (curvature > 0.2) { pcl::PointXYZRGB colored_point; colored_point.x = cloud->at(i).x; colored_point.y = cloud->at(i).y; colored_point.z = cloud->at(i).z; colored_point.r = 255; // 标记异常点的颜色为红色 colored_point.g = 0; colored_point.b = 0; colored_cloud->push_back(colored_point); } } }
//自定义异常值筛选
void CustomValueDetection(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_source) {
pcl::PointIndices::Ptr inliers1(new pcl::PointIndices());
pcl::ExtractIndices<pcl::PointXYZ> extract;//提取符合要求的
for (int i = 0; i < cloud_source->size(); i++) {
if (fabs(cloud_source->points[i].x) < 0.1) {**//自定义的条件**
inliers1->indices.push_back(i);
cout << "cloud_source:" << cloud_source->points[i].x << endl;
}
}
extract.setInputCloud(cloud_source);
extract.setIndices(inliers1);
extract.setNegative(true);
extract.filter(*cloud_source);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。