Point Cloud Library (PCL)
1.15.1
Toggle main menu visibility
Loading...
Searching...
No Matches
pcl
registration
transformation_estimation_dual_quaternion.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
*
38
*/
39
40
#pragma once
41
42
#include <pcl/registration/transformation_estimation.h>
43
#include <pcl/cloud_iterator.h>
44
45
namespace
pcl
{
46
namespace
registration
{
47
/** @b TransformationEstimationDualQuaternion implements dual quaternion based
48
* estimation of the transformation aligning the given correspondences.
49
*
50
* \note The class is templated on the source and target point types as well as on the
51
* output scalar of the transformation matrix (i.e., float or double). Default: float.
52
* \author Sergey Zagoruyko
53
* \ingroup registration
54
*/
55
template
<
typename
Po
int
Source,
typename
Po
int
Target,
typename
Scalar =
float
>
56
class
TransformationEstimationDualQuaternion
57
:
public
TransformationEstimation
<PointSource, PointTarget, Scalar> {
58
public
:
59
using
Ptr
= shared_ptr<
60
TransformationEstimationDualQuaternion<PointSource, PointTarget, Scalar>
>;
61
using
ConstPtr
= shared_ptr<
62
const
TransformationEstimationDualQuaternion<PointSource, PointTarget, Scalar>
>;
63
64
using
Matrix4
=
65
typename
TransformationEstimation<PointSource, PointTarget, Scalar>::Matrix4
;
66
67
TransformationEstimationDualQuaternion
() =
default
;
68
~TransformationEstimationDualQuaternion
()
override
=
default
;
69
70
/** \brief Estimate a rigid rotation transformation between a source and a target
71
* point cloud using dual quaternion optimization \param[in] cloud_src the source
72
* point cloud dataset \param[in] cloud_tgt the target point cloud dataset \param[out]
73
* transformation_matrix the resultant transformation matrix
74
*/
75
inline
void
76
estimateRigidTransformation
(
const
pcl::PointCloud<PointSource>
& cloud_src,
77
const
pcl::PointCloud<PointTarget>
& cloud_tgt,
78
Matrix4
& transformation_matrix)
const override
;
79
80
/** \brief Estimate a rigid rotation transformation between a source and a target
81
* point cloud using dual quaternion optimization \param[in] cloud_src the source
82
* point cloud dataset \param[in] indices_src the vector of indices describing the
83
* points of interest in \a cloud_src
84
* \param[in] cloud_tgt the target point cloud dataset
85
* \param[out] transformation_matrix the resultant transformation matrix
86
*/
87
inline
void
88
estimateRigidTransformation
(
const
pcl::PointCloud<PointSource>
& cloud_src,
89
const
pcl::Indices
& indices_src,
90
const
pcl::PointCloud<PointTarget>
& cloud_tgt,
91
Matrix4
& transformation_matrix)
const override
;
92
93
/** \brief Estimate a rigid rotation transformation between a source and a target
94
* point cloud using dual quaternion optimization \param[in] cloud_src the source
95
* point cloud dataset \param[in] indices_src the vector of indices describing the
96
* points of interest in \a cloud_src
97
* \param[in] cloud_tgt the target point cloud dataset
98
* \param[in] indices_tgt the vector of indices describing the correspondences of the
99
* interest points from \a indices_src
100
* \param[out] transformation_matrix the resultant transformation matrix
101
*/
102
inline
void
103
estimateRigidTransformation
(
const
pcl::PointCloud<PointSource>
& cloud_src,
104
const
pcl::Indices
& indices_src,
105
const
pcl::PointCloud<PointTarget>
& cloud_tgt,
106
const
pcl::Indices
& indices_tgt,
107
Matrix4
& transformation_matrix)
const override
;
108
109
/** \brief Estimate a rigid rotation transformation between a source and a target
110
* point cloud using dual quaternion optimization \param[in] cloud_src the source
111
* point cloud dataset \param[in] cloud_tgt the target point cloud dataset \param[in]
112
* correspondences the vector of correspondences between source and target point cloud
113
* \param[out] transformation_matrix the resultant transformation matrix
114
*/
115
void
116
estimateRigidTransformation
(
const
pcl::PointCloud<PointSource>
& cloud_src,
117
const
pcl::PointCloud<PointTarget>
& cloud_tgt,
118
const
pcl::Correspondences
& correspondences,
119
Matrix4
& transformation_matrix)
const override
;
120
121
protected
:
122
/** \brief Estimate a rigid rotation transformation between a source and a target
123
* \param[in] source_it an iterator over the source point cloud dataset
124
* \param[in] target_it an iterator over the target point cloud dataset
125
* \param[out] transformation_matrix the resultant transformation matrix
126
*/
127
void
128
estimateRigidTransformation
(
ConstCloudIterator<PointSource>
& source_it,
129
ConstCloudIterator<PointTarget>
& target_it,
130
Matrix4
& transformation_matrix)
const
;
131
};
132
133
}
// namespace registration
134
}
// namespace pcl
135
136
#include <pcl/registration/impl/transformation_estimation_dual_quaternion.hpp>
pcl::ConstCloudIterator
Iterator class for point clouds with or without given indices.
Definition
cloud_iterator.h:121
pcl::PointCloud
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition
point_cloud.h:174
pcl::registration::TransformationEstimationDualQuaternion::TransformationEstimationDualQuaternion
TransformationEstimationDualQuaternion()=default
pcl::registration::TransformationEstimationDualQuaternion::estimateRigidTransformation
void estimateRigidTransformation(const pcl::PointCloud< PointSource > &cloud_src, const pcl::PointCloud< PointTarget > &cloud_tgt, Matrix4 &transformation_matrix) const override
Estimate a rigid rotation transformation between a source and a target point cloud using dual quatern...
Definition
transformation_estimation_dual_quaternion.hpp:54
pcl::registration::TransformationEstimationDualQuaternion::Ptr
shared_ptr< TransformationEstimationDualQuaternion< PointSource, PointTarget, Scalar > > Ptr
Definition
transformation_estimation_dual_quaternion.h:59
pcl::registration::TransformationEstimationDualQuaternion::ConstPtr
shared_ptr< const TransformationEstimationDualQuaternion< PointSource, PointTarget, Scalar > > ConstPtr
Definition
transformation_estimation_dual_quaternion.h:61
pcl::registration::TransformationEstimationDualQuaternion::Matrix4
typename TransformationEstimation< PointSource, PointTarget, Scalar >::Matrix4 Matrix4
Definition
transformation_estimation_dual_quaternion.h:64
pcl::registration::TransformationEstimationDualQuaternion::~TransformationEstimationDualQuaternion
~TransformationEstimationDualQuaternion() override=default
pcl::registration::TransformationEstimation< PointSource, PointTarget, float >::TransformationEstimation
TransformationEstimation()=default
pcl::registration::TransformationEstimation::Matrix4
Eigen::Matrix< Scalar, 4, 4 > Matrix4
Definition
transformation_estimation.h:64
pcl::registration
Definition
convergence_criteria.h:46
pcl
Definition
convolution.h:46
pcl::Correspondences
std::vector< pcl::Correspondence, Eigen::aligned_allocator< pcl::Correspondence > > Correspondences
Definition
correspondence.h:89
pcl::Indices
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition
types.h:133