Point Cloud Library (PCL)
1.3.1
|
Registration represents the base registration class. More...
#include <pcl/registration/registration.h>
Public Types | |
typedef boost::shared_ptr < Registration< PointSource, PointTarget > > | Ptr |
typedef boost::shared_ptr < const Registration < PointSource, PointTarget > > | ConstPtr |
typedef pcl::KdTree< PointTarget > | KdTree |
typedef pcl::KdTree < PointTarget >::Ptr | KdTreePtr |
typedef pcl::PointCloud < PointSource > | PointCloudSource |
typedef PointCloudSource::Ptr | PointCloudSourcePtr |
typedef PointCloudSource::ConstPtr | PointCloudSourceConstPtr |
typedef pcl::PointCloud < PointTarget > | PointCloudTarget |
typedef PointCloudTarget::Ptr | PointCloudTargetPtr |
typedef PointCloudTarget::ConstPtr | PointCloudTargetConstPtr |
typedef KdTree::PointRepresentationConstPtr | PointRepresentationConstPtr |
typedef pcl::registration::TransformationEstimation < PointSource, PointTarget > | TransformationEstimation |
typedef TransformationEstimation::Ptr | TransformationEstimationPtr |
typedef TransformationEstimation::ConstPtr | TransformationEstimationConstPtr |
typedef pcl::PointCloud< PointT > | PointCloud |
typedef PointCloud::Ptr | PointCloudPtr |
typedef PointCloud::ConstPtr | PointCloudConstPtr |
typedef PointIndices::Ptr | PointIndicesPtr |
typedef PointIndices::ConstPtr | PointIndicesConstPtr |
Public Member Functions | |
Registration () | |
Empty constructor. | |
virtual | ~Registration () |
destructor. | |
void | setTransformationEstimation (const TransformationEstimationPtr &te) |
virtual 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 to) | |
PointCloudTargetConstPtr const | getInputTarget () |
Get a pointer to the input point cloud dataset target. | |
Eigen::Matrix4f | getFinalTransformation () |
Get the final transformation matrix estimated by the registration method. | |
Eigen::Matrix4f | getLastIncrementalTransformation () |
Get the last incremental transformation matrix estimated by the registration method. | |
void | setMaximumIterations (int nr_iterations) |
Set the maximum number of iterations the internal optimization should run for. | |
int | getMaximumIterations () |
Get the maximum number of iterations the internal optimization should run for, as set by the user. | |
void | setRANSACOutlierRejectionThreshold (double inlier_threshold) |
Set the inlier distance threshold for the internal RANSAC outlier rejection loop. | |
double | getRANSACOutlierRejectionThreshold () |
Get the inlier distance threshold for the internal outlier rejection loop as set by the user. | |
void | setMaxCorrespondenceDistance (double distance_threshold) |
Set the maximum distance threshold between two correspondent points in source <-> target. | |
double | getMaxCorrespondenceDistance () |
Get the maximum distance threshold between two correspondent points in source <-> target. | |
void | setTransformationEpsilon (double epsilon) |
Set the transformation epsilon (maximum allowable difference between two consecutive transformations) in order for an optimization to be considered as having converged to the final solution. | |
double | getTransformationEpsilon () |
Get the transformation epsilon (maximum allowable difference between two consecutive transformations) as set by the user. | |
void | setEuclideanFitnessEpsilon (double epsilon) |
Set the maximum allowed Euclidean error between two consecutive steps in the ICP loop, before the algorithm is considered to have converged. | |
double | getEuclideanFitnessEpsilon () |
Get the maximum allowed distance error before the algorithm will be considered to have converged, as set by the user. | |
void | setPointRepresentation (const PointRepresentationConstPtr &point_representation) |
Provide a boost shared pointer to the PointRepresentation to be used when comparing points. | |
template<typename FunctionSignature > | |
bool | registerVisualizationCallback (boost::function< FunctionSignature > &visualizerCallback) |
Register the user callback function which will be called from registration thread in order to update point cloud obtained after each iteration. | |
double | getFitnessScore (double max_range=std::numeric_limits< double >::max()) |
Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target) | |
double | getFitnessScore (const std::vector< float > &distances_a, const std::vector< float > &distances_b) |
Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target) from two sets of correspondence distances (distances between source and target points) | |
bool | hasConverged () |
Return the state of convergence after the last align run. | |
void | align (PointCloudSource &output) |
Call the registration algorithm which estimates the transformation and returns the transformed source (input) as output. | |
void | align (PointCloudSource &output, const Eigen::Matrix4f &guess) |
Call the registration algorithm which estimates the transformation and returns the transformed source (input) as output. | |
const std::string & | getClassName () const |
Abstract class get name method. | |
virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
Provide a pointer to the input dataset. | |
PointCloudConstPtr const | getInputCloud () |
Get a pointer to the input point cloud dataset. | |
void | setIndices (const IndicesPtr &indices) |
Provide a pointer to the vector of indices that represents the input data. | |
void | setIndices (const PointIndicesConstPtr &indices) |
Provide a pointer to the vector of indices that represents the input data. | |
void | setIndices (size_t row_start, size_t col_start, size_t nb_rows, size_t nb_cols) |
Set the indices for the points laying within an interest region of the point cloud. | |
IndicesPtr const | getIndices () |
Get a pointer to the vector of indices used. | |
const PointT & | operator[] (size_t pos) |
Override PointCloud operator[] to shorten code. |
Registration represents the base registration class.
All 3D registration methods should inherit from this class.
typedef boost::shared_ptr< const Registration<PointSource, PointTarget> > pcl::Registration::ConstPtr |
Definition at line 70 of file registration.h.
typedef pcl::KdTree<PointTarget> pcl::Registration::KdTree |
Definition at line 72 of file registration.h.
typedef pcl::KdTree<PointTarget>::Ptr pcl::Registration::KdTreePtr |
Definition at line 73 of file registration.h.
typedef pcl::PointCloud<PointT> pcl::PCLBase::PointCloud [inherited] |
Definition at line 74 of file pcl_base.h.
typedef PointCloud::ConstPtr pcl::PCLBase::PointCloudConstPtr [inherited] |
Definition at line 76 of file pcl_base.h.
typedef PointCloud::Ptr pcl::PCLBase::PointCloudPtr [inherited] |
Definition at line 75 of file pcl_base.h.
typedef pcl::PointCloud<PointSource> pcl::Registration::PointCloudSource |
Reimplemented in pcl::PPFRegistration, and pcl::SampleConsensusInitialAlignment.
Definition at line 75 of file registration.h.
Reimplemented in pcl::PPFRegistration, and pcl::SampleConsensusInitialAlignment.
Definition at line 77 of file registration.h.
Reimplemented in pcl::PPFRegistration, and pcl::SampleConsensusInitialAlignment.
Definition at line 76 of file registration.h.
typedef pcl::PointCloud<PointTarget> pcl::Registration::PointCloudTarget |
Reimplemented in pcl::PPFRegistration, and pcl::SampleConsensusInitialAlignment.
Definition at line 79 of file registration.h.
Reimplemented in pcl::PPFRegistration.
Definition at line 81 of file registration.h.
Reimplemented in pcl::PPFRegistration.
Definition at line 80 of file registration.h.
typedef PointIndices::ConstPtr pcl::PCLBase::PointIndicesConstPtr [inherited] |
Definition at line 79 of file pcl_base.h.
typedef PointIndices::Ptr pcl::PCLBase::PointIndicesPtr [inherited] |
Definition at line 78 of file pcl_base.h.
Definition at line 83 of file registration.h.
typedef boost::shared_ptr< Registration<PointSource, PointTarget> > pcl::Registration::Ptr |
Definition at line 69 of file registration.h.
typedef pcl::registration::TransformationEstimation<PointSource, PointTarget> pcl::Registration::TransformationEstimation |
Definition at line 85 of file registration.h.
Definition at line 87 of file registration.h.
Definition at line 86 of file registration.h.
pcl::Registration::Registration | ( | ) | [inline] |
Empty constructor.
Definition at line 90 of file registration.h.
virtual pcl::Registration::~Registration | ( | ) | [inline, virtual] |
destructor.
Definition at line 109 of file registration.h.
void pcl::Registration::align | ( | PointCloudSource & | output | ) | [inline] |
Call the registration algorithm which estimates the transformation and returns the transformed source (input) as output.
output | the resultant input transfomed point cloud dataset |
Definition at line 113 of file registration.hpp.
void pcl::Registration::align | ( | PointCloudSource & | output, |
const Eigen::Matrix4f & | guess | ||
) | [inline] |
Call the registration algorithm which estimates the transformation and returns the transformed source (input) as output.
output | the resultant input transfomed point cloud dataset |
guess | the initial gross estimation of the transformation |
Definition at line 165 of file registration.hpp.
const std::string& pcl::Registration::getClassName | ( | ) | const [inline] |
Abstract class get name method.
Definition at line 263 of file registration.h.
double pcl::Registration::getEuclideanFitnessEpsilon | ( | ) | [inline] |
Get the maximum allowed distance error before the algorithm will be considered to have converged, as set by the user.
See setEuclideanFitnessEpsilon
Definition at line 200 of file registration.h.
Eigen::Matrix4f pcl::Registration::getFinalTransformation | ( | ) | [inline] |
Get the final transformation matrix estimated by the registration method.
Definition at line 126 of file registration.h.
double pcl::Registration::getFitnessScore | ( | double | max_range = std::numeric_limits<double>::max () | ) | [inline] |
Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target)
max_range | maximum allowable distance between a point and its correspondence in the target (default: double::max) |
Definition at line 72 of file registration.hpp.
double pcl::Registration::getFitnessScore | ( | const std::vector< float > & | distances_a, |
const std::vector< float > & | distances_b | ||
) | [inline] |
Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target) from two sets of correspondence distances (distances between source and target points)
[in] | distances_a | the first set of distances between correspondences |
[in] | distances_b | the second set of distances between correspondences |
Definition at line 61 of file registration.hpp.
IndicesPtr const pcl::PCLBase::getIndices | ( | ) | [inline, inherited] |
Get a pointer to the vector of indices used.
Definition at line 171 of file pcl_base.h.
PointCloudConstPtr const pcl::PCLBase::getInputCloud | ( | ) | [inline, inherited] |
Get a pointer to the input point cloud dataset.
Definition at line 99 of file pcl_base.h.
PointCloudTargetConstPtr const pcl::Registration::getInputTarget | ( | ) | [inline] |
Get a pointer to the input point cloud dataset target.
Definition at line 122 of file registration.h.
Eigen::Matrix4f pcl::Registration::getLastIncrementalTransformation | ( | ) | [inline] |
Get the last incremental transformation matrix estimated by the registration method.
Definition at line 130 of file registration.h.
double pcl::Registration::getMaxCorrespondenceDistance | ( | ) | [inline] |
Get the maximum distance threshold between two correspondent points in source <-> target.
If the distance is larger than this threshold, the points will be ignored in the alignment process.
Definition at line 168 of file registration.h.
int pcl::Registration::getMaximumIterations | ( | ) | [inline] |
Get the maximum number of iterations the internal optimization should run for, as set by the user.
Definition at line 140 of file registration.h.
double pcl::Registration::getRANSACOutlierRejectionThreshold | ( | ) | [inline] |
Get the inlier distance threshold for the internal outlier rejection loop as set by the user.
Definition at line 154 of file registration.h.
double pcl::Registration::getTransformationEpsilon | ( | ) | [inline] |
Get the transformation epsilon (maximum allowable difference between two consecutive transformations) as set by the user.
Definition at line 183 of file registration.h.
bool pcl::Registration::hasConverged | ( | ) | [inline] |
Return the state of convergence after the last align run.
Definition at line 244 of file registration.h.
const PointT& pcl::PCLBase::operator[] | ( | size_t | pos | ) | [inline, inherited] |
Override PointCloud operator[] to shorten code.
pos | position in indices_ vector |
Definition at line 178 of file pcl_base.h.
bool pcl::Registration::registerVisualizationCallback | ( | boost::function< FunctionSignature > & | visualizerCallback | ) | [inline] |
Register the user callback function which will be called from registration thread in order to update point cloud obtained after each iteration.
refference | of the user callback function |
Definition at line 216 of file registration.h.
void pcl::Registration::setEuclideanFitnessEpsilon | ( | double | epsilon | ) | [inline] |
Set the maximum allowed Euclidean error between two consecutive steps in the ICP loop, before the algorithm is considered to have converged.
The error is estimated as the sum of the differences between correspondences in an Euclidean sense, divided by the number of correspondences.
epsilon | the maximum allowed distance error before the algorithm will be considered to have converged |
Definition at line 194 of file registration.h.
void pcl::PCLBase::setIndices | ( | const IndicesPtr & | indices | ) | [inline, inherited] |
Provide a pointer to the vector of indices that represents the input data.
indices | a pointer to the vector of indices that represents the input data. |
Definition at line 105 of file pcl_base.h.
void pcl::PCLBase::setIndices | ( | const PointIndicesConstPtr & | indices | ) | [inline, inherited] |
Provide a pointer to the vector of indices that represents the input data.
indices | a pointer to the vector of indices that represents the input data. |
Definition at line 116 of file pcl_base.h.
void pcl::PCLBase::setIndices | ( | size_t | row_start, |
size_t | col_start, | ||
size_t | nb_rows, | ||
size_t | nb_cols | ||
) | [inline, inherited] |
Set the indices for the points laying within an interest region of the point cloud.
row_start | the offset on rows |
col_start | the offset on columns |
nb_rows | the number of rows to be considered row_start included |
nb_cols | the number of columns to be considered col_start included |
Definition at line 132 of file pcl_base.h.
virtual void pcl::PCLBase::setInputCloud | ( | const PointCloudConstPtr & | cloud | ) | [inline, virtual, inherited] |
Provide a pointer to the input dataset.
cloud | the const boost shared pointer to a PointCloud message |
Definition at line 95 of file pcl_base.h.
void pcl::Registration::setInputTarget | ( | const PointCloudTargetConstPtr & | cloud | ) | [inline, virtual] |
Provide a pointer to the input target (e.g., the point cloud that we want to align the input source to)
cloud | the input point cloud target |
Reimplemented in pcl::PPFRegistration, and pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget >.
Definition at line 42 of file registration.hpp.
void pcl::Registration::setMaxCorrespondenceDistance | ( | double | distance_threshold | ) | [inline] |
Set the maximum distance threshold between two correspondent points in source <-> target.
If the distance is larger than this threshold, the points will be ignored in the alignment process.
distance_threshold | the maximum distance threshold between a point and its nearest neighbor correspondent in order to be considered in the alignment process |
Definition at line 162 of file registration.h.
void pcl::Registration::setMaximumIterations | ( | int | nr_iterations | ) | [inline] |
Set the maximum number of iterations the internal optimization should run for.
nr_iterations | the maximum number of iterations the internal optimization should run for |
Definition at line 136 of file registration.h.
void pcl::Registration::setPointRepresentation | ( | const PointRepresentationConstPtr & | point_representation | ) | [inline] |
Provide a boost shared pointer to the PointRepresentation to be used when comparing points.
point_representation | the PointRepresentation to be used by the k-D tree |
Definition at line 206 of file registration.h.
void pcl::Registration::setRANSACOutlierRejectionThreshold | ( | double | inlier_threshold | ) | [inline] |
Set the inlier distance threshold for the internal RANSAC outlier rejection loop.
The method considers a point to be an inlier, if the distance between the target data index and the transformed source index is smaller than the given inlier distance threshold. The value is set by default to 0.05m.
inlier_threshold | the inlier distance threshold for the internal RANSAC outlier rejection loop |
Definition at line 150 of file registration.h.
void pcl::Registration::setTransformationEpsilon | ( | double | epsilon | ) | [inline] |
Set the transformation epsilon (maximum allowable difference between two consecutive transformations) in order for an optimization to be considered as having converged to the final solution.
epsilon | the transformation epsilon in order for an optimization to be considered as having converged to the final solution. |
Definition at line 177 of file registration.h.
void pcl::Registration::setTransformationEstimation | ( | const TransformationEstimationPtr & | te | ) | [inline] |
Definition at line 112 of file registration.h.