|
typedef Feature< PointInT,
PointOutT >::PointCloudOut | PointCloudOut |
| |
typedef pcl::search::Search
< PointNormal >::Ptr | KdTreePtr |
| |
typedef pcl::NormalEstimation
< PointNormal, PointNormal > | NormalEstimator |
| |
typedef pcl::VFHEstimation
< PointInT, PointNT,
pcl::VFHSignature308 > | VFHEstimator |
| |
| typedef pcl::PointCloud< PointNT > | PointCloudN |
| |
| typedef PointCloudN::Ptr | PointCloudNPtr |
| |
| typedef PointCloudN::ConstPtr | PointCloudNConstPtr |
| |
typedef boost::shared_ptr
< FeatureFromNormals< PointInT,
PointNT, PointOutT > > | Ptr |
| |
typedef boost::shared_ptr
< const FeatureFromNormals
< PointInT, PointNT, PointOutT > > | ConstPtr |
| |
| typedef PCLBase< PointInT > | BaseClass |
| |
typedef pcl::search::Search
< PointInT > | KdTree |
| |
typedef boost::function< int(size_t,
double, std::vector< int >
&, std::vector< float > &)> | SearchMethod |
| |
typedef boost::function< int(const
PointCloudIn &cloud, size_t
index, double, std::vector
< int > &, std::vector< float > &)> | SearchMethodSurface |
| |
| typedef pcl::PointCloud< PointInT > | PointCloud |
| |
| typedef PointCloud::Ptr | PointCloudPtr |
| |
| typedef PointCloud::ConstPtr | PointCloudConstPtr |
| |
| typedef PointIndices::Ptr | PointIndicesPtr |
| |
| typedef PointIndices::ConstPtr | PointIndicesConstPtr |
| |
|
| | CVFHEstimation () |
| | Empty constructor. More...
|
| |
| void | filterNormalsWithHighCurvature (const pcl::PointCloud< PointNT > &cloud, std::vector< int > &indices_to_use, std::vector< int > &indices_out, std::vector< int > &indices_in, float threshold) |
| | Removes normals with high curvature caused by real edges or noisy data. More...
|
| |
| void | setViewPoint (float vpx, float vpy, float vpz) |
| | Set the viewpoint. More...
|
| |
| void | setRadiusNormals (float radius_normals) |
| | Set the radius used to compute normals. More...
|
| |
| void | getViewPoint (float &vpx, float &vpy, float &vpz) |
| | Get the viewpoint. More...
|
| |
| void | getCentroidClusters (std::vector< Eigen::Vector3f > ¢roids) |
| | Get the centroids used to compute different CVFH descriptors. More...
|
| |
| void | getCentroidNormalClusters (std::vector< Eigen::Vector3f > ¢roids) |
| | Get the normal centroids used to compute different CVFH descriptors. More...
|
| |
| void | setClusterTolerance (float d) |
| | Sets max. More...
|
| |
| void | setEPSAngleThreshold (float d) |
| | Sets max. More...
|
| |
| void | setCurvatureThreshold (float d) |
| | Sets curvature threshold for removing normals. More...
|
| |
| void | setMinPoints (size_t min) |
| | Set minimum amount of points for a cluster to be considered. More...
|
| |
| void | setNormalizeBins (bool normalize) |
| | Sets wether if the CVFH signatures should be normalized or not. More...
|
| |
| void | compute (PointCloudOut &output) |
| | Overloaded computed method from pcl::Feature. More...
|
| |
| void | setInputNormals (const PointCloudNConstPtr &normals) |
| | Provide a pointer to the input dataset that contains the point normals of the XYZ dataset. More...
|
| |
| PointCloudNConstPtr | getInputNormals () const |
| | Get a pointer to the normals of the input XYZ point cloud dataset. More...
|
| |
| void | setSearchSurface (const PointCloudInConstPtr &cloud) |
| | Provide a pointer to a dataset to add additional information to estimate the features for every point in the input dataset. More...
|
| |
| PointCloudInConstPtr | getSearchSurface () const |
| | Get a pointer to the surface point cloud dataset. More...
|
| |
| void | setSearchMethod (const KdTreePtr &tree) |
| | Provide a pointer to the search object. More...
|
| |
| KdTreePtr | getSearchMethod () const |
| | Get a pointer to the search method used. More...
|
| |
| double | getSearchParameter () const |
| | Get the internal search parameter. More...
|
| |
| void | setKSearch (int k) |
| | Set the number of k nearest neighbors to use for the feature estimation. More...
|
| |
| int | getKSearch () const |
| | get the number of k nearest neighbors used for the feature estimation. More...
|
| |
| void | setRadiusSearch (double radius) |
| | Set the sphere radius that is to be used for determining the nearest neighbors used for the feature estimation. More...
|
| |
| double | getRadiusSearch () const |
| | Get the sphere radius used for determining the neighbors. More...
|
| |
| void | computeEigen (pcl::PointCloud< Eigen::MatrixXf > &output) |
| | Base method for feature estimation for all points given in <setInputCloud (), setIndices ()> using the surface in setSearchSurface () and the spatial locator in setSearchMethod () More...
|
| |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| | Provide a pointer to the input dataset. More...
|
| |
| PointCloudConstPtr const | getInputCloud () |
| | Get a pointer to the input point cloud dataset. More...
|
| |
| void | setIndices (const IndicesPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| void | setIndices (const IndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| void | setIndices (const PointIndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| void | setIndices (size_t row_start, size_t col_start, size_t nb_rows, size_t nb_cols) |
| | Set the indices for the points laying within an interest region of the point cloud. More...
|
| |
| IndicesPtr const | getIndices () |
| | Get a pointer to the vector of indices used. More...
|
| |
| const PointInT & | operator[] (size_t pos) |
| | Override PointCloud operator[] to shorten code. More...
|
| |
template<typename PointInT, typename PointNT, typename PointOutT = pcl::VFHSignature308>
class pcl::CVFHEstimation< PointInT, PointNT, PointOutT >
CVFHEstimation estimates the Clustered Viewpoint Feature Histogram (CVFH) descriptor for a given point cloud dataset containing XYZ data and normals, as presented in:
- CAD-Model Recognition and 6 DOF Pose Estimation A. Aldoma, N. Blodow, D. Gossow, S. Gedikli, R.B. Rusu, M. Vincze and G. Bradski ICCV 2011, 3D Representation and Recognition (3dRR11) workshop Barcelona, Spain, (2011)
The suggested PointOutT is pcl::VFHSignature308.
- Author
- Aitor Aldoma
Definition at line 65 of file cvfh.h.