Point Cloud Library (PCL)  1.14.0-dev
correspondence_estimation.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  * 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/common/io.h> // for getFields
44 #include <pcl/registration/correspondence_types.h>
45 #include <pcl/search/kdtree.h>
46 #include <pcl/memory.h>
47 #include <pcl/pcl_base.h>
48 #include <pcl/pcl_macros.h>
49 
50 #include <string>
51 
52 namespace pcl {
53 namespace registration {
54 /** \brief Abstract @b CorrespondenceEstimationBase class.
55  * All correspondence estimation methods should inherit from this.
56  * \author Radu B. Rusu
57  * \ingroup registration
58  */
59 template <typename PointSource, typename PointTarget, typename Scalar = float>
60 class CorrespondenceEstimationBase : public PCLBase<PointSource> {
61 public:
62  using Ptr =
63  shared_ptr<CorrespondenceEstimationBase<PointSource, PointTarget, Scalar>>;
64  using ConstPtr =
65  shared_ptr<const CorrespondenceEstimationBase<PointSource, PointTarget, Scalar>>;
66 
67  // using PCLBase<PointSource>::initCompute;
72 
74  using KdTreePtr = typename KdTree::Ptr;
75  using KdTreeConstPtr = typename KdTree::ConstPtr;
76 
80 
84 
88 
92 
93  /** \brief Empty constructor. */
95  : corr_name_("CorrespondenceEstimationBase")
96  , tree_(new pcl::search::KdTree<PointTarget>)
97  , tree_reciprocal_(new pcl::search::KdTree<PointSource>)
98  , target_()
101  {}
102 
103  /** \brief Empty destructor */
104  ~CorrespondenceEstimationBase() override = default;
105 
106  /** \brief Provide a pointer to the input source
107  * (e.g., the point cloud that we want to align to the target)
108  *
109  * \param[in] cloud the input point cloud source
110  */
111  inline void
113  {
114  source_cloud_updated_ = true;
116  input_fields_ = pcl::getFields<PointSource>();
117  }
118 
119  /** \brief Get a pointer to the input point cloud dataset target. */
120  inline PointCloudSourceConstPtr const
122  {
123  return (input_);
124  }
125 
126  /** \brief Provide a pointer to the input target
127  * (e.g., the point cloud that we want to align the input source to)
128  * \param[in] cloud the input point cloud target
129  */
130  inline void
132 
133  /** \brief Get a pointer to the input point cloud dataset target. */
134  inline PointCloudTargetConstPtr const
136  {
137  return (target_);
138  }
139 
140  /** \brief See if this rejector requires source normals */
141  virtual bool
143  {
144  return (false);
145  }
146 
147  /** \brief Abstract method for setting the source normals */
148  virtual void
150  {
151  PCL_WARN("[pcl::registration::%s::setSourceNormals] This class does not require "
152  "input source normals\n",
153  getClassName().c_str());
154  }
155 
156  /** \brief See if this rejector requires target normals */
157  virtual bool
159  {
160  return (false);
161  }
162 
163  /** \brief Abstract method for setting the target normals */
164  virtual void
166  {
167  PCL_WARN("[pcl::registration::%s::setTargetNormals] This class does not require "
168  "input target normals\n",
169  getClassName().c_str());
170  }
171 
172  /** \brief Provide a pointer to the vector of indices that represent the
173  * input source point cloud.
174  * \param[in] indices a pointer to the vector of indices
175  */
176  inline void
177  setIndicesSource(const IndicesPtr& indices)
178  {
179  setIndices(indices);
180  }
181 
182  /** \brief Get a pointer to the vector of indices used for the source dataset. */
183  inline IndicesPtr const
185  {
186  return (indices_);
187  }
188 
189  /** \brief Provide a pointer to the vector of indices that represent the input target
190  * point cloud. \param[in] indices a pointer to the vector of indices
191  */
192  inline void
193  setIndicesTarget(const IndicesPtr& indices)
194  {
195  target_cloud_updated_ = true;
196  target_indices_ = indices;
197  }
198 
199  /** \brief Get a pointer to the vector of indices used for the target dataset. */
200  inline IndicesPtr const
202  {
203  return (target_indices_);
204  }
205 
206  /** \brief Provide a pointer to the search object used to find correspondences in
207  * the target cloud.
208  * \param[in] tree a pointer to the spatial search object.
209  * \param[in] force_no_recompute If set to true, this tree will NEVER be
210  * recomputed, regardless of calls to setInputTarget. Only use if you are
211  * confident that the tree will be set correctly.
212  */
213  inline void
214  setSearchMethodTarget(const KdTreePtr& tree, bool force_no_recompute = false)
215  {
216  tree_ = tree;
217  force_no_recompute_ = force_no_recompute;
218  // Since we just set a new tree, we need to check for updates
219  target_cloud_updated_ = true;
220  }
221 
222  /** \brief Get a pointer to the search method used to find correspondences in the
223  * target cloud. */
224  inline KdTreePtr
226  {
227  return (tree_);
228  }
229 
230  /** \brief Provide a pointer to the search object used to find correspondences in
231  * the source cloud (usually used by reciprocal correspondence finding).
232  * \param[in] tree a pointer to the spatial search object.
233  * \param[in] force_no_recompute If set to true, this tree will NEVER be
234  * recomputed, regardless of calls to setInputSource. Only use if you are
235  * extremely confident that the tree will be set correctly.
236  */
237  inline void
239  bool force_no_recompute = false)
240  {
241  tree_reciprocal_ = tree;
242  force_no_recompute_reciprocal_ = force_no_recompute;
243  // Since we just set a new tree, we need to check for updates
244  source_cloud_updated_ = true;
245  }
246 
247  /** \brief Get a pointer to the search method used to find correspondences in the
248  * source cloud. */
249  inline KdTreeReciprocalPtr
251  {
252  return (tree_reciprocal_);
253  }
254 
255  /** \brief Determine the correspondences between input and target cloud.
256  * \param[out] correspondences the found correspondences (index of query point, index
257  * of target point, distance) \param[in] max_distance maximum allowed distance between
258  * correspondences
259  */
260  virtual void
262  pcl::Correspondences& correspondences,
263  double max_distance = std::numeric_limits<double>::max()) = 0;
264 
265  /** \brief Determine the reciprocal correspondences between input and target cloud.
266  * A correspondence is considered reciprocal if both Src_i has Tgt_i as a
267  * correspondence, and Tgt_i has Src_i as one.
268  *
269  * \param[out] correspondences the found correspondences (index of query and target
270  * point, distance) \param[in] max_distance maximum allowed distance between
271  * correspondences
272  */
273  virtual void
275  pcl::Correspondences& correspondences,
276  double max_distance = std::numeric_limits<double>::max()) = 0;
277 
278  /** \brief Provide a boost shared pointer to the PointRepresentation for target cloud
279  * to be used when searching for nearest neighbors.
280  *
281  * \param[in] point_representation the PointRepresentation to be used by the
282  * k-D tree for nearest neighbor search
283  */
284  inline void
286  {
287  point_representation_ = point_representation;
288  }
289 
290  /** \brief Provide a boost shared pointer to the PointRepresentation for source cloud
291  * to be used when searching for nearest neighbors.
292  *
293  * \param[in] point_representation the PointRepresentation to be used by the
294  * k-D tree for nearest neighbor search
295  */
296  inline void
298  const PointRepresentationReciprocalConstPtr& point_representation_reciprocal)
299  {
300  point_representation_reciprocal_ = point_representation_reciprocal;
301  }
302 
303  /** \brief Clone and cast to CorrespondenceEstimationBase */
305  clone() const = 0;
306 
307 protected:
308  /** \brief The correspondence estimation method name. */
309  std::string corr_name_;
310 
311  /** \brief A pointer to the spatial search object used for the target dataset. */
313 
314  /** \brief A pointer to the spatial search object used for the source dataset. */
316 
317  /** \brief The input point cloud dataset target. */
319 
320  /** \brief The target point cloud dataset indices. */
322 
323  /** \brief The target point representation used (internal). */
325 
326  /** \brief The source point representation used (internal). */
328 
329  /** \brief The transformed input source point cloud dataset. */
331 
332  /** \brief The types of input point fields available. */
333  std::vector<pcl::PCLPointField> input_fields_;
334 
335  /** \brief Abstract class get name method. */
336  inline const std::string&
337  getClassName() const
338  {
339  return (corr_name_);
340  }
341 
342  /** \brief Internal computation initialization. */
343  bool
344  initCompute();
345 
346  /** \brief Internal computation initialization for reciprocal correspondences. */
347  bool
349 
350  /** \brief Variable that stores whether we have a new target cloud, meaning we need to
351  * pre-process it again. This way, we avoid rebuilding the kd-tree for the target
352  * cloud every time the determineCorrespondences () method is called. */
354  /** \brief Variable that stores whether we have a new source cloud, meaning we need to
355  * pre-process it again. This way, we avoid rebuilding the reciprocal kd-tree for the
356  * source cloud every time the determineCorrespondences () method is called. */
358  /** \brief A flag which, if set, means the tree operating on the target cloud
359  * will never be recomputed*/
360  bool force_no_recompute_{false};
361 
362  /** \brief A flag which, if set, means the tree operating on the source cloud
363  * will never be recomputed*/
365 };
366 
367 /** \brief @b CorrespondenceEstimation represents the base class for
368  * determining correspondences between target and query point
369  * sets/features.
370  *
371  * Code example:
372  *
373  * \code
374  * pcl::PointCloud<pcl::PointXYZRGBA>::Ptr source, target;
375  * // ... read or fill in source and target
376  * pcl::CorrespondenceEstimation<pcl::PointXYZ, pcl::PointXYZ> est;
377  * est.setInputSource (source);
378  * est.setInputTarget (target);
379  *
380  * pcl::Correspondences all_correspondences;
381  * // Determine all reciprocal correspondences
382  * est.determineReciprocalCorrespondences (all_correspondences);
383  * \endcode
384  *
385  * \author Radu B. Rusu, Michael Dixon, Dirk Holz
386  * \ingroup registration
387  */
388 template <typename PointSource, typename PointTarget, typename Scalar = float>
390 : public CorrespondenceEstimationBase<PointSource, PointTarget, Scalar> {
391 public:
392  using Ptr = shared_ptr<CorrespondenceEstimation<PointSource, PointTarget, Scalar>>;
393  using ConstPtr =
394  shared_ptr<const CorrespondenceEstimation<PointSource, PointTarget, Scalar>>;
395 
414 
415  using KdTree =
417  using KdTreePtr = typename CorrespondenceEstimationBase<PointSource,
418  PointTarget,
419  Scalar>::KdTreePtr;
420  using KdTreeConstPtr = typename CorrespondenceEstimationBase<PointSource,
421  PointTarget,
422  Scalar>::KdTreeConstPtr;
429 
433 
437 
441 
444  typename KdTreeReciprocal::PointRepresentationConstPtr;
445 
446  /** \brief Empty constructor. */
447  CorrespondenceEstimation() { corr_name_ = "CorrespondenceEstimation"; }
448 
449  /** \brief Empty destructor */
450  ~CorrespondenceEstimation() override = default;
451 
452  /** \brief Determine the correspondences between input and target cloud.
453  * \param[out] correspondences the found correspondences (index of query point, index
454  * of target point, distance) \param[in] max_distance maximum allowed distance between
455  * correspondences
456  */
457  void
459  pcl::Correspondences& correspondences,
460  double max_distance = std::numeric_limits<double>::max()) override;
461 
462  /** \brief Determine the reciprocal correspondences between input and target cloud.
463  * A correspondence is considered reciprocal if both Src_i has Tgt_i as a
464  * correspondence, and Tgt_i has Src_i as one.
465  *
466  * \param[out] correspondences the found correspondences (index of query and target
467  * point, distance) \param[in] max_distance maximum allowed distance between
468  * correspondences
469  */
470  void
472  pcl::Correspondences& correspondences,
473  double max_distance = std::numeric_limits<double>::max()) override;
474 
475  /** \brief Clone and cast to CorrespondenceEstimationBase */
477  clone() const override
478  {
480  return (copy);
481  }
482 };
483 } // namespace registration
484 } // namespace pcl
485 
486 #include <pcl/registration/impl/correspondence_estimation.hpp>
typename PointRepresentation::ConstPtr PointRepresentationConstPtr
Definition: kdtree.h:66
PCL base class.
Definition: pcl_base.h:70
PointCloudConstPtr input_
The input point cloud dataset.
Definition: pcl_base.h:147
virtual void setInputCloud(const PointCloudConstPtr &cloud)
Provide a pointer to the input dataset.
Definition: pcl_base.hpp:65
IndicesPtr indices_
A pointer to the vector of point indices to use.
Definition: pcl_base.h:150
virtual void setIndices(const IndicesPtr &indices)
Provide a pointer to the vector of indices that represents the input data.
Definition: pcl_base.hpp:72
shared_ptr< PointCloud< PointSource > > Ptr
Definition: point_cloud.h:413
shared_ptr< const PointCloud< PointSource > > ConstPtr
Definition: point_cloud.h:414
Abstract CorrespondenceEstimationBase class.
void setPointRepresentationReciprocal(const PointRepresentationReciprocalConstPtr &point_representation_reciprocal)
Provide a boost shared pointer to the PointRepresentation for source cloud to be used when searching ...
typename KdTree::PointRepresentationConstPtr PointRepresentationConstPtr
PointCloudTargetPtr input_transformed_
The transformed input source point cloud dataset.
void setSearchMethodSource(const KdTreeReciprocalPtr &tree, bool force_no_recompute=false)
Provide a pointer to the search object used to find correspondences in the source cloud (usually used...
PointCloudTargetConstPtr target_
The input point cloud dataset target.
PointCloudTargetConstPtr const getInputTarget()
Get a pointer to the input point cloud dataset target.
shared_ptr< const CorrespondenceEstimationBase< PointSource, PointTarget, Scalar > > ConstPtr
bool initCompute()
Internal computation initialization.
virtual void determineReciprocalCorrespondences(pcl::Correspondences &correspondences, double max_distance=std::numeric_limits< double >::max())=0
Determine the reciprocal correspondences between input and target cloud.
IndicesPtr const getIndicesTarget()
Get a pointer to the vector of indices used for the target dataset.
const std::string & getClassName() const
Abstract class get name method.
void setPointRepresentation(const PointRepresentationConstPtr &point_representation)
Provide a boost shared pointer to the PointRepresentation for target cloud to be used when searching ...
bool source_cloud_updated_
Variable that stores whether we have a new source cloud, meaning we need to pre-process it again.
void setSearchMethodTarget(const KdTreePtr &tree, bool force_no_recompute=false)
Provide a pointer to the search object used to find correspondences in the target cloud.
virtual void setSourceNormals(pcl::PCLPointCloud2::ConstPtr)
Abstract method for setting the source normals.
typename PointCloudTarget::ConstPtr PointCloudTargetConstPtr
PointRepresentationReciprocalConstPtr point_representation_reciprocal_
The source point representation used (internal).
typename KdTreeReciprocal::PointRepresentationConstPtr PointRepresentationReciprocalConstPtr
KdTreeReciprocalPtr getSearchMethodSource() const
Get a pointer to the search method used to find correspondences in the source cloud.
PointRepresentationConstPtr point_representation_
The target point representation used (internal).
IndicesPtr const getIndicesSource()
Get a pointer to the vector of indices used for the source dataset.
void setInputSource(const PointCloudSourceConstPtr &cloud)
Provide a pointer to the input source (e.g., the point cloud that we want to align to the target)
virtual bool requiresTargetNormals() const
See if this rejector requires target normals.
std::vector< pcl::PCLPointField > input_fields_
The types of input point fields available.
virtual bool requiresSourceNormals() const
See if this rejector requires source normals.
std::string corr_name_
The correspondence estimation method name.
void setInputTarget(const PointCloudTargetConstPtr &cloud)
Provide a pointer to the input target (e.g., the point cloud that we want to align the input source t...
virtual CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::Ptr clone() const =0
Clone and cast to CorrespondenceEstimationBase.
bool target_cloud_updated_
Variable that stores whether we have a new target cloud, meaning we need to pre-process it again.
void setIndicesSource(const IndicesPtr &indices)
Provide a pointer to the vector of indices that represent the input source point cloud.
KdTreePtr tree_
A pointer to the spatial search object used for the target dataset.
PointCloudSourceConstPtr const getInputSource()
Get a pointer to the input point cloud dataset target.
KdTreeReciprocalPtr tree_reciprocal_
A pointer to the spatial search object used for the source dataset.
virtual void setTargetNormals(pcl::PCLPointCloud2::ConstPtr)
Abstract method for setting the target normals.
typename KdTreeReciprocal::ConstPtr KdTreeReciprocalConstPtr
virtual void determineCorrespondences(pcl::Correspondences &correspondences, double max_distance=std::numeric_limits< double >::max())=0
Determine the correspondences between input and target cloud.
~CorrespondenceEstimationBase() override=default
Empty destructor.
bool initComputeReciprocal()
Internal computation initialization for reciprocal correspondences.
bool force_no_recompute_reciprocal_
A flag which, if set, means the tree operating on the source cloud will never be recomputed.
IndicesPtr target_indices_
The target point cloud dataset indices.
void setIndicesTarget(const IndicesPtr &indices)
Provide a pointer to the vector of indices that represent the input target point cloud.
typename PointCloudSource::ConstPtr PointCloudSourceConstPtr
shared_ptr< CorrespondenceEstimationBase< PointSource, PointTarget, Scalar > > Ptr
bool force_no_recompute_
A flag which, if set, means the tree operating on the target cloud will never be recomputed.
KdTreePtr getSearchMethodTarget() const
Get a pointer to the search method used to find correspondences in the target cloud.
CorrespondenceEstimation represents the base class for determining correspondences between target and...
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTreeReciprocalPtr KdTreeReciprocalPtr
void determineCorrespondences(pcl::Correspondences &correspondences, double max_distance=std::numeric_limits< double >::max()) override
Determine the correspondences between input and target cloud.
typename KdTreeReciprocal::PointRepresentationConstPtr PointRepresentationReciprocalConstPtr
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTreeReciprocalConstPtr KdTreeReciprocalConstPtr
CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::Ptr clone() const override
Clone and cast to CorrespondenceEstimationBase.
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTree KdTree
typename PointCloudSource::ConstPtr PointCloudSourceConstPtr
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTreeConstPtr KdTreeConstPtr
shared_ptr< CorrespondenceEstimation< PointSource, PointTarget, Scalar > > Ptr
void determineReciprocalCorrespondences(pcl::Correspondences &correspondences, double max_distance=std::numeric_limits< double >::max()) override
Determine the reciprocal correspondences between input and target cloud.
shared_ptr< const CorrespondenceEstimation< PointSource, PointTarget, Scalar > > ConstPtr
typename KdTree::PointRepresentationConstPtr PointRepresentationConstPtr
~CorrespondenceEstimation() override=default
Empty destructor.
typename PointCloudTarget::ConstPtr PointCloudTargetConstPtr
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTreePtr KdTreePtr
typename CorrespondenceEstimationBase< PointSource, PointTarget, Scalar >::KdTreeReciprocal KdTreeReciprocal
search::KdTree is a wrapper class which inherits the pcl::KdTree class for performing search function...
Definition: kdtree.h:62
shared_ptr< KdTree< PointT, Tree > > Ptr
Definition: kdtree.h:75
shared_ptr< const KdTree< PointT, Tree > > ConstPtr
Definition: kdtree.h:76
typename PointRepresentation< PointT >::ConstPtr PointRepresentationConstPtr
Definition: kdtree.h:80
Defines functions, macros and traits for allocating and using memory.
std::vector< pcl::Correspondence, Eigen::aligned_allocator< pcl::Correspondence > > Correspondences
shared_ptr< Indices > IndicesPtr
Definition: pcl_base.h:58
Defines all the PCL and non-PCL macros used.
shared_ptr< const ::pcl::PCLPointCloud2 > ConstPtr