Point Cloud Library (PCL)  1.11.1-dev
extract_clusters.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2011, Willow Garage, Inc.
6  *
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of the copyright holder(s) nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  * $Id$
37  *
38  */
39 
40 #pragma once
41 
42 #include <pcl/console/print.h> // for PCL_ERROR
43 #include <pcl/pcl_base.h>
44 
45 #include <pcl/search/search.h> // for Search
46 #include <pcl/search/kdtree.h> // for KdTree
47 
48 namespace pcl
49 {
50  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
51  /** \brief Decompose a region of space into clusters based on the Euclidean distance between points
52  * \param cloud the point cloud message
53  * \param tree the spatial locator (e.g., kd-tree) used for nearest neighbors searching
54  * \note the tree has to be created as a spatial locator on \a cloud
55  * \param tolerance the spatial cluster tolerance as a measure in L2 Euclidean space
56  * \param clusters the resultant clusters containing point indices (as a vector of PointIndices)
57  * \param min_pts_per_cluster minimum number of points that a cluster may contain (default: 1)
58  * \param max_pts_per_cluster maximum number of points that a cluster may contain (default: max int)
59  * \ingroup segmentation
60  */
61  template <typename PointT> void
63  const PointCloud<PointT> &cloud, const typename search::Search<PointT>::Ptr &tree,
64  float tolerance, std::vector<PointIndices> &clusters,
65  unsigned int min_pts_per_cluster = 1, unsigned int max_pts_per_cluster = (std::numeric_limits<int>::max) ());
66 
67  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
68  /** \brief Decompose a region of space into clusters based on the Euclidean distance between points
69  * \param cloud the point cloud message
70  * \param indices a list of point indices to use from \a cloud
71  * \param tree the spatial locator (e.g., kd-tree) used for nearest neighbors searching
72  * \note the tree has to be created as a spatial locator on \a cloud and \a indices
73  * \param tolerance the spatial cluster tolerance as a measure in L2 Euclidean space
74  * \param clusters the resultant clusters containing point indices (as a vector of PointIndices)
75  * \param min_pts_per_cluster minimum number of points that a cluster may contain (default: 1)
76  * \param max_pts_per_cluster maximum number of points that a cluster may contain (default: max int)
77  * \ingroup segmentation
78  */
79  template <typename PointT> void
81  const PointCloud<PointT> &cloud, const Indices &indices,
82  const typename search::Search<PointT>::Ptr &tree, float tolerance, std::vector<PointIndices> &clusters,
83  unsigned int min_pts_per_cluster = 1, unsigned int max_pts_per_cluster = (std::numeric_limits<int>::max) ());
84 
85  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
86  /** \brief Decompose a region of space into clusters based on the euclidean distance between points, and the normal
87  * angular deviation between points. Each point added to the cluster is origin to another radius search. Each point
88  * within radius range will be compared to the origin in respect to normal angle and euclidean distance. If both
89  * are under their respective threshold the point will be added to the cluster. Generally speaking the cluster
90  * algorithm will not stop on smooth surfaces but on surfaces with sharp edges.
91  * \param cloud the point cloud message
92  * \param normals the point cloud message containing normal information
93  * \param tree the spatial locator (e.g., kd-tree) used for nearest neighbors searching
94  * \note the tree has to be created as a spatial locator on \a cloud
95  * \param tolerance the spatial cluster tolerance as a measure in the L2 Euclidean space
96  * \param clusters the resultant clusters containing point indices (as a vector of PointIndices)
97  * \param eps_angle the maximum allowed difference between normals in radians for cluster/region growing
98  * \param min_pts_per_cluster minimum number of points that a cluster may contain (default: 1)
99  * \param max_pts_per_cluster maximum number of points that a cluster may contain (default: max int)
100  * \ingroup segmentation
101  */
102  template <typename PointT, typename Normal> void
104  const PointCloud<PointT> &cloud, const PointCloud<Normal> &normals,
105  float tolerance, const typename KdTree<PointT>::Ptr &tree,
106  std::vector<PointIndices> &clusters, double eps_angle,
107  unsigned int min_pts_per_cluster = 1,
108  unsigned int max_pts_per_cluster = (std::numeric_limits<int>::max) ())
109  {
110  if (tree->getInputCloud ()->size () != cloud.size ())
111  {
112  PCL_ERROR("[pcl::extractEuclideanClusters] Tree built for a different point "
113  "cloud dataset (%zu) than the input cloud (%zu)!\n",
114  static_cast<std::size_t>(tree->getInputCloud()->size()),
115  static_cast<std::size_t>(cloud.size()));
116  return;
117  }
118  if (cloud.size () != normals.size ())
119  {
120  PCL_ERROR("[pcl::extractEuclideanClusters] Number of points in the input point "
121  "cloud (%zu) different than normals (%zu)!\n",
122  static_cast<std::size_t>(cloud.size()),
123  static_cast<std::size_t>(normals.size()));
124  return;
125  }
126  const double cos_eps_angle = std::cos (eps_angle); // compute this once instead of acos many times (faster)
127 
128  // Create a bool vector of processed point indices, and initialize it to false
129  std::vector<bool> processed (cloud.size (), false);
130 
131  Indices nn_indices;
132  std::vector<float> nn_distances;
133  // Process all points in the indices vector
134  for (std::size_t i = 0; i < cloud.size (); ++i)
135  {
136  if (processed[i])
137  continue;
138 
139  Indices seed_queue;
140  int sq_idx = 0;
141  seed_queue.push_back (static_cast<index_t> (i));
142 
143  processed[i] = true;
144 
145  while (sq_idx < static_cast<int> (seed_queue.size ()))
146  {
147  // Search for sq_idx
148  if (!tree->radiusSearch (seed_queue[sq_idx], tolerance, nn_indices, nn_distances))
149  {
150  sq_idx++;
151  continue;
152  }
153 
154  for (std::size_t j = 1; j < nn_indices.size (); ++j) // nn_indices[0] should be sq_idx
155  {
156  if (processed[nn_indices[j]]) // Has this point been processed before ?
157  continue;
158 
159  //processed[nn_indices[j]] = true;
160  // [-1;1]
161  double dot_p = normals[seed_queue[sq_idx]].normal[0] * normals[nn_indices[j]].normal[0] +
162  normals[seed_queue[sq_idx]].normal[1] * normals[nn_indices[j]].normal[1] +
163  normals[seed_queue[sq_idx]].normal[2] * normals[nn_indices[j]].normal[2];
164  if ( std::abs (dot_p) > cos_eps_angle )
165  {
166  processed[nn_indices[j]] = true;
167  seed_queue.push_back (nn_indices[j]);
168  }
169  }
170 
171  sq_idx++;
172  }
173 
174  // If this queue is satisfactory, add to the clusters
175  if (seed_queue.size () >= min_pts_per_cluster && seed_queue.size () <= max_pts_per_cluster)
176  {
178  r.indices.resize (seed_queue.size ());
179  for (std::size_t j = 0; j < seed_queue.size (); ++j)
180  r.indices[j] = seed_queue[j];
181 
182  // These two lines should not be needed: (can anyone confirm?) -FF
183  std::sort (r.indices.begin (), r.indices.end ());
184  r.indices.erase (std::unique (r.indices.begin (), r.indices.end ()), r.indices.end ());
185 
186  r.header = cloud.header;
187  clusters.push_back (r); // We could avoid a copy by working directly in the vector
188  }
189  }
190  }
191 
192 
193  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
194  /** \brief Decompose a region of space into clusters based on the euclidean distance between points, and the normal
195  * angular deviation between points. Each point added to the cluster is origin to another radius search. Each point
196  * within radius range will be compared to the origin in respect to normal angle and euclidean distance. If both
197  * are under their respective threshold the point will be added to the cluster. Generally speaking the cluster
198  * algorithm will not stop on smooth surfaces but on surfaces with sharp edges.
199  * \param cloud the point cloud message
200  * \param normals the point cloud message containing normal information
201  * \param indices a list of point indices to use from \a cloud
202  * \param tree the spatial locator (e.g., kd-tree) used for nearest neighbors searching
203  * \note the tree has to be created as a spatial locator on \a cloud
204  * \param tolerance the spatial cluster tolerance as a measure in the L2 Euclidean space
205  * \param clusters the resultant clusters containing point indices (as PointIndices)
206  * \param eps_angle the maximum allowed difference between normals in radians for cluster/region growing
207  * \param min_pts_per_cluster minimum number of points that a cluster may contain (default: 1)
208  * \param max_pts_per_cluster maximum number of points that a cluster may contain (default: max int)
209  * \ingroup segmentation
210  */
211  template <typename PointT, typename Normal>
213  const PointCloud<PointT> &cloud, const PointCloud<Normal> &normals,
214  const Indices &indices, const typename KdTree<PointT>::Ptr &tree,
215  float tolerance, std::vector<PointIndices> &clusters, double eps_angle,
216  unsigned int min_pts_per_cluster = 1,
217  unsigned int max_pts_per_cluster = (std::numeric_limits<int>::max) ())
218  {
219  // \note If the tree was created over <cloud, indices>, we guarantee a 1-1 mapping between what the tree returns
220  //and indices[i]
221  if (tree->getInputCloud()->size() != cloud.size()) {
222  PCL_ERROR("[pcl::extractEuclideanClusters] Tree built for a different point "
223  "cloud dataset (%zu) than the input cloud (%zu)!\n",
224  static_cast<std::size_t>(tree->getInputCloud()->size()),
225  static_cast<std::size_t>(cloud.size()));
226  return;
227  }
228  if (tree->getIndices()->size() != indices.size()) {
229  PCL_ERROR("[pcl::extractEuclideanClusters] Tree built for a different set of "
230  "indices (%zu) than the input set (%zu)!\n",
231  static_cast<std::size_t>(tree->getIndices()->size()),
232  indices.size());
233  return;
234  }
235  if (cloud.size() != normals.size()) {
236  PCL_ERROR("[pcl::extractEuclideanClusters] Number of points in the input point "
237  "cloud (%zu) different than normals (%zu)!\n",
238  static_cast<std::size_t>(cloud.size()),
239  static_cast<std::size_t>(normals.size()));
240  return;
241  }
242  const double cos_eps_angle = std::cos (eps_angle); // compute this once instead of acos many times (faster)
243  // Create a bool vector of processed point indices, and initialize it to false
244  std::vector<bool> processed (cloud.size (), false);
245 
246  Indices nn_indices;
247  std::vector<float> nn_distances;
248  // Process all points in the indices vector
249  for (std::size_t i = 0; i < indices.size (); ++i)
250  {
251  if (processed[indices[i]])
252  continue;
253 
254  Indices seed_queue;
255  int sq_idx = 0;
256  seed_queue.push_back (indices[i]);
257 
258  processed[indices[i]] = true;
259 
260  while (sq_idx < static_cast<int> (seed_queue.size ()))
261  {
262  // Search for sq_idx
263  if (!tree->radiusSearch (cloud[seed_queue[sq_idx]], tolerance, nn_indices, nn_distances))
264  {
265  sq_idx++;
266  continue;
267  }
268 
269  for (std::size_t j = 1; j < nn_indices.size (); ++j) // nn_indices[0] should be sq_idx
270  {
271  if (processed[nn_indices[j]]) // Has this point been processed before ?
272  continue;
273 
274  //processed[nn_indices[j]] = true;
275  // [-1;1]
276  double dot_p = normals[seed_queue[sq_idx]].normal[0] * normals[nn_indices[j]].normal[0] +
277  normals[seed_queue[sq_idx]].normal[1] * normals[nn_indices[j]].normal[1] +
278  normals[seed_queue[sq_idx]].normal[2] * normals[nn_indices[j]].normal[2];
279  if ( std::abs (dot_p) > cos_eps_angle )
280  {
281  processed[nn_indices[j]] = true;
282  seed_queue.push_back (nn_indices[j]);
283  }
284  }
285 
286  sq_idx++;
287  }
288 
289  // If this queue is satisfactory, add to the clusters
290  if (seed_queue.size () >= min_pts_per_cluster && seed_queue.size () <= max_pts_per_cluster)
291  {
293  r.indices.resize (seed_queue.size ());
294  for (std::size_t j = 0; j < seed_queue.size (); ++j)
295  r.indices[j] = seed_queue[j];
296 
297  // These two lines should not be needed: (can anyone confirm?) -FF
298  std::sort (r.indices.begin (), r.indices.end ());
299  r.indices.erase (std::unique (r.indices.begin (), r.indices.end ()), r.indices.end ());
300 
301  r.header = cloud.header;
302  clusters.push_back (r);
303  }
304  }
305  }
306 
307  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
308  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
309  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
310  /** \brief @b EuclideanClusterExtraction represents a segmentation class for cluster extraction in an Euclidean sense.
311  * \author Radu Bogdan Rusu
312  * \ingroup segmentation
313  */
314  template <typename PointT>
315  class EuclideanClusterExtraction: public PCLBase<PointT>
316  {
318 
319  public:
321  using PointCloudPtr = typename PointCloud::Ptr;
323 
325  using KdTreePtr = typename KdTree::Ptr;
326 
329 
330  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
331  /** \brief Empty constructor. */
333  cluster_tolerance_ (0),
335  max_pts_per_cluster_ (std::numeric_limits<int>::max ())
336  {};
337 
338  /** \brief Provide a pointer to the search object.
339  * \param[in] tree a pointer to the spatial search object.
340  */
341  inline void
342  setSearchMethod (const KdTreePtr &tree)
343  {
344  tree_ = tree;
345  }
346 
347  /** \brief Get a pointer to the search method used.
348  * @todo fix this for a generic search tree
349  */
350  inline KdTreePtr
351  getSearchMethod () const
352  {
353  return (tree_);
354  }
355 
356  /** \brief Set the spatial cluster tolerance as a measure in the L2 Euclidean space
357  * \param[in] tolerance the spatial cluster tolerance as a measure in the L2 Euclidean space
358  */
359  inline void
360  setClusterTolerance (double tolerance)
361  {
362  cluster_tolerance_ = tolerance;
363  }
364 
365  /** \brief Get the spatial cluster tolerance as a measure in the L2 Euclidean space. */
366  inline double
368  {
369  return (cluster_tolerance_);
370  }
371 
372  /** \brief Set the minimum number of points that a cluster needs to contain in order to be considered valid.
373  * \param[in] min_cluster_size the minimum cluster size
374  */
375  inline void
376  setMinClusterSize (int min_cluster_size)
377  {
378  min_pts_per_cluster_ = min_cluster_size;
379  }
380 
381  /** \brief Get the minimum number of points that a cluster needs to contain in order to be considered valid. */
382  inline int
384  {
385  return (min_pts_per_cluster_);
386  }
387 
388  /** \brief Set the maximum number of points that a cluster needs to contain in order to be considered valid.
389  * \param[in] max_cluster_size the maximum cluster size
390  */
391  inline void
392  setMaxClusterSize (int max_cluster_size)
393  {
394  max_pts_per_cluster_ = max_cluster_size;
395  }
396 
397  /** \brief Get the maximum number of points that a cluster needs to contain in order to be considered valid. */
398  inline int
400  {
401  return (max_pts_per_cluster_);
402  }
403 
404  /** \brief Cluster extraction in a PointCloud given by <setInputCloud (), setIndices ()>
405  * \param[out] clusters the resultant point clusters
406  */
407  void
408  extract (std::vector<PointIndices> &clusters);
409 
410  protected:
411  // Members derived from the base class
412  using BasePCLBase::input_;
413  using BasePCLBase::indices_;
416 
417  /** \brief A pointer to the spatial search object. */
419 
420  /** \brief The spatial cluster tolerance as a measure in the L2 Euclidean space. */
422 
423  /** \brief The minimum number of points that a cluster needs to contain in order to be considered valid (default = 1). */
425 
426  /** \brief The maximum number of points that a cluster needs to contain in order to be considered valid (default = MAXINT). */
428 
429  /** \brief Class getName method. */
430  virtual std::string getClassName () const { return ("EuclideanClusterExtraction"); }
431 
432  };
433 
434  /** \brief Sort clusters method (for std::sort).
435  * \ingroup segmentation
436  */
437  inline bool
439  {
440  return (a.indices.size () < b.indices.size ());
441  }
442 }
443 
444 #ifdef PCL_NO_PRECOMPILE
445 #include <pcl/segmentation/impl/extract_clusters.hpp>
446 #endif
pcl::search::Search
Generic search class.
Definition: search.h:74
pcl
Definition: convolution.h:46
pcl::EuclideanClusterExtraction::setMinClusterSize
void setMinClusterSize(int min_cluster_size)
Set the minimum number of points that a cluster needs to contain in order to be considered valid.
Definition: extract_clusters.h:376
pcl::EuclideanClusterExtraction::setClusterTolerance
void setClusterTolerance(double tolerance)
Set the spatial cluster tolerance as a measure in the L2 Euclidean space.
Definition: extract_clusters.h:360
pcl::EuclideanClusterExtraction::extract
void extract(std::vector< PointIndices > &clusters)
Cluster extraction in a PointCloud given by <setInputCloud (), setIndices ()>
Definition: extract_clusters.hpp:218
pcl::PCLBase::PointCloudConstPtr
typename PointCloud::ConstPtr PointCloudConstPtr
Definition: pcl_base.h:74
pcl::EuclideanClusterExtraction::getMinClusterSize
int getMinClusterSize() const
Get the minimum number of points that a cluster needs to contain in order to be considered valid.
Definition: extract_clusters.h:383
pcl::KdTree
KdTree represents the base spatial locator class for kd-tree implementations.
Definition: kdtree.h:54
pcl::PCLBase::input_
PointCloudConstPtr input_
The input point cloud dataset.
Definition: pcl_base.h:147
pcl::PCLBase::PointCloudPtr
typename PointCloud::Ptr PointCloudPtr
Definition: pcl_base.h:73
pcl::PointIndices::indices
Indices indices
Definition: PointIndices.h:21
pcl::PointIndices::header
::pcl::PCLHeader header
Definition: PointIndices.h:19
pcl::EuclideanClusterExtraction::setMaxClusterSize
void setMaxClusterSize(int max_cluster_size)
Set the maximum number of points that a cluster needs to contain in order to be considered valid.
Definition: extract_clusters.h:392
pcl::PCLBase
PCL base class.
Definition: pcl_base.h:69
pcl::PCLBase::PointIndicesConstPtr
PointIndices::ConstPtr PointIndicesConstPtr
Definition: pcl_base.h:77
pcl::PointCloud
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition: distances.h:55
pcl::index_t
detail::int_type_t< detail::index_type_size, detail::index_type_signed > index_t
Type used for an index in PCL.
Definition: types.h:110
pcl::EuclideanClusterExtraction::KdTreePtr
typename KdTree::Ptr KdTreePtr
Definition: extract_clusters.h:325
pcl::EuclideanClusterExtraction::setSearchMethod
void setSearchMethod(const KdTreePtr &tree)
Provide a pointer to the search object.
Definition: extract_clusters.h:342
pcl::EuclideanClusterExtraction::EuclideanClusterExtraction
EuclideanClusterExtraction()
Empty constructor.
Definition: extract_clusters.h:332
pcl::EuclideanClusterExtraction
EuclideanClusterExtraction represents a segmentation class for cluster extraction in an Euclidean sen...
Definition: extract_clusters.h:315
pcl::PointIndices::ConstPtr
shared_ptr< const ::pcl::PointIndices > ConstPtr
Definition: PointIndices.h:14
pcl::KdTree::radiusSearch
virtual int radiusSearch(const PointT &p_q, double radius, std::vector< int > &k_indices, std::vector< float > &k_sqr_distances, unsigned int max_nn=0) const =0
Search for all the nearest neighbors of the query point in a given radius.
pcl::EuclideanClusterExtraction::max_pts_per_cluster_
int max_pts_per_cluster_
The maximum number of points that a cluster needs to contain in order to be considered valid (default...
Definition: extract_clusters.h:427
pcl::EuclideanClusterExtraction::min_pts_per_cluster_
int min_pts_per_cluster_
The minimum number of points that a cluster needs to contain in order to be considered valid (default...
Definition: extract_clusters.h:424
pcl::KdTree::getIndices
IndicesConstPtr getIndices() const
Get a pointer to the vector of indices used.
Definition: kdtree.h:93
pcl::KdTree::getInputCloud
PointCloudConstPtr getInputCloud() const
Get a pointer to the input point cloud dataset.
Definition: kdtree.h:100
pcl::search::Search::Ptr
shared_ptr< pcl::search::Search< PointT > > Ptr
Definition: search.h:81
pcl::EuclideanClusterExtraction::getSearchMethod
KdTreePtr getSearchMethod() const
Get a pointer to the search method used.
Definition: extract_clusters.h:351
pcl::PointIndices
Definition: PointIndices.h:11
pcl::PointCloud::header
pcl::PCLHeader header
The point cloud header.
Definition: point_cloud.h:385
pcl::Indices
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition: types.h:131
pcl::PointIndices::Ptr
shared_ptr< ::pcl::PointIndices > Ptr
Definition: PointIndices.h:13
pcl::PointCloud::size
std::size_t size() const
Definition: point_cloud.h:436
pcl::PointCloud::Ptr
shared_ptr< PointCloud< PointT > > Ptr
Definition: point_cloud.h:406
pcl::PCLBase::deinitCompute
bool deinitCompute()
This method should get called after finishing the actual computation.
Definition: pcl_base.hpp:171
pcl::PCLBase::indices_
IndicesPtr indices_
A pointer to the vector of point indices to use.
Definition: pcl_base.h:150
pcl::EuclideanClusterExtraction::tree_
KdTreePtr tree_
A pointer to the spatial search object.
Definition: extract_clusters.h:418
pcl::PointCloud::ConstPtr
shared_ptr< const PointCloud< PointT > > ConstPtr
Definition: point_cloud.h:407
pcl::EuclideanClusterExtraction::getClusterTolerance
double getClusterTolerance() const
Get the spatial cluster tolerance as a measure in the L2 Euclidean space.
Definition: extract_clusters.h:367
pcl::PCLBase::PointIndicesPtr
PointIndices::Ptr PointIndicesPtr
Definition: pcl_base.h:76
pcl::comparePointClusters
bool comparePointClusters(const pcl::PointIndices &a, const pcl::PointIndices &b)
Sort clusters method (for std::sort).
Definition: extract_clusters.h:438
pcl::EuclideanClusterExtraction::cluster_tolerance_
double cluster_tolerance_
The spatial cluster tolerance as a measure in the L2 Euclidean space.
Definition: extract_clusters.h:421
pcl::EuclideanClusterExtraction::getMaxClusterSize
int getMaxClusterSize() const
Get the maximum number of points that a cluster needs to contain in order to be considered valid.
Definition: extract_clusters.h:399
pcl::PCLBase::initCompute
bool initCompute()
This method should get called before starting the actual computation.
Definition: pcl_base.hpp:138
pcl::PointCloud::push_back
void push_back(const PointT &pt)
Insert a new point in the cloud, at the end of the container.
Definition: point_cloud.h:543
pcl::extractEuclideanClusters
void extractEuclideanClusters(const PointCloud< PointT > &cloud, const typename search::Search< PointT >::Ptr &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.
Definition: extract_clusters.hpp:46
pcl::EuclideanClusterExtraction::getClassName
virtual std::string getClassName() const
Class getName method.
Definition: extract_clusters.h:430