|
Point Cloud Library (PCL)
1.6.0
|
TransformationEstimationLM implements Levenberg Marquardt-based estimation of the transformation aligning the given correspondences. More...
#include <pcl/registration/transformation_estimation_lm.h>


Public Types | |
| typedef boost::shared_ptr < TransformationEstimation < PointSource, PointTarget > > | Ptr |
| typedef boost::shared_ptr < const TransformationEstimation < PointSource, PointTarget > > | ConstPtr |
Public Member Functions | |
| TransformationEstimationLM () | |
| Constructor. More... | |
| TransformationEstimationLM (const TransformationEstimationLM &src) | |
| Copy constructor. More... | |
| TransformationEstimationLM & | operator= (const TransformationEstimationLM &src) |
| Copy operator. More... | |
| virtual | ~TransformationEstimationLM () |
| Destructor. More... | |
| 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. More... | |
| 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. More... | |
| 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. More... | |
| 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. More... | |
| void | setWarpFunction (const boost::shared_ptr< WarpPointRigid< PointSource, PointTarget > > &warp_fcn) |
| Set the function we use to warp points. More... | |
TransformationEstimationLM implements Levenberg Marquardt-based estimation of the transformation aligning the given correspondences.
Definition at line 57 of file transformation_estimation_lm.h.
|
inherited |
Definition at line 121 of file transformation_estimation.h.
|
inherited |
Definition at line 120 of file transformation_estimation.h.
|
inline |
Constructor.
Definition at line 70 of file transformation_estimation_lm.h.
|
inline |
Copy constructor.
| [in] | src | the TransformationEstimationLM object to copy into this |
Definition at line 77 of file transformation_estimation_lm.h.
|
inlinevirtual |
Destructor.
Definition at line 101 of file transformation_estimation_lm.h.
|
inlinevirtual |
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 |
Implements pcl::registration::TransformationEstimation< PointSource, PointTarget >.
Definition at line 48 of file transformation_estimation_lm.hpp.
|
inlinevirtual |
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 |
Implements pcl::registration::TransformationEstimation< PointSource, PointTarget >.
Definition at line 106 of file transformation_estimation_lm.hpp.
|
inlinevirtual |
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 |
Implements pcl::registration::TransformationEstimation< PointSource, PointTarget >.
Definition at line 132 of file transformation_estimation_lm.hpp.
|
inlinevirtual |
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 |
Implements pcl::registration::TransformationEstimation< PointSource, PointTarget >.
Definition at line 192 of file transformation_estimation_lm.hpp.
|
inline |
Copy operator.
| [in] | src | the TransformationEstimationLM object to copy into this |
Definition at line 90 of file transformation_estimation_lm.h.
|
inline |
Set the function we use to warp points.
Defaults to rigid 6D warp.
| [in] | warp_fcn | a shared pointer to an object that warps points |
Definition at line 160 of file transformation_estimation_lm.h.
1.8.3.1