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


Public Types | |
| typedef boost::shared_ptr < TransformationEstimation < PointSource, PointTarget > > | Ptr |
| typedef boost::shared_ptr < const TransformationEstimation < PointSource, PointTarget > > | ConstPtr |
Public Member Functions | |
| TransformationEstimationSVD () | |
| virtual | ~TransformationEstimationSVD () |
| 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 SVD. | |
| 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 SVD. | |
| 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 SVD. | |
| 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 SVD. | |
TransformationEstimationSVD implements SVD-based estimation of the transformation aligning the given correspondences.
Definition at line 55 of file transformation_estimation_svd.h.
typedef boost::shared_ptr<const TransformationEstimation<PointSource, PointTarget> > pcl::registration::TransformationEstimation< PointSource, PointTarget >::ConstPtr [inherited] |
Definition at line 121 of file transformation_estimation.h.
typedef boost::shared_ptr<TransformationEstimation<PointSource, PointTarget> > pcl::registration::TransformationEstimation< PointSource, PointTarget >::Ptr [inherited] |
Reimplemented in pcl::registration::TransformationEstimationPointToPlane< PointSource, PointTarget >.
Definition at line 120 of file transformation_estimation.h.
| pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >::TransformationEstimationSVD | ( | ) | [inline] |
Definition at line 58 of file transformation_estimation_svd.h.
| virtual pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >::~TransformationEstimationSVD | ( | ) | [inline, virtual] |
Definition at line 59 of file transformation_estimation_svd.h.
| void pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
| const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
| Eigen::Matrix4f & | transformation_matrix | ||
| ) | [inline, virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| [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 43 of file transformation_estimation_svd.hpp.
| void pcl::registration::TransformationEstimationSVD< 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 | ||
| ) | [inline, virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| [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 68 of file transformation_estimation_svd.hpp.
| void pcl::registration::TransformationEstimationSVD< 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 | ||
| ) | [inline, virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| [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 101 of file transformation_estimation_svd.hpp.
| void pcl::registration::TransformationEstimationSVD< PointSource, PointTarget >::estimateRigidTransformation | ( | const pcl::PointCloud< PointSource > & | cloud_src, |
| const pcl::PointCloud< PointTarget > & | cloud_tgt, | ||
| const pcl::Correspondences & | correspondences, | ||
| Eigen::Matrix4f & | transformation_matrix | ||
| ) | [virtual] |
Estimate a rigid rotation transformation between a source and a target point cloud using SVD.
| [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 134 of file transformation_estimation_svd.hpp.
1.7.6.1