Point Cloud Library (PCL)
1.14.1-dev
|
Incremental IterativeClosestPoint class. More...
#include <pcl/registration/incremental_registration.h>
Public Types | |
using | PointCloudPtr = typename pcl::PointCloud< PointT >::Ptr |
using | PointCloudConstPtr = typename pcl::PointCloud< PointT >::ConstPtr |
using | RegistrationPtr = typename pcl::Registration< PointT, PointT, Scalar >::Ptr |
using | Matrix4 = typename pcl::Registration< PointT, PointT, Scalar >::Matrix4 |
Public Member Functions | |
IncrementalRegistration () | |
virtual | ~IncrementalRegistration ()=default |
Empty destructor. More... | |
bool | registerCloud (const PointCloudConstPtr &cloud, const Matrix4 &delta_estimate=Matrix4::Identity()) |
Register new point cloud incrementally. More... | |
Matrix4 | getDeltaTransform () const |
Get estimated transform between the last two registered clouds. More... | |
Matrix4 | getAbsoluteTransform () const |
Get estimated overall transform. More... | |
void | reset () |
Reset incremental Registration without resetting registration_. More... | |
void | setRegistration (RegistrationPtr) |
Set registration instance used to align clouds. More... | |
Protected Attributes | |
PointCloudConstPtr | last_cloud_ |
last registered point cloud More... | |
RegistrationPtr | registration_ |
registration instance to align clouds More... | |
Matrix4 | delta_transform_ |
estimated transforms More... | |
Matrix4 | abs_transform_ |
Incremental IterativeClosestPoint class.
This class provides a way to register a stream of clouds where each cloud will be aligned to the previous cloud.
Definition at line 75 of file incremental_registration.h.
using pcl::registration::IncrementalRegistration< PointT, Scalar >::Matrix4 = typename pcl::Registration<PointT, PointT, Scalar>::Matrix4 |
Definition at line 81 of file incremental_registration.h.
using pcl::registration::IncrementalRegistration< PointT, Scalar >::PointCloudConstPtr = typename pcl::PointCloud<PointT>::ConstPtr |
Definition at line 78 of file incremental_registration.h.
using pcl::registration::IncrementalRegistration< PointT, Scalar >::PointCloudPtr = typename pcl::PointCloud<PointT>::Ptr |
Definition at line 77 of file incremental_registration.h.
using pcl::registration::IncrementalRegistration< PointT, Scalar >::RegistrationPtr = typename pcl::Registration<PointT, PointT, Scalar>::Ptr |
Definition at line 80 of file incremental_registration.h.
pcl::registration::IncrementalRegistration< PointT, Scalar >::IncrementalRegistration |
Definition at line 46 of file incremental_registration.hpp.
|
virtualdefault |
Empty destructor.
|
inline |
Get estimated overall transform.
Definition at line 91 of file incremental_registration.hpp.
|
inline |
Get estimated transform between the last two registered clouds.
Definition at line 84 of file incremental_registration.hpp.
bool pcl::registration::IncrementalRegistration< PointT, Scalar >::registerCloud | ( | const PointCloudConstPtr & | cloud, |
const Matrix4 & | delta_estimate = Matrix4::Identity() |
||
) |
Register new point cloud incrementally.
[in] | cloud | point cloud to register |
[in] | delta_estimate | estimated transform between last registered cloud and this one |
Definition at line 52 of file incremental_registration.hpp.
|
inline |
Reset incremental Registration without resetting registration_.
Definition at line 98 of file incremental_registration.hpp.
|
inline |
Set registration instance used to align clouds.
Definition at line 106 of file incremental_registration.hpp.
|
protected |
Definition at line 125 of file incremental_registration.h.
|
protected |
estimated transforms
Definition at line 124 of file incremental_registration.h.
|
protected |
last registered point cloud
Definition at line 118 of file incremental_registration.h.
|
protected |
registration instance to align clouds
Definition at line 121 of file incremental_registration.h.