Point Cloud Library (PCL)
1.3.1
|
TransformationEstimationPointToPlane uses Levenberg Marquardt optimization to find the transformation that minimizes the point-to-plane distance between the given correspondences. More...
#include <pcl/registration/transformation_estimation_point_to_plane.h>
Public Types | |
typedef boost::shared_ptr < TransformationEstimationPointToPlane < PointSource, PointTarget > > | Ptr |
typedef pcl::PointCloud < PointSource > | PointCloudSource |
typedef PointCloudSource::Ptr | PointCloudSourcePtr |
typedef PointCloudSource::ConstPtr | PointCloudSourceConstPtr |
typedef pcl::PointCloud < PointTarget > | PointCloudTarget |
typedef PointIndices::Ptr | PointIndicesPtr |
typedef PointIndices::ConstPtr | PointIndicesConstPtr |
Public Member Functions | |
TransformationEstimationPointToPlane () | |
virtual | ~TransformationEstimationPointToPlane () |
void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const pcl::PointCloud< PointTarget > &cloud_tgt, Eigen::Matrix4f &transformation_matrix) |
Estimate a rigid rotation transformation between a source and a target point cloud using LM. | |
void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const std::vector< int > &indices_src, const pcl::PointCloud< PointTarget > &cloud_tgt, Eigen::Matrix4f &transformation_matrix) |
Estimate a rigid rotation transformation between a source and a target point cloud using LM. | |
void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const std::vector< int > &indices_src, const pcl::PointCloud< PointTarget > &cloud_tgt, const std::vector< int > &indices_tgt, Eigen::Matrix4f &transformation_matrix) |
Estimate a rigid rotation transformation between a source and a target point cloud using LM. | |
void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const pcl::PointCloud< PointTarget > &cloud_tgt, const pcl::Correspondences &correspondences, Eigen::Matrix4f &transformation_matrix) |
Estimate a rigid rotation transformation between a source and a target point cloud using LM. | |
void | setWarpFunction (const boost::shared_ptr< WarpPointRigid< PointSource, PointTarget > > &warp_fcn) |
Set the function we use to warp points. |
TransformationEstimationPointToPlane uses Levenberg Marquardt optimization to find the transformation that minimizes the point-to-plane distance between the given correspondences.
typedef pcl::PointCloud<PointSource> pcl::registration::TransformationEstimationPointToPlane::PointCloudSource |
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 61 of file transformation_estimation_point_to_plane.h.
typedef PointCloudSource::ConstPtr pcl::registration::TransformationEstimationPointToPlane::PointCloudSourceConstPtr |
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 63 of file transformation_estimation_point_to_plane.h.
typedef PointCloudSource::Ptr pcl::registration::TransformationEstimationPointToPlane::PointCloudSourcePtr |
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 62 of file transformation_estimation_point_to_plane.h.
typedef pcl::PointCloud<PointTarget> pcl::registration::TransformationEstimationPointToPlane::PointCloudTarget |
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 64 of file transformation_estimation_point_to_plane.h.
typedef PointIndices::ConstPtr pcl::registration::TransformationEstimationPointToPlane::PointIndicesConstPtr |
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 66 of file transformation_estimation_point_to_plane.h.
Reimplemented from pcl::registration::TransformationEstimationLM< PointSource, PointTarget >.
Definition at line 65 of file transformation_estimation_point_to_plane.h.
typedef boost::shared_ptr<TransformationEstimationPointToPlane<PointSource, PointTarget> > pcl::registration::TransformationEstimationPointToPlane::Ptr |
Definition at line 60 of file transformation_estimation_point_to_plane.h.
pcl::registration::TransformationEstimationPointToPlane::TransformationEstimationPointToPlane | ( | ) | [inline] |
Definition at line 69 of file transformation_estimation_point_to_plane.h.
virtual pcl::registration::TransformationEstimationPointToPlane::~TransformationEstimationPointToPlane | ( | ) | [inline, virtual] |
Definition at line 70 of file transformation_estimation_point_to_plane.h.
void pcl::registration::TransformationEstimationLM::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
Eigen::Matrix4f & | transformation_matrix | ||
) | [inline, inherited] |
Estimate a rigid rotation transformation between a source and a target point cloud using LM.
[in] | cloud_src | the source point cloud dataset |
[in] | cloud_tgt | the target point cloud dataset |
[out] | transformation_matrix | the resultant transformation matrix |
void pcl::registration::TransformationEstimationLM::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
const std::vector< int > & | indices_src, | ||
const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
Eigen::Matrix4f & | transformation_matrix | ||
) | [inline, inherited] |
Estimate a rigid rotation transformation between a source and a target point cloud using LM.
[in] | cloud_src | the source point cloud dataset |
[in] | indices_src | the vector of indices describing the points of interest in cloud_src |
[in] | cloud_tgt | the target point cloud dataset |
[out] | transformation_matrix | the resultant transformation matrix |
void pcl::registration::TransformationEstimationLM::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
const std::vector< int > & | indices_src, | ||
const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
const std::vector< int > & | indices_tgt, | ||
Eigen::Matrix4f & | transformation_matrix | ||
) | [inline, inherited] |
Estimate a rigid rotation transformation between a source and a target point cloud using LM.
[in] | cloud_src | the source point cloud dataset |
[in] | indices_src | the vector of indices describing the points of interest in cloud_src |
[in] | cloud_tgt | the target point cloud dataset |
[in] | indices_tgt | the vector of indices describing the correspondences of the interst points from indices_src |
[out] | transformation_matrix | the resultant transformation matrix |
void pcl::registration::TransformationEstimationLM::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
const pcl::Correspondences & | correspondences, | ||
Eigen::Matrix4f & | transformation_matrix | ||
) | [inline, inherited] |
Estimate a rigid rotation transformation between a source and a target point cloud using LM.
[in] | cloud_src | the source point cloud dataset |
[in] | cloud_tgt | the target point cloud dataset |
[in] | correspondences | the vector of correspondences between source and target point cloud |
[out] | transformation_matrix | the resultant transformation matrix |
void pcl::registration::TransformationEstimationLM::setWarpFunction | ( | const boost::shared_ptr< WarpPointRigid< PointSource, PointTarget > > & | warp_fcn | ) | [inline, inherited] |
Set the function we use to warp points.
Defaults to rigid 6D warp.
[in] | shared | pointer to object that warps points |
Definition at line 129 of file transformation_estimation_lm.h.