PFHEstimation estimates the Point Feature Histogram (PFH) descriptor for a given point cloud dataset containing points and normals. More...
#include <pfh.h>
Public Types | |
typedef boost::shared_ptr < const PFHEstimation < PointInT, PointNT, PointOutT > > | ConstPtr |
typedef Feature< PointInT, PointOutT >::PointCloudIn | PointCloudIn |
typedef Feature< PointInT, PointOutT >::PointCloudOut | PointCloudOut |
typedef boost::shared_ptr < PFHEstimation< PointInT, PointNT, PointOutT > > | Ptr |
Public Member Functions | |
bool | computePairFeatures (const pcl::PointCloud< PointInT > &cloud, const pcl::PointCloud< PointNT > &normals, int p_idx, int q_idx, float &f1, float &f2, float &f3, float &f4) |
Compute the 4-tuple representation containing the three angles and one distance between two points represented by Cartesian coordinates and normals. | |
void | computePointPFHSignature (const pcl::PointCloud< PointInT > &cloud, const pcl::PointCloud< PointNT > &normals, const std::vector< int > &indices, int nr_split, Eigen::VectorXf &pfh_histogram) |
Estimate the PFH (Point Feature Histograms) individual signatures of the three angular (f1, f2, f3) features for a given point based on its spatial neighborhood of 3D points with normals. | |
unsigned int | getMaximumCacheSize () |
Get the maximum internal cache size. | |
bool | getUseInternalCache () |
Get whether the internal cache is used or not for computing the PFH features. | |
PFHEstimation () | |
Empty constructor. Sets use_cache_ to false, nr_subdiv_ to 5, and the internal maximum cache size to 1GB. | |
void | setMaximumCacheSize (unsigned int cache_size) |
Set the maximum internal cache size. Defaults to 2GB worth of entries. | |
void | setUseInternalCache (bool use_cache) |
Set whether to use an internal cache mechanism for removing redundant calculations or not. | |
Protected Member Functions | |
void | computeFeature (PointCloudOut &output) |
Estimate the Point Feature Histograms (PFH) descriptors at a set of points given by <setInputCloud (), setIndices ()> using the surface in setSearchSurface () and the spatial locator in setSearchMethod () | |
Protected Attributes | |
float | d_pi_ |
Float constant = 1.0 / (2.0 * M_PI) | |
int | f_index_ [3] |
Placeholder for a histogram index. | |
std::map< std::pair< int, int > , Eigen::Vector4f, std::less < std::pair< int, int > >, Eigen::aligned_allocator < Eigen::Vector4f > > | feature_map_ |
Internal hashmap, used to optimize efficiency of redundant computations. | |
std::queue< std::pair< int, int > > | key_list_ |
Queue of pairs saved, used to constrain memory usage. | |
unsigned int | max_cache_size_ |
Maximum size of internal cache memory. | |
int | nr_subdiv_ |
The number of subdivisions for each angular feature interval. | |
Eigen::VectorXf | pfh_histogram_ |
Placeholder for a point's PFH signature. | |
Eigen::Vector4f | pfh_tuple_ |
Placeholder for a PFH 4-tuple. | |
bool | use_cache_ |
Set to true to use the internal cache for removing redundant computations. |
PFHEstimation estimates the Point Feature Histogram (PFH) descriptor for a given point cloud dataset containing points and normals.
A commonly used type for PointOutT is pcl::PFHSignature125.
typedef boost::shared_ptr<const PFHEstimation<PointInT, PointNT, PointOutT> > pcl::PFHEstimation< PointInT, PointNT, PointOutT >::ConstPtr |
Reimplemented from pcl::FeatureFromNormals< PointInT, PointNT, PointOutT >.
typedef Feature<PointInT, PointOutT>::PointCloudIn pcl::PFHEstimation< PointInT, PointNT, PointOutT >::PointCloudIn |
Reimplemented from pcl::FeatureFromNormals< PointInT, PointNT, PointOutT >.
typedef Feature<PointInT, PointOutT>::PointCloudOut pcl::PFHEstimation< PointInT, PointNT, PointOutT >::PointCloudOut |
Reimplemented from pcl::FeatureFromNormals< PointInT, PointNT, PointOutT >.
typedef boost::shared_ptr<PFHEstimation<PointInT, PointNT, PointOutT> > pcl::PFHEstimation< PointInT, PointNT, PointOutT >::Ptr |
Reimplemented from pcl::FeatureFromNormals< PointInT, PointNT, PointOutT >.
pcl::PFHEstimation< PointInT, PointNT, PointOutT >::PFHEstimation | ( | ) | [inline] |
void pcl::PFHEstimation< PointInT, PointNT, PointOutT >::computeFeature | ( | PointCloudOut & | output | ) | [protected, virtual] |
Estimate the Point Feature Histograms (PFH) descriptors at a set of points given by <setInputCloud (), setIndices ()> using the surface in setSearchSurface () and the spatial locator in setSearchMethod ()
[out] | output | the resultant point cloud model dataset that contains the PFH feature estimates |
Implements pcl::Feature< PointInT, PointOutT >.
bool pcl::PFHEstimation< PointInT, PointNT, PointOutT >::computePairFeatures | ( | const pcl::PointCloud< PointInT > & | cloud, |
const pcl::PointCloud< PointNT > & | normals, | ||
int | p_idx, | ||
int | q_idx, | ||
float & | f1, | ||
float & | f2, | ||
float & | f3, | ||
float & | f4 | ||
) |
Compute the 4-tuple representation containing the three angles and one distance between two points represented by Cartesian coordinates and normals.
[in] | cloud | the dataset containing the XYZ Cartesian coordinates of the two points |
[in] | normals | the dataset containing the surface normals (assuming normalized vectors) at each point in cloud |
[in] | p_idx | the index of the first point (source) |
[in] | q_idx | the index of the second point (target) |
[out] | f1 | the first angular feature (angle between the projection of nq_idx and u) |
[out] | f2 | the second angular feature (angle between nq_idx and v) |
[out] | f3 | the third angular feature (angle between np_idx and |p_idx - q_idx|) |
[out] | f4 | the distance feature (p_idx - q_idx) |
void pcl::PFHEstimation< PointInT, PointNT, PointOutT >::computePointPFHSignature | ( | const pcl::PointCloud< PointInT > & | cloud, |
const pcl::PointCloud< PointNT > & | normals, | ||
const std::vector< int > & | indices, | ||
int | nr_split, | ||
Eigen::VectorXf & | pfh_histogram | ||
) |
Estimate the PFH (Point Feature Histograms) individual signatures of the three angular (f1, f2, f3) features for a given point based on its spatial neighborhood of 3D points with normals.
[in] | cloud | the dataset containing the XYZ Cartesian coordinates of the two points |
[in] | normals | the dataset containing the surface normals at each point in cloud |
[in] | indices | the k-neighborhood point indices in the dataset |
[in] | nr_split | the number of subdivisions for each angular feature interval |
[out] | pfh_histogram | the resultant (combinatorial) PFH histogram representing the feature at the query point |
unsigned int pcl::PFHEstimation< PointInT, PointNT, PointOutT >::getMaximumCacheSize | ( | ) | [inline] |
bool pcl::PFHEstimation< PointInT, PointNT, PointOutT >::getUseInternalCache | ( | ) | [inline] |
void pcl::PFHEstimation< PointInT, PointNT, PointOutT >::setMaximumCacheSize | ( | unsigned int | cache_size | ) | [inline] |
void pcl::PFHEstimation< PointInT, PointNT, PointOutT >::setUseInternalCache | ( | bool | use_cache | ) | [inline] |
Set whether to use an internal cache mechanism for removing redundant calculations or not.
See setMaximumCacheSize for setting the maximum cache size
[in] | use_cache | set to true to use the internal cache, false otherwise |
float pcl::PFHEstimation< PointInT, PointNT, PointOutT >::d_pi_ [protected] |
int pcl::PFHEstimation< PointInT, PointNT, PointOutT >::f_index_[3] [protected] |
std::map<std::pair<int, int>, Eigen::Vector4f, std::less<std::pair<int, int> >, Eigen::aligned_allocator<Eigen::Vector4f> > pcl::PFHEstimation< PointInT, PointNT, PointOutT >::feature_map_ [protected] |
std::queue<std::pair<int, int> > pcl::PFHEstimation< PointInT, PointNT, PointOutT >::key_list_ [protected] |
unsigned int pcl::PFHEstimation< PointInT, PointNT, PointOutT >::max_cache_size_ [protected] |
int pcl::PFHEstimation< PointInT, PointNT, PointOutT >::nr_subdiv_ [protected] |
Eigen::VectorXf pcl::PFHEstimation< PointInT, PointNT, PointOutT >::pfh_histogram_ [protected] |
Eigen::Vector4f pcl::PFHEstimation< PointInT, PointNT, PointOutT >::pfh_tuple_ [protected] |
bool pcl::PFHEstimation< PointInT, PointNT, PointOutT >::use_cache_ [protected] |