#include <transformation_estimation.h>

Public Member Functions | |
| virtual void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const pcl::PointCloud< PointTarget > &cloud_tgt, const std::vector< pcl::registration::Correspondence > &correspondences, Eigen::Matrix4f &transformation_matrix)=0 |
| Estimate a rigid rotation transformation between a source and a target point cloud using SVD. | |
| virtual 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)=0 |
| Estimate a rigid rotation transformation between a source and a target point cloud using SVD. | |
| virtual void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const std::vector< int > &indices_src, const pcl::PointCloud< PointTarget > &cloud_tgt, Eigen::Matrix4f &transformation_matrix)=0 |
| Estimate a rigid rotation transformation between a source and a target point cloud using SVD. | |
| virtual void | estimateRigidTransformation (const pcl::PointCloud< PointSource > &cloud_src, const pcl::PointCloud< PointTarget > &cloud_tgt, Eigen::Matrix4f &transformation_matrix)=0 |
| Estimate a rigid rotation transformation between a source and a target point cloud using SVD. | |
| TransformationEstimation () | |
| virtual | ~TransformationEstimation () |
TransformationEstimation represents the base class for methods for transformation estimation based on given a correspondence vector
Definition at line 52 of file transformation_estimation.h.
| pcl::registration::TransformationEstimation< PointSource, PointTarget >::TransformationEstimation | ( | ) | [inline] |
Definition at line 55 of file transformation_estimation.h.
| virtual pcl::registration::TransformationEstimation< PointSource, PointTarget >::~TransformationEstimation | ( | ) | [inline, virtual] |
Definition at line 56 of file transformation_estimation.h.
| virtual void pcl::registration::TransformationEstimation< PointSource, PointTarget >::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, | |
| const pcl::PointCloud< PointTarget > & | cloud_tgt, | |||
| const std::vector< pcl::registration::Correspondence > & | correspondences, | |||
| Eigen::Matrix4f & | transformation_matrix | |||
| ) | [pure virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| cloud_src | the source point cloud dataset | |
| cloud_tgt | the target point cloud dataset | |
| correspondences | the vector of correspondences between source and target point cloud | |
| transformation_matrix | the resultant transformation matrix |
Implemented in pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >.
| virtual void pcl::registration::TransformationEstimation< PointSource, PointTarget >::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 | |||
| ) | [pure virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| cloud_src | the source point cloud dataset | |
| indices_src | the vector of indices describing the points of interest in cloud_src | |
| cloud_tgt | the target point cloud dataset | |
| indices_tgt | the vector of indices describing the correspondences of the interst points from indices_src | |
| transformation_matrix | the resultant transformation matrix |
Implemented in pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >.
| virtual void pcl::registration::TransformationEstimation< PointSource, PointTarget >::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, | |
| const std::vector< int > & | indices_src, | |||
| const pcl::PointCloud< PointTarget > & | cloud_tgt, | |||
| Eigen::Matrix4f & | transformation_matrix | |||
| ) | [pure virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| cloud_src | the source point cloud dataset | |
| indices_src | the vector of indices describing the points of interest in cloud_src | |
| cloud_tgt | the target point cloud dataset | |
| transformation_matrix | the resultant transformation matrix |
Implemented in pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >.
| virtual void pcl::registration::TransformationEstimation< PointSource, PointTarget >::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, | |
| const pcl::PointCloud< PointTarget > & | cloud_tgt, | |||
| Eigen::Matrix4f & | transformation_matrix | |||
| ) | [pure virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| cloud_src | the source point cloud dataset | |
| cloud_tgt | the target point cloud dataset | |
| transformation_matrix | the resultant transformation matrix |
Implemented in pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >.