|
| template<typename PointT > |
| void | pcl::extractEuclideanClusters (const PointCloud< PointT > &cloud, const boost::shared_ptr< search::Search< PointT > > &tree, float tolerance, std::vector< PointIndices > &clusters, unsigned int min_pts_per_cluster=1, unsigned int max_pts_per_cluster=(std::numeric_limits< int >::max)()) |
| | Decompose a region of space into clusters based on the Euclidean distance between points. More...
|
| |
| template<typename PointT > |
| void | pcl::extractEuclideanClusters (const PointCloud< PointT > &cloud, const std::vector< int > &indices, const boost::shared_ptr< search::Search< PointT > > &tree, float tolerance, std::vector< PointIndices > &clusters, unsigned int min_pts_per_cluster=1, unsigned int max_pts_per_cluster=(std::numeric_limits< int >::max)()) |
| | Decompose a region of space into clusters based on the Euclidean distance between points. More...
|
| |
| template<typename PointT , typename Normal > |
| void | pcl::extractEuclideanClusters (const PointCloud< PointT > &cloud, const PointCloud< Normal > &normals, float tolerance, const boost::shared_ptr< KdTree< PointT > > &tree, std::vector< PointIndices > &clusters, double eps_angle, unsigned int min_pts_per_cluster=1, unsigned int max_pts_per_cluster=(std::numeric_limits< int >::max)()) |
| | Decompose a region of space into clusters based on the euclidean distance between points, and the normal angular deviation. More...
|
| |
| template<typename PointT , typename Normal > |
| void | pcl::extractEuclideanClusters (const PointCloud< PointT > &cloud, const PointCloud< Normal > &normals, const std::vector< int > &indices, const boost::shared_ptr< KdTree< PointT > > &tree, float tolerance, std::vector< PointIndices > &clusters, double eps_angle, unsigned int min_pts_per_cluster=1, unsigned int max_pts_per_cluster=(std::numeric_limits< int >::max)()) |
| | Decompose a region of space into clusters based on the euclidean distance between points, and the normal angular deviation. More...
|
| |
| bool | pcl::comparePointClusters (const pcl::PointIndices &a, const pcl::PointIndices &b) |
| | Sort clusters method (for std::sort). More...
|
| |