[CC]手动点云分割
CloudCompare中手动点云分割功能ccGraphicalSegmentationTool,
点击应用按钮后将现有的点云分成segmented和remaining两个点云,
//停用点云分割功能
void MainWindow::deactivateSegmentationMode(bool state)
是通过ccPointCloud的可视选择集来实现的。其中用到了点云的swap需要参考!
- //创建新的点云,可视的选择集
- ccGenericPointCloud* ccPointCloud::createNewCloudFromVisibilitySelection(bool removeSelectedPoints)
- {
- if (!isVisibilityTableInstantiated())
- {
- ccLog::Error(QString("[Cloud %1] Visibility table not instantiated!").arg(getName()));
- return 0;
- }
- //we create a new cloud with the "visible" points
- ccPointCloud* result = 0;
- {
- //we create a temporary entity with the visible points only
- CCLib::ReferenceCloud* rc = getTheVisiblePoints();
- if (!rc)
- {
- //a warning message has already been issued by getTheVisiblePoints!
- //ccLog::Warning("[ccPointCloud::createNewCloudFromVisibilitySelection] An error occurred during points selection!");
- return 0;
- }
- assert(rc->size() != 0);
- //convert selection to cloud
- result = partialClone(rc);
- //don't need this one anymore
- delete rc;
- rc = 0;
- }
- if (!result)
- {
- ccLog::Warning("[ccPointCloud::createNewCloudFromVisibilitySelection] An error occurred during segmentation!");
- return 0;
- }
- result->setName(getName()+QString(".segmented"));//切割出来的点云
- //shall the visible points be erased from this cloud?
- if (removeSelectedPoints && !isLocked())
- {
- //we drop the octree before modifying this cloud's contents
- deleteOctree();
- clearLOD();
- unsigned count = size();
- //we have to take care of scan grids first
- {
- //we need a map between old and new indexes
- std::vector<int> newIndexMap(size(), -1);
- {
- unsigned newIndex = 0;
- for (unsigned i=0; i<count; ++i)
- {
- if (m_pointsVisibility->getValue(i) != POINT_VISIBLE)
- newIndexMap[i] = newIndex++;
- }
- }
- //then update the indexes
- UpdateGridIndexes(newIndexMap, m_grids);
- //and reset the invalid (empty) ones
- //(DGM: we don't erase them as they may still be useful?)
- for (size_t i=0; i<m_grids.size(); ++i)
- {
- Grid::Shared& scanGrid = m_grids[i];
- if (scanGrid->validCount == 0)
- {
- scanGrid->indexes.clear();
- }
- }
- }
- //we remove all visible points
- unsigned lastPoint = 0;
- for (unsigned i=0; i<count; ++i)
- {
- //i持续增长,而lastPoint遇到==POINT_VISIBLE则跳过,起到迁移的效果
- if (m_pointsVisibility->getValue(i) != POINT_VISIBLE)
- {
- if (i != lastPoint)
- swapPoints(lastPoint,i);
- ++lastPoint;
- }
- }
- //TODO: handle associated meshes
- resize(lastPoint);
- refreshBB(); //calls notifyGeometryUpdate + releaseVBOs
- }
- return result;
- }
调用的方法getTheVisiblePoints()
- CCLib::ReferenceCloud* ccGenericPointCloud::getTheVisiblePoints() const
- {
- unsigned count = size();
- assert(count == m_pointsVisibility->currentSize());
- if (!m_pointsVisibility || m_pointsVisibility->currentSize() != count)
- {
- ccLog::Warning("[ccGenericPointCloud::getTheVisiblePoints] No visibility table instantiated!");
- return 0;
- }
- //count the number of points to copy
- unsigned pointCount = 0;
- {
- for (unsigned i=0; i<count; ++i)
- if (m_pointsVisibility->getValue(i) == POINT_VISIBLE)
- ++pointCount;
- }
- if (pointCount == 0)
- {
- ccLog::Warning("[ccGenericPointCloud::getTheVisiblePoints] No point in selection");
- return 0;
- }
- //we create an entity with the 'visible' vertices only
- CCLib::ReferenceCloud* rc = new CCLib::ReferenceCloud(const_cast<ccGenericPointCloud*>(this));
- if (rc->reserve(pointCount))
- {
- for (unsigned i=0; i<count; ++i)
- if (m_pointsVisibility->getValue(i) == POINT_VISIBLE)
- rc->addPointIndex(i); //can't fail (see above)
- }
- else
- {
- delete rc;
- rc = 0;
- ccLog::Error("[ccGenericPointCloud::getTheVisiblePoints] Not enough memory!");
- }
- return rc;
- }
[CC]手动点云分割的更多相关文章
- 基于传统方法点云分割以及PCL中分割模块
之前在微信公众号中更新了以下几个章节 1,如何学习PCL以及一些基础的知识 2,PCL中IO口以及common模块的介绍 3,PCL中常用的两种数据结构KDtree以及Octree树的介绍 ...
- PCL—低层次视觉—点云分割(基于凹凸性)
1.图像分割的两条思路 场景分割时机器视觉中的重要任务,尤其对家庭机器人而言,优秀的场景分割算法是实现复杂功能的基础.但是大家搞了几十年也还没搞定——不是我说的,是接下来要介绍的这篇论文说的.图像分割 ...
- PCL点云分割(1)
点云分割是根据空间,几何和纹理等特征对点云进行划分,使得同一划分内的点云拥有相似的特征,点云的有效分割往往是许多应用的前提,例如逆向工作,CAD领域对零件的不同扫描表面进行分割,然后才能更好的进行空洞 ...
- PCL—点云分割(基于凹凸性) 低层次点云处理
博客转载自:http://www.cnblogs.com/ironstark/p/5027269.html 1.图像分割的两条思路 场景分割时机器视觉中的重要任务,尤其对家庭机器人而言,优秀的场景分割 ...
- PCL—低层次视觉—点云分割(基于形态学)
1.航空测量与点云的形态学 航空测量是对地形地貌进行测量的一种高效手段.生成地形三维形貌一直是地球学,测量学的研究重点.但对于城市,森林,等独特地形来说,航空测量会受到影响.因为土地表面的树,地面上的 ...
- PCL—低层次视觉—点云分割(超体聚类)
1.超体聚类——一种来自图像的分割方法 超体(supervoxel)是一种集合,集合的元素是“体”.与体素滤波器中的体类似,其本质是一个个的小方块.与之前提到的所有分割手段不同,超体聚类的目的并不是分 ...
- PCL—低层次视觉—点云分割(最小割算法)
1.点云分割的精度 在之前的两个章节里介绍了基于采样一致的点云分割和基于临近搜索的点云分割算法.基于采样一致的点云分割算法显然是意识流的,它只能割出大概的点云(可能是杯子的一部分,但杯把儿肯定没分割出 ...
- PCL—低层次视觉—点云分割(RanSaC)
点云分割 点云分割可谓点云处理的精髓,也是三维图像相对二维图像最大优势的体现.不过多插一句,自Niloy J Mitra教授的Global contrast based salient region ...
- segMatch:基于3D点云分割的回环检测
该论文的地址是:https://arxiv.org/pdf/1609.07720.pdf segmatch是一个提供车辆的回环检测的技术,使用提取和匹配分割的三维激光点云技术.分割的例子可以在下面的图 ...
随机推荐
- 【leetcode】Find Minimum in Rotated Sorted Array I&&II
题目概述: Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 ...
- MEF Parts Sample
namespace Microshaoft.MEF.Contracts { using System; public delegate void ExceptionEventHandler<TS ...
- UWP 禁止Pivot swip 手势
以前想要禁止内置的手势动作,看了一下网上是设置 IsLocked="True". 但是拿到UWP上来,靠,设置了之后header只显示当前的那个header.这样的设计真是丑爆了. ...
- Appirater -- app中提示用户为app评价的提示框
Appirater是一段你可以嵌入自己工程中的代码,在用户使用应用一段时间后会自动弹出提示用户进行评分. 使用Appirater方面,你可以简单把源代码嵌入你的app工程中,并把以下代码添加至它的委托 ...
- 解决Eclipse左键无法查看maven第三方包的源代码,多图亲测可用【转】
Debug进不了的原因及解决办法: 一.ctrl+左键点击没有找到你的源码 1.先设置maven 2.通过maven下Jar包源码 选中总包目录下的pom.xml-->右键-->Run A ...
- 分布式缓存技术memcached学习(五)—— memcached java客户端的使用
Memcached的客户端简介 我们已经知道,memcached是一套分布式的缓存系统,memcached的服务端只是缓存数据的地方,并不能实现分布式,而memcached的客户端才是实现分布式的地方 ...
- 2016 Multi-University Training Contest 6
5/12 2016 Multi-University Training Contest 6 官方题解 打表找规律/推公式 A A Boring Question(BH) 题意: ,意思就是在[0,n] ...
- Leetcode Unique Paths II
Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How m ...
- Qt里获取目录的一个另类方法
如果有一个文件的全路径文件名, 想获取它的路径的话, qt里我没找到比较好的办法, 都是cleanPath后, 再用QString的find, left这种函数来处理. 今天又在搞这种问题的时候, 看 ...
- Python2 下 Unicode 的一个小bug
关于Python的编码问题已经是老生常谈了,此处主要是介绍一个罕见的问题,也算是Python2的一个bug了(Python3不会有此问题). 在有时候我们去爬取网页或者调用一些第三方库获取文本的时候, ...