Point Cloud Library (PCL) 1.15.1-dev
Loading...
Searching...
No Matches
transformation_validation_euclidean.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/registration/transformation_validation.h>
44#include <pcl/search/kdtree.h>
45#include <pcl/memory.h>
46#include <pcl/pcl_macros.h>
47#include <pcl/point_representation.h>
48
49namespace pcl {
50namespace registration {
51/** \brief TransformationValidationEuclidean computes an L2SQR norm between a source and
52 * target dataset.
53 *
54 * To prevent points with bad correspondences to contribute to the overall score, the
55 * class also accepts a maximum_range parameter given via \ref setMaxRange that is used
56 * as a cutoff value for nearest neighbor distance comparisons.
57 *
58 * The output score is normalized with respect to the number of valid correspondences
59 * found.
60 *
61 * Usage example:
62 * \code
63 * pcl::TransformationValidationEuclidean<pcl::PointXYZ, pcl::PointXYZ> tve;
64 * tve.setMaxRange (0.01); // 1cm
65 * double score = tve.validateTransformation (source, target, transformation);
66 * \endcode
67 *
68 * \note The class is templated on the source and target point types as well as on the
69 * output scalar of the transformation matrix (i.e., float or double). Default: float.
70 * \author Radu B. Rusu
71 * \ingroup registration
72 */
73template <typename PointSource, typename PointTarget, typename Scalar = float>
75public:
76 using Matrix4 =
78
79 using Ptr = shared_ptr<TransformationValidation<PointSource, PointTarget, Scalar>>;
80 using ConstPtr =
81 shared_ptr<const TransformationValidation<PointSource, PointTarget, Scalar>>;
82
84 using KdTreePtr = typename KdTree::Ptr;
85
87
89 typename TransformationValidation<PointSource,
92 typename TransformationValidation<PointSource,
94
95 /** \brief Constructor.
96 * Sets the \a max_range parameter to double::max, \a threshold_ to NaN
97 * and initializes the internal search \a tree to a FLANN kd-tree.
98 */
100 : max_range_(std::numeric_limits<double>::max())
101 , threshold_(std::numeric_limits<double>::quiet_NaN())
102 , tree_(new pcl::search::KdTree<PointTarget>)
103 {}
104
106
107 /** \brief Set the maximum allowable distance between a point and its correspondence
108 * in the target in order for a correspondence to be considered \a valid. Default:
109 * double::max. \param[in] max_range the new maximum allowable distance
110 */
111 inline void
112 setMaxRange(double max_range)
113 {
114 max_range_ = max_range;
115 }
116
117 /** \brief Get the maximum allowable distance between a point and its
118 * correspondence, as set by the user.
119 */
120 inline double
122 {
123 return (max_range_);
124 }
125
126 /** \brief Provide a pointer to the search object used to find correspondences in
127 * the target cloud.
128 * \param[in] tree a pointer to the spatial search object.
129 * \param[in] force_no_recompute If set to true, this tree will NEVER be
130 * recomputed, regardless of calls to setInputTarget. Only use if you are
131 * confident that the tree will be set correctly.
132 */
133 inline void
134 setSearchMethodTarget(const KdTreePtr& tree, bool force_no_recompute = false)
135 {
136 tree_ = tree;
137 force_no_recompute_ = force_no_recompute;
138 }
139
140 /** \brief Set a threshold for which a specific transformation is considered valid.
141 *
142 * \note Since we're using MSE (Mean Squared Error) as a metric, the threshold
143 * represents the mean Euclidean distance threshold over all nearest neighbors
144 * up to max_range.
145 *
146 * \param[in] threshold the threshold for which a transformation is vali
147 */
148 inline void
149 setThreshold(double threshold)
150 {
151 threshold_ = threshold;
152 }
153
154 /** \brief Get the threshold for which a specific transformation is valid. */
155 inline double
157 {
158 return (threshold_);
159 }
160
161 /** \brief Validate the given transformation with respect to the input cloud data, and
162 * return a score.
163 *
164 * \param[in] cloud_src the source point cloud dataset
165 * \param[in] cloud_tgt the target point cloud dataset
166 * \param[out] transformation_matrix the resultant transformation matrix
167 *
168 * \return the score or confidence measure for the given
169 * transformation_matrix with respect to the input data
170 */
171 double
173 const PointCloudTargetConstPtr& cloud_tgt,
174 const Matrix4& transformation_matrix) const;
175
176 /** \brief Comparator function for deciding which score is better after running the
177 * validation on multiple transforms.
178 *
179 * \param[in] score1 the first value
180 * \param[in] score2 the second value
181 *
182 * \return true if score1 is better than score2
183 */
184 virtual bool
185 operator()(const double& score1, const double& score2) const
186 {
187 return (score1 < score2);
188 }
189
190 /** \brief Check if the score is valid for a specific transformation.
191 *
192 * \param[in] cloud_src the source point cloud dataset
193 * \param[in] cloud_tgt the target point cloud dataset
194 * \param[out] transformation_matrix the transformation matrix
195 *
196 * \return true if the transformation is valid, false otherwise.
197 */
198 virtual bool
200 const PointCloudTargetConstPtr& cloud_tgt,
201 const Matrix4& transformation_matrix) const
202 {
203 if (std::isnan(threshold_)) {
204 PCL_ERROR("[pcl::TransformationValidationEuclidean::isValid] Threshold not set! "
205 "Please use setThreshold () before continuing.\n");
206 return (false);
207 }
208
209 return (validateTransformation(cloud_src, cloud_tgt, transformation_matrix) <
210 threshold_);
211 }
212
213protected:
214 /** \brief The maximum allowable distance between a point and its correspondence in
215 * the target in order for a correspondence to be considered \a valid. Default:
216 * double::max.
217 */
219
220 /** \brief The threshold for which a specific transformation is valid.
221 * Set to NaN by default, as we must require the user to set it.
222 */
224
225 /** \brief A pointer to the spatial search object. */
227
228 /** \brief A flag which, if set, means the tree operating on the target cloud
229 * will never be recomputed*/
231
232 /** \brief Internal point representation uses only 3D coordinates for L2 */
235 using pcl::PointRepresentation<PointTarget>::trivial_;
236
237 public:
238 using Ptr = shared_ptr<MyPointRepresentation>;
239 using ConstPtr = shared_ptr<const MyPointRepresentation>;
240
242 {
243 nr_dimensions_ = 3;
244 trivial_ = true;
245 }
246
247 /** \brief Empty destructor */
248 virtual ~MyPointRepresentation() = default;
249
250 virtual void
251 copyToFloatArray(const PointTarget& p, float* out) const
252 {
253 out[0] = p.x;
254 out[1] = p.y;
255 out[2] = p.z;
256 }
257 };
258
259public:
261};
262} // namespace registration
263} // namespace pcl
264
265#include <pcl/registration/impl/transformation_validation_euclidean.hpp>
PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensi...
int nr_dimensions_
The number of dimensions in this point's vector (i.e.
bool trivial_
Indicates whether this point representation is trivial.
virtual void copyToFloatArray(const PointTarget &p, float *out) const
Copy point data from input point to a float array.
TransformationValidationEuclidean computes an L2SQR norm between a source and target dataset.
void setThreshold(double threshold)
Set a threshold for which a specific transformation is considered valid.
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 bool operator()(const double &score1, const double &score2) const
Comparator function for deciding which score is better after running the validation on multiple trans...
bool force_no_recompute_
A flag which, if set, means the tree operating on the target cloud will never be recomputed.
shared_ptr< const TransformationValidation< PointSource, PointTarget, Scalar > > ConstPtr
double max_range_
The maximum allowable distance between a point and its correspondence in the target in order for a co...
double threshold_
The threshold for which a specific transformation is valid.
typename TransformationValidation< PointSource, PointTarget, Scalar >::Matrix4 Matrix4
typename TransformationValidation< PointSource, PointTarget >::PointCloudTargetConstPtr PointCloudTargetConstPtr
double validateTransformation(const PointCloudSourceConstPtr &cloud_src, const PointCloudTargetConstPtr &cloud_tgt, const Matrix4 &transformation_matrix) const
Validate the given transformation with respect to the input cloud data, and return a score.
void setMaxRange(double max_range)
Set the maximum allowable distance between a point and its correspondence in the target in order for ...
double getMaxRange()
Get the maximum allowable distance between a point and its correspondence, as set by the user.
typename TransformationValidation< PointSource, PointTarget >::PointCloudSourceConstPtr PointCloudSourceConstPtr
double getThreshold()
Get the threshold for which a specific transformation is valid.
shared_ptr< TransformationValidation< PointSource, PointTarget, Scalar > > Ptr
virtual bool isValid(const PointCloudSourceConstPtr &cloud_src, const PointCloudTargetConstPtr &cloud_tgt, const Matrix4 &transformation_matrix) const
Check if the score is valid for a specific transformation.
typename KdTree::PointRepresentationConstPtr PointRepresentationConstPtr
TransformationValidation represents the base class for methods that validate the correctness of a tra...
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
typename PointRepresentation< PointT >::ConstPtr PointRepresentationConstPtr
Definition kdtree.h:80
#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.
Defines all the PCL and non-PCL macros used.