Point Cloud Library (PCL)  1.15.1-dev
ia_ransac.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2012, Willow Garage, Inc.
6  * Copyright (c) 2012-, Open Perception, Inc.
7  *
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * * Redistributions of source code must retain the above copyright
15  * notice, this list of conditions and the following disclaimer.
16  * * Redistributions in binary form must reproduce the above
17  * copyright notice, this list of conditions and the following
18  * disclaimer in the documentation and/or other materials provided
19  * with the distribution.
20  * * Neither the name of the copyright holder(s) nor the names of its
21  * contributors may be used to endorse or promote products derived
22  * from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35  * POSSIBILITY OF SUCH DAMAGE.
36  *
37  * $Id$
38  *
39  */
40 
41 #pragma once
42 
43 #include <pcl/registration/registration.h>
44 #include <pcl/registration/transformation_estimation_svd.h>
45 #include <pcl/memory.h>
46 
47 namespace pcl {
48 /** \brief @b SampleConsensusInitialAlignment is an implementation of the initial
49  * alignment algorithm described in section IV of "Fast Point Feature Histograms (FPFH)
50  * for 3D Registration," Rusu et al. \author Michael Dixon, Radu B. Rusu
51  * \ingroup registration
52  */
53 template <typename PointSource, typename PointTarget, typename FeatureT>
54 class SampleConsensusInitialAlignment : public Registration<PointSource, PointTarget> {
55 public:
69 
72  using PointCloudSourcePtr = typename PointCloudSource::Ptr;
73  using PointCloudSourceConstPtr = typename PointCloudSource::ConstPtr;
74 
77 
80 
84 
85  using Ptr =
86  shared_ptr<SampleConsensusInitialAlignment<PointSource, PointTarget, FeatureT>>;
87  using ConstPtr = shared_ptr<
89 
90  class ErrorFunctor {
91  public:
92  using Ptr = shared_ptr<ErrorFunctor>;
93  using ConstPtr = shared_ptr<const ErrorFunctor>;
94 
95  virtual ~ErrorFunctor() = default;
96  virtual float
97  operator()(float d) const = 0;
98  };
99 
100  class HuberPenalty : public ErrorFunctor {
101  private:
102  HuberPenalty() = default;
103 
104  public:
105  HuberPenalty(float threshold) : threshold_(threshold) {}
106  float
107  operator()(float e) const override
108  {
109  if (e <= threshold_)
110  return (0.5 * e * e);
111  return (0.5 * threshold_ * (2.0 * std::fabs(e) - threshold_));
112  }
113 
114  protected:
115  float threshold_{0.0f};
116  };
117 
118  class TruncatedError : public ErrorFunctor {
119  private:
120  TruncatedError() = default;
121 
122  public:
123  ~TruncatedError() override = default;
124 
125  TruncatedError(float threshold) : threshold_(threshold) {}
126  float
127  operator()(float e) const override
128  {
129  if (e <= threshold_)
130  return (e / threshold_);
131  return (1.0);
132  }
133 
134  protected:
135  float threshold_{0.0f};
136  };
137 
139 
141  /** \brief Constructor. */
144  {
145  reg_name_ = "SampleConsensusInitialAlignment";
146  max_iterations_ = 1000;
147 
148  // Setting a non-std::numeric_limits<double>::max () value to corr_dist_threshold_
149  // to make it play nicely with TruncatedError
150  corr_dist_threshold_ = 100.0f;
153  };
154 
155  /** \brief Provide a shared pointer to the source point cloud's feature descriptors
156  * \param features the source point cloud's features
157  */
158  void
159  setSourceFeatures(const FeatureCloudConstPtr& features);
160 
161  /** \brief Get a pointer to the source point cloud's features */
162  inline FeatureCloudConstPtr const
164  {
165  return (input_features_);
166  }
167 
168  /** \brief Provide a shared pointer to the target point cloud's feature descriptors
169  * \param features the target point cloud's features
170  */
171  void
172  setTargetFeatures(const FeatureCloudConstPtr& features);
173 
174  /** \brief Get a pointer to the target point cloud's features */
175  inline FeatureCloudConstPtr const
177  {
178  return (target_features_);
179  }
180 
181  /** \brief Set the minimum distances between samples
182  * \param min_sample_distance the minimum distances between samples
183  */
184  void
185  setMinSampleDistance(float min_sample_distance)
186  {
187  min_sample_distance_ = min_sample_distance;
188  }
189 
190  /** \brief Get the minimum distances between samples, as set by the user */
191  float
193  {
194  return (min_sample_distance_);
195  }
196 
197  /** \brief Set the number of samples to use during each iteration
198  * \param nr_samples the number of samples to use during each iteration
199  */
200  void
201  setNumberOfSamples(int nr_samples)
202  {
203  nr_samples_ = nr_samples;
204  }
205 
206  /** \brief Get the number of samples to use during each iteration, as set by the user
207  */
208  int
210  {
211  return (nr_samples_);
212  }
213 
214  /** \brief Set the number of neighbors to use when selecting a random feature
215  * correspondence. A higher value will add more randomness to the feature matching.
216  * \param k the number of neighbors to use when selecting a random feature
217  * correspondence.
218  */
219  void
221  {
222  k_correspondences_ = k;
223  }
224 
225  /** \brief Get the number of neighbors used when selecting a random feature
226  * correspondence, as set by the user */
227  int
229  {
230  return (k_correspondences_);
231  }
232 
233  /** \brief Specify the error function to minimize
234  * \note This call is optional. TruncatedError will be used by default
235  * \param[in] error_functor a shared pointer to a subclass of
236  * SampleConsensusInitialAlignment::ErrorFunctor
237  */
238  void
239  setErrorFunction(const ErrorFunctorPtr& error_functor)
240  {
241  error_functor_ = error_functor;
242  }
243 
244  /** \brief Get a shared pointer to the ErrorFunctor that is to be minimized
245  * \return A shared pointer to a subclass of
246  * SampleConsensusInitialAlignment::ErrorFunctor
247  */
250  {
251  return (error_functor_);
252  }
253 
254 protected:
255  /** \brief Choose a random index between 0 and n-1
256  * \param n the number of possible indices to choose from
257  */
258  inline pcl::index_t
260  {
261  return (static_cast<pcl::index_t>(n * (rand() / (RAND_MAX + 1.0))));
262  };
263 
264  /** \brief Select \a nr_samples sample points from cloud while making sure that their
265  * pairwise distances are greater than a user-defined minimum distance, \a
266  * min_sample_distance. \param cloud the input point cloud \param nr_samples the
267  * number of samples to select \param min_sample_distance the minimum distance between
268  * any two samples \param sample_indices the resulting sample indices
269  */
270  void
271  selectSamples(const PointCloudSource& cloud,
272  unsigned int nr_samples,
273  float min_sample_distance,
274  pcl::Indices& sample_indices);
275 
276  /** \brief For each of the sample points, find a list of points in the target cloud
277  * whose features are similar to the sample points' features. From these, select one
278  * randomly which will be considered that sample point's correspondence. \param
279  * input_features a cloud of feature descriptors \param sample_indices the indices of
280  * each sample point \param corresponding_indices the resulting indices of each
281  * sample's corresponding point in the target cloud
282  */
283  void
284  findSimilarFeatures(const FeatureCloud& input_features,
285  const pcl::Indices& sample_indices,
286  pcl::Indices& corresponding_indices);
287 
288  /** \brief An error metric for that computes the quality of the alignment between the
289  * given cloud and the target. \param cloud the input cloud \param threshold distances
290  * greater than this value are capped
291  */
292  float
293  computeErrorMetric(const PointCloudSource& cloud, float threshold);
294 
295  /** \brief Rigid transformation computation method.
296  * \param output the transformed input point cloud dataset using the rigid
297  * transformation found \param guess The computed transforamtion
298  */
299  void
301  const Eigen::Matrix4f& guess) override;
302 
303  /** \brief The source point cloud's feature descriptors. */
305 
306  /** \brief The target point cloud's feature descriptors. */
308 
309  /** \brief The number of samples to use during each iteration. */
310  int nr_samples_{3};
311 
312  /** \brief The minimum distances between samples. */
313  float min_sample_distance_{0.0f};
314 
315  /** \brief The number of neighbors to use when selecting a random feature
316  * correspondence. */
318 
319  /** \brief The KdTree used to compare feature descriptors. */
321 
323 
324 public:
326 };
327 } // namespace pcl
328 
329 #include <pcl/registration/impl/ia_ransac.hpp>
shared_ptr< PointCloud< FeatureT > > Ptr
Definition: point_cloud.h:414
shared_ptr< const PointCloud< FeatureT > > ConstPtr
Definition: point_cloud.h:415
Registration represents the base registration class for general purpose, ICP-like methods.
Definition: registration.h:57
double corr_dist_threshold_
The maximum distance threshold between two correspondent points in source <-> target.
Definition: registration.h:603
std::string reg_name_
The registration method name.
Definition: registration.h:548
TransformationEstimationPtr transformation_estimation_
A TransformationEstimation object, used to calculate the 4x4 rigid transformation.
Definition: registration.h:625
int max_iterations_
The maximum number of iterations the internal optimization should run for.
Definition: registration.h:563
virtual float operator()(float d) const =0
shared_ptr< const ErrorFunctor > ConstPtr
Definition: ia_ransac.h:93
float operator()(float e) const override
Definition: ia_ransac.h:107
SampleConsensusInitialAlignment is an implementation of the initial alignment algorithm described in ...
Definition: ia_ransac.h:54
FeatureCloudConstPtr const getTargetFeatures()
Get a pointer to the target point cloud's features.
Definition: ia_ransac.h:176
PointIndices::ConstPtr PointIndicesConstPtr
Definition: ia_ransac.h:79
void computeTransformation(PointCloudSource &output, const Eigen::Matrix4f &guess) override
Rigid transformation computation method.
Definition: ia_ransac.hpp:191
shared_ptr< const SampleConsensusInitialAlignment< PointSource, PointTarget, FeatureT > > ConstPtr
Definition: ia_ransac.h:88
int getNumberOfSamples()
Get the number of samples to use during each iteration, as set by the user.
Definition: ia_ransac.h:209
PointIndices::Ptr PointIndicesPtr
Definition: ia_ransac.h:78
float computeErrorMetric(const PointCloudSource &cloud, float threshold)
An error metric for that computes the quality of the alignment between the given cloud and the target...
Definition: ia_ransac.hpp:168
typename PointCloudSource::ConstPtr PointCloudSourceConstPtr
Definition: ia_ransac.h:73
void setMinSampleDistance(float min_sample_distance)
Set the minimum distances between samples.
Definition: ia_ransac.h:185
typename Registration< PointSource, PointTarget >::PointCloudSource PointCloudSource
Definition: ia_ransac.h:71
FeatureKdTreePtr feature_tree_
The KdTree used to compare feature descriptors.
Definition: ia_ransac.h:320
pcl::index_t getRandomIndex(int n)
Choose a random index between 0 and n-1.
Definition: ia_ransac.h:259
pcl::PointCloud< FeatureT > FeatureCloud
Definition: ia_ransac.h:81
void setTargetFeatures(const FeatureCloudConstPtr &features)
Provide a shared pointer to the target point cloud's feature descriptors.
Definition: ia_ransac.hpp:65
void setNumberOfSamples(int nr_samples)
Set the number of samples to use during each iteration.
Definition: ia_ransac.h:201
FeatureCloudConstPtr target_features_
The target point cloud's feature descriptors.
Definition: ia_ransac.h:307
float getMinSampleDistance()
Get the minimum distances between samples, as set by the user.
Definition: ia_ransac.h:192
shared_ptr< SampleConsensusInitialAlignment< PointSource, PointTarget, FeatureT > > Ptr
Definition: ia_ransac.h:86
float min_sample_distance_
The minimum distances between samples.
Definition: ia_ransac.h:313
typename ErrorFunctor::Ptr ErrorFunctorPtr
Definition: ia_ransac.h:138
typename pcl::search::Search< FeatureT >::Ptr FeatureKdTreePtr
Definition: ia_ransac.h:140
typename FeatureCloud::Ptr FeatureCloudPtr
Definition: ia_ransac.h:82
void setErrorFunction(const ErrorFunctorPtr &error_functor)
Specify the error function to minimize.
Definition: ia_ransac.h:239
FeatureCloudConstPtr input_features_
The source point cloud's feature descriptors.
Definition: ia_ransac.h:304
int nr_samples_
The number of samples to use during each iteration.
Definition: ia_ransac.h:310
void selectSamples(const PointCloudSource &cloud, unsigned int nr_samples, float min_sample_distance, pcl::Indices &sample_indices)
Select nr_samples sample points from cloud while making sure that their pairwise distances are greate...
Definition: ia_ransac.hpp:81
typename PointCloudSource::Ptr PointCloudSourcePtr
Definition: ia_ransac.h:72
int getCorrespondenceRandomness()
Get the number of neighbors used when selecting a random feature correspondence, as set by the user.
Definition: ia_ransac.h:228
void findSimilarFeatures(const FeatureCloud &input_features, const pcl::Indices &sample_indices, pcl::Indices &corresponding_indices)
For each of the sample points, find a list of points in the target cloud whose features are similar t...
Definition: ia_ransac.hpp:144
void setCorrespondenceRandomness(int k)
Set the number of neighbors to use when selecting a random feature correspondence.
Definition: ia_ransac.h:220
typename FeatureCloud::ConstPtr FeatureCloudConstPtr
Definition: ia_ransac.h:83
SampleConsensusInitialAlignment()
Constructor.
Definition: ia_ransac.h:142
int k_correspondences_
The number of neighbors to use when selecting a random feature correspondence.
Definition: ia_ransac.h:317
ErrorFunctorPtr getErrorFunction()
Get a shared pointer to the ErrorFunctor that is to be minimized.
Definition: ia_ransac.h:249
FeatureCloudConstPtr const getSourceFeatures()
Get a pointer to the source point cloud's features.
Definition: ia_ransac.h:163
typename Registration< PointSource, PointTarget >::PointCloudTarget PointCloudTarget
Definition: ia_ransac.h:76
void setSourceFeatures(const FeatureCloudConstPtr &features)
Provide a shared pointer to the source point cloud's feature descriptors.
Definition: ia_ransac.hpp:51
TransformationEstimationSVD implements SVD-based estimation of the transformation aligning the given ...
shared_ptr< pcl::search::Search< PointT > > Ptr
Definition: search.h:81
#define PCL_MAKE_ALIGNED_OPERATOR_NEW
Macro to signal a class requires a custom allocator.
Definition: memory.h:86
Defines functions, macros and traits for allocating and using memory.
detail::int_type_t< detail::index_type_size, detail::index_type_signed > index_t
Type used for an index in PCL.
Definition: types.h:112
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition: types.h:133
shared_ptr< ::pcl::PointIndices > Ptr
Definition: PointIndices.h:13
shared_ptr< const ::pcl::PointIndices > ConstPtr
Definition: PointIndices.h:14