gpt4 book ai didi

c++ - PCL 库输出解释中的点特征直方图

转载 作者:行者123 更新时间:2023-11-28 05:13:54 28 4
gpt4 key购买 nike

我正在使用名为点云库 (PCL) 的库。特别是我正在尝试计算点特征直方图。我遵循了网站上的这段代码:

#include <pcl/point_types.h>
#include <pcl/features/pfh.h>

{
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ>);
pcl::PointCloud<pcl::Normal>::Ptr normals (new pcl::PointCloud<pcl::Normal> ());

... read, pass in or create a point cloud with normals ...
... (note: you can create a single PointCloud<PointNormal> if you want) ...

// Create the PFH estimation class, and pass the input dataset+normals to it
pcl::PFHEstimation<pcl::PointXYZ, pcl::Normal, pcl::PFHSignature125> pfh;
pfh.setInputCloud (cloud);
pfh.setInputNormals (normals);
// alternatively, if cloud is of tpe PointNormal, do pfh.setInputNormals (cloud);

// Create an empty kdtree representation, and pass it to the PFH estimation object.
// Its content will be filled inside the object, based on the given input dataset (as no other search surface is given).
pcl::search::KdTree<pcl::PointXYZ>::Ptr tree (new pcl::search::KdTree<pcl::PointXYZ> ());
//pcl::KdTreeFLANN<pcl::PointXYZ>::Ptr tree (new pcl::KdTreeFLANN<pcl::PointXYZ> ()); -- older call for PCL 1.5-
pfh.setSearchMethod (tree);

// Output datasets
pcl::PointCloud<pcl::PFHSignature125>::Ptr pfhs (new pcl::PointCloud<pcl::PFHSignature125> ());

// Use all neighbors in a sphere of radius 5cm
// IMPORTANT: the radius used here has to be larger than the radius used to estimate the surface normals!!!
pfh.setRadiusSearch (0.05);

// Compute the features
pfh.compute (*pfhs);

// pfhs->points.size () should have the same size as the input cloud->points.size ()*
}

我得到的输出是原始点云中每点 125 个值的数组。例如,如果我有一个包含 1000 个点的点云,其中每个点包含 XYZ,那么将有 1000 * 125 个值。我能够理解为什么我有 125 个条目,每个条目对应一个 bin。 (假设 3 个特征和 5 个分区 5^3 = 125)

这篇文章帮助了一些人:PCL Point Feature Histograms - binning

不幸的是我还有几个问题:

1) 为什么每个点有 125 个直方图?是不是因为它衡量的是在K-最近邻域中的点与当前点具有相似特征的百分比是多少,然后每个点都有自己的邻域?

2) 我看到有些点所有 125 个条目都是零。为什么?

3)如论文和网站所示绘制点特征直方图值:

网站: http://pointclouds.org/documentation/tutorials/pfh_estimation.php#pfh-estimation

论文: https://pdfs.semanticscholar.org/5aee/411f0b4228ba63c85df0e8ed64cab5844aed.pdf

显示的图表的 X 轴表示 bin 的数量(在我的例子中是 125 个 bin),所以自然的问题是我们如何将每个点的 125 个值合并到一个图表中?我尝试对适当的列进行简单的求和,并按常数缩放它们,但我认为这是不对的。通过求和,我的意思是将每个点的所有 bin[0] 相加,然后对每个点的所有 bin[1] 求和,依此类推,直到 bin[124]。

如果您能帮助我澄清这一点,我将不胜感激。谢谢。

最佳答案

PFH 描述符是局部描述符,因此会针对给定的每个点计算直方图。您可能只想使用一个关键点或一组关键点。

如果直方图在半径搜索范围内没有最近的邻居,则直方图的条目将为 0。

至于绘图,请尝试一次查看一个点的直方图。我认为将其合并为一个图表没有意义。

如果您对考虑所有点的全局描述符感兴趣,请查看 CVFH 描述符(聚类视点特征直方图)或其他全局描述符。

关于c++ - PCL 库输出解释中的点特征直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43038286/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com