Point Cloud Library (PCL)
1.10.0
pcl
registration
warp_point_rigid_3d.h
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Point Cloud Library (PCL) - www.pointclouds.org
5
* Copyright (c) 2010, 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/eigen.h>
44
#include <pcl/registration/warp_point_rigid.h>
45
46
namespace
pcl
47
{
48
namespace
registration
49
{
50
/** \brief @b WarpPointRigid3D enables 3D (1D rotation + 2D translation)
51
* transformations for points.
52
*
53
* \note The class is templated on the source and target point types as well as on the output scalar of the transformation matrix (i.e., float or double). Default: float.
54
* \author Radu B. Rusu
55
* \ingroup registration
56
*/
57
template
<
typename
Po
int
SourceT,
typename
Po
int
TargetT,
typename
Scalar =
float
>
58
class
WarpPointRigid3D
:
public
WarpPointRigid
<PointSourceT, PointTargetT, Scalar>
59
{
60
public
:
61
using
Matrix4
=
typename
WarpPointRigid<PointSourceT, PointTargetT, Scalar>::Matrix4
;
62
using
VectorX
=
typename
WarpPointRigid<PointSourceT, PointTargetT, Scalar>::VectorX
;
63
64
using
Ptr
=
shared_ptr<WarpPointRigid3D<PointSourceT, PointTargetT, Scalar>
>;
65
using
ConstPtr
=
shared_ptr<const WarpPointRigid3D<PointSourceT, PointTargetT, Scalar>
>;
66
67
/** \brief Constructor. */
68
WarpPointRigid3D
() :
WarpPointRigid
<PointSourceT, PointTargetT, Scalar> (3) {}
69
70
/** \brief Empty destructor */
71
~WarpPointRigid3D
() {}
72
73
/** \brief Set warp parameters.
74
* \param[in] p warp parameters (tx ty rz)
75
*/
76
void
77
setParam
(
const
VectorX
& p)
override
78
{
79
assert (p.rows () == this->
getDimension
());
80
Matrix4
&trans = this->
transform_matrix_
;
81
82
trans = Matrix4::Zero ();
83
trans (3, 3) = 1;
84
trans (2, 2) = 1;
// Rotation around the Z-axis
85
86
// Copy the rotation and translation components
87
trans.block (0, 3, 4, 1) = Eigen::Matrix<Scalar, 4, 1> (p[0], p[1], 0, 1.0);
88
89
// Compute w from the unit quaternion
90
Eigen::Rotation2D<Scalar> r (p[2]);
91
trans.topLeftCorner (2, 2) = r.toRotationMatrix ();
92
}
93
};
94
}
95
}
pcl::registration::WarpPointRigid::ConstPtr
shared_ptr< const WarpPointRigid< PointSourceT, PointTargetT, Scalar > > ConstPtr
Definition:
warp_point_rigid.h:65
pcl::registration::WarpPointRigid::transform_matrix_
Matrix4 transform_matrix_
Definition:
warp_point_rigid.h:128
pcl
This file defines compatibility wrappers for low level I/O functions.
Definition:
convolution.h:45
pcl::registration::WarpPointRigid3D::WarpPointRigid3D
WarpPointRigid3D()
Constructor.
Definition:
warp_point_rigid_3d.h:68
pcl::registration::WarpPointRigid3D::setParam
void setParam(const VectorX &p) override
Set warp parameters.
Definition:
warp_point_rigid_3d.h:77
pcl::registration::WarpPointRigid::Matrix4
Eigen::Matrix< Scalar, 4, 4 > Matrix4
Definition:
warp_point_rigid.h:60
pcl::registration::WarpPointRigid
Base warp point class.
Definition:
warp_point_rigid.h:57
pcl::registration::WarpPointRigid3D::~WarpPointRigid3D
~WarpPointRigid3D()
Empty destructor.
Definition:
warp_point_rigid_3d.h:71
pcl::registration::WarpPointRigid::VectorX
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > VectorX
Definition:
warp_point_rigid.h:61
pcl::registration::WarpPointRigid::getDimension
int getDimension() const
Get the number of dimensions.
Definition:
warp_point_rigid.h:117
pcl::registration::WarpPointRigid3D
WarpPointRigid3D enables 3D (1D rotation + 2D translation) transformations for points.
Definition:
warp_point_rigid_3d.h:58
pcl::shared_ptr
boost::shared_ptr< T > shared_ptr
Alias for boost::shared_ptr.
Definition:
pcl_macros.h:90
pcl::registration::WarpPointRigid::Ptr
shared_ptr< WarpPointRigid< PointSourceT, PointTargetT, Scalar > > Ptr
Definition:
warp_point_rigid.h:64