资源简介
主要用于三维点云的平板分割, 每次只能分割出一个平面。
(It is mainly used for 3D point cloud segmentation.Only one plane can be segmented at a time.)
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
int main(int argc char** argv)
{
pcl::PointCloud::Ptr cloud_source (new pcl::PointCloud);
pcl::PointCloud::Ptr cloud_target (new pcl::PointCloud);
// check arguments
if(argc != 2) {
std::cout << “ERROR: the number of arguments is illegal!“ << std::endl;
return -1;
}
// load pcd file
if(pcl::io::loadPCDFile(argv[1] *cloud_source)==-1) {
std::cout << “load source failed!“ << std::endl;
return -1;
}
std::cout << “source loaded!“ << std::endl;
// pass through filter to get the certain field
pcl::PointCloud::Ptr cloud_source_filtered(new pcl::PointCloud);
pcl::PassThrough pt;
pt.setInputCloud(cloud_source);
pt.setFilterFieldName(“y“);
pt.setFilterLimits(-0.1 0.6);
pt.filter(*cloud_source_filtered);
// segmentation
pcl::ModelCoefficients::Ptr coefficients (new pcl::ModelCoefficients);
pcl::PointIndices::Ptr inliers (new pcl::PointIndices);
pcl::SACSegmentation sac;
sac.setInputCloud(cloud_source_filtered); // cloud_source_filtered 为提取桌子表面 cloud_source 为提取地面
sac.setMethodType(pcl::SAC_RANSAC);
sac.setModelType(pcl::SACMODEL_PLANE);
sac.setDistanceThreshold(0.01);
sac.setMaxIterations(100);
sac.setProbability(0.95);
sac.segment(*inliers *coefficients);
// extract the certain field
pcl::ExtractIndices ei;
ei.setIndices(inliers);
ei.setInputCloud(cloud_source_filtered); // cloud_source_filtered 为提取桌子表面 cloud_source 为提取地面
ei.filter(*cloud_target);
std::cout << *coefficients << std::endl;
// display
pcl::visualization::PCLVisualizer p;
pcl::visualization::PointCloudColorHandlerCustom tgt_h (cloud_target 255 0 0);
p.addPointCloud(cloud_target tgt_h “target“);
p.spinOnce();
pcl::visualization::PCLVisualizer p2;
pcl::visualization::PointCloudColorHandlerCustom src_h (cloud_source 0 255 0);
p2.addPointCloud(cloud_source src_h “source“);
p2.spin();
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2349 2014-09-07 11:35 PlaneModelSegmentation.cpp
文件 17492958 2014-07-17 20:32 test.pcd
文件 358 2014-09-06 10:23 CMakeLists.txt
- 上一篇:漂亮高档的一栋别墅模型
- 下一篇:数字信号处理时分复用课程设计报告
相关资源
- 斯坦福点云数据
- 地图工具代码,可以各个图层的地图
- 建筑物点云数据
- 常见的三维点云数据,已经整理数据
- 常见点云数据,xyz格式txt
- VC点云数据显示,OPENGL图像渲染.rar
- PCL+QVTK点云可视化
- 移动最小二乘增量式多视点云数据融
- ply格式三维点云模型
- Bunny Horse Dragon 三维点云数据
- 激光雷达点云处理软件
- 点云匹配代码
- 三维点云数据的预处理研究
- CATIA点云逆向
- Slic3r-master.rar
- 基于拉普拉斯算子的点云骨架提取
- PointVisulization.rar
- 点云数据,包括原始数据以及从中提
- 基于TOF深度传感器植物点云获取和去
- 三维激光点云las数据
- 视差图转换物方点云DSM
- bun0.pcd
- AVOD论文解析
- CTB地形切片生成器
- 激光扫描点云数据
- ICP点云匹配
- Stanford的Dragon点云数据
- 点云获取、智能处理与应用
- 测绘技术在数字文化遗产保护中的应
- 前围板逆向点云文件
评论
共有 条评论