Maximum Density Filter

Points are only considered for rejection if they exceed a density threshold, otherwise they are preserved. The single parameter of this filter sets the maximum density that should be obtained in the output point cloud. Points are randomly rejected such that this maximum density is obtained as closely as possible.

 PM::DataPointsFilter* maxDensitySubsample(
PM::get().DataPointsFilterRegistrar.create(
"MaxDensityDataPointsFilter",
map_list_of
("maxDensity", toParam())
)
);

Surface Normal Filter

The surface normal to each point is estimated by finding a number of neighboring points and taking the eigen-vector corresponding to the smallest eigen-value of all neighboring points. Remark that that given a surface, the normal vector can point in two possible directions.

This filter has no impact on cloudpoints, but has output.

PM::DataPointsFilter* densityFilter(
PM::get().DataPointsFilterRegistrar.create(
"SurfaceNormalDataPointsFilter",
map_list_of
("knn", "")  //Number of neighboring points (including the point itself) to consider when extracting surface normal
("epsilon", "") //Approximation used in nearest neighbor search
("keepNormals", "")  //Add the normal vector to descriptors
("keepDensities", "")  //Add point cloud density to descriptors
)
);

Random Sampling Filter

它只保留输入点云固定比例的点

PM::DataPointsFilter* randSubsample(
PM::get().DataPointsFilterRegistrar.create(
"RandomSamplingDataPointsFilter",
map_list_of
("prob", toParam(probToKeep))  //Probability that a point is kept (1/decimation factor)
)
);

最新文章

  1. 读取TDrawGrid之获取博易数据
  2. PHP缓存技术
  3. (安装linux操作系统)
  4. windows下的getopt/getoptlong函数
  5. ios 实现版本更新检查
  6. [转]layoutSubviews总结
  7. 基于BaseHTTPServer的简单存储服务器
  8. c# 海康威视 Winform播放mp4视频
  9. JBoss for luna
  10. windows server 2008/2012 无法安装AD域解决方法记录
  11. NavigationBar 隐藏底部边线,阴影
  12. CCLuaObjcBridge调Objective-C方法传索引数组报invalid key to 'next'错调试
  13. .NET系统开发过程中积累的扩展方法
  14. Visual Studio 2013 Preview - ASP.NET, MVC 5, Web API 2新功能搶先看
  15. 一、Openstack_Ocata环境部署准备
  16. flutter 主题切换
  17. vs2015配置OpenCV遇到的问题
  18. Duplicate entry '0' for key 'PRIMARY'
  19. MongoDB 学习手册 - 安装(windwos 环境)
  20. RTT(往返时间)和RPC

热门文章

  1. Centos 6.3 nginx代理配置
  2. Python-mysql索引
  3. Linux使用命令记录
  4. cloudflare 301 重定向设置
  5. C# Socket的粘包处理(转)
  6. 洛谷 P1181 数列分段Section I【贪心/最少分成多少合法的连续若干段】
  7. Codeforces Round #445 D. Restoration of string【字符串】
  8. 分享Kali Linux 2017年第23周镜像文件
  9. Gmail进程信息转储分析工具pdgmail
  10. 解决android客户端使用soap与服务器通讯错误415