Point Cloud Library (PCL)
1.15.1
Toggle main menu visibility
Loading...
Searching...
No Matches
pcl
registration
pairwise_graph_registration.h
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Point Cloud Library (PCL) - www.pointclouds.org
5
* Copyright (c) 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/graph_registration.h>
44
#include <pcl/registration/registration.h>
45
46
namespace
pcl
{
47
/** \brief @b PairwiseGraphRegistration class aligns the clouds two by two
48
* \author Nicola Fioraio
49
* \ingroup registration
50
*/
51
template
<
typename
GraphT,
typename
Po
int
T>
52
class
PairwiseGraphRegistration
:
public
GraphRegistration
<GraphT> {
53
public
:
54
using
GraphRegistration
<GraphT>
::graph_handler_
;
55
using
GraphRegistration
<GraphT>
::last_aligned_vertex_
;
56
using
GraphRegistration
<GraphT>
::last_vertices_
;
57
58
using
RegistrationPtr
=
typename
Registration<PointT, PointT>::Ptr
;
59
using
GraphHandlerVertex
=
typename
pcl::registration::GraphHandler<GraphT>::Vertex
;
60
61
/** \brief Empty constructor */
62
PairwiseGraphRegistration
() :
registration_method_
(),
incremental_
(true) {}
63
/** \brief Constructor */
64
PairwiseGraphRegistration
(
const
RegistrationPtr
& reg,
bool
incremental)
65
:
registration_method_
(reg),
incremental_
(incremental)
66
{}
67
68
/** \brief Set the registration object */
69
inline
void
70
setRegistrationMethod
(
const
RegistrationPtr
& reg)
71
{
72
registration_method_
= reg;
73
}
74
75
/** \brief Get the registration object */
76
inline
RegistrationPtr
77
getRegistrationMethod
()
78
{
79
return
registration_method_
;
80
}
81
82
/** \brief If True the initial transformation is always set to the Identity */
83
inline
void
84
setIncremental
(
bool
incremental)
85
{
86
incremental_
= incremental;
87
}
88
89
/** \brief Is incremental ? */
90
inline
bool
91
isIncremental
()
const
92
{
93
return
incremental_
;
94
}
95
96
protected
:
97
/** \brief The registration object */
98
RegistrationPtr
registration_method_
;
99
/** \brief If True the initial transformation is always set to the Identity */
100
bool
incremental_
;
101
102
private
:
103
/** \brief The registration method */
104
virtual
void
105
computeRegistration();
106
};
107
}
// namespace pcl
108
109
#include <pcl/registration/impl/pairwise_graph_registration.hpp>
pcl::GraphRegistration::last_vertices_
std::vector< GraphHandlerVertex > last_vertices_
The vertices added to the graph since the last call to compute.
Definition
graph_registration.h:118
pcl::GraphRegistration::GraphRegistration
GraphRegistration()
Empty constructor.
Definition
graph_registration.h:60
pcl::GraphRegistration::last_aligned_vertex_
GraphHandlerVertex last_aligned_vertex_
The last estimated pose.
Definition
graph_registration.h:116
pcl::GraphRegistration::graph_handler_
GraphHandlerPtr graph_handler_
The graph handler.
Definition
graph_registration.h:114
pcl::PairwiseGraphRegistration::isIncremental
bool isIncremental() const
Is incremental ?
Definition
pairwise_graph_registration.h:91
pcl::PairwiseGraphRegistration::getRegistrationMethod
RegistrationPtr getRegistrationMethod()
Get the registration object.
Definition
pairwise_graph_registration.h:77
pcl::PairwiseGraphRegistration::PairwiseGraphRegistration
PairwiseGraphRegistration()
Empty constructor.
Definition
pairwise_graph_registration.h:62
pcl::PairwiseGraphRegistration::incremental_
bool incremental_
If True the initial transformation is always set to the Identity.
Definition
pairwise_graph_registration.h:100
pcl::PairwiseGraphRegistration::GraphHandlerVertex
typename pcl::registration::GraphHandler< GraphT >::Vertex GraphHandlerVertex
Definition
pairwise_graph_registration.h:59
pcl::PairwiseGraphRegistration::PairwiseGraphRegistration
PairwiseGraphRegistration(const RegistrationPtr ®, bool incremental)
Constructor.
Definition
pairwise_graph_registration.h:64
pcl::PairwiseGraphRegistration::RegistrationPtr
typename Registration< PointT, PointT >::Ptr RegistrationPtr
Definition
pairwise_graph_registration.h:58
pcl::PairwiseGraphRegistration::setRegistrationMethod
void setRegistrationMethod(const RegistrationPtr ®)
Set the registration object.
Definition
pairwise_graph_registration.h:70
pcl::PairwiseGraphRegistration::registration_method_
RegistrationPtr registration_method_
The registration object.
Definition
pairwise_graph_registration.h:98
pcl::PairwiseGraphRegistration::setIncremental
void setIncremental(bool incremental)
If True the initial transformation is always set to the Identity.
Definition
pairwise_graph_registration.h:84
pcl::Registration::Ptr
shared_ptr< Registration< PointSource, PointTarget, Scalar > > Ptr
Definition
registration.h:66
pcl::registration::GraphHandler::Vertex
typename boost::graph_traits< GraphT >::vertex_descriptor Vertex
Definition
graph_handler.h:92
pcl
Definition
convolution.h:46