Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_SVD_H_
00040 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_SVD_H_
00041
00042 #include <pcl/registration/transformation_estimation.h>
00043
00044 namespace pcl
00045 {
00046 namespace registration
00047 {
00054 template <typename PointSource, typename PointTarget>
00055 class TransformationEstimationSVD : public TransformationEstimation<PointSource, PointTarget>
00056 {
00057 public:
00058 TransformationEstimationSVD () {};
00059 virtual ~TransformationEstimationSVD () {};
00060
00066 inline void
00067 estimateRigidTransformation (
00068 const pcl::PointCloud<PointSource> &cloud_src,
00069 const pcl::PointCloud<PointTarget> &cloud_tgt,
00070 Eigen::Matrix4f &transformation_matrix);
00071
00078 inline void
00079 estimateRigidTransformation (
00080 const pcl::PointCloud<PointSource> &cloud_src,
00081 const std::vector<int> &indices_src,
00082 const pcl::PointCloud<PointTarget> &cloud_tgt,
00083 Eigen::Matrix4f &transformation_matrix);
00084
00092 inline void
00093 estimateRigidTransformation (
00094 const pcl::PointCloud<PointSource> &cloud_src,
00095 const std::vector<int> &indices_src,
00096 const pcl::PointCloud<PointTarget> &cloud_tgt,
00097 const std::vector<int> &indices_tgt,
00098 Eigen::Matrix4f &transformation_matrix);
00099
00106 void
00107 estimateRigidTransformation (
00108 const pcl::PointCloud<PointSource> &cloud_src,
00109 const pcl::PointCloud<PointTarget> &cloud_tgt,
00110 const pcl::Correspondences &correspondences,
00111 Eigen::Matrix4f &transformation_matrix);
00112
00113 protected:
00114
00122 void
00123 getTransformationFromCorrelation (const Eigen::MatrixXf &cloud_src_demean,
00124 const Eigen::Vector4f ¢roid_src,
00125 const Eigen::MatrixXf &cloud_tgt_demean,
00126 const Eigen::Vector4f ¢roid_tgt,
00127 Eigen::Matrix4f &transformation_matrix);
00128 };
00129
00130 }
00131 }
00132
00133 #include <pcl/registration/impl/transformation_estimation_svd.hpp>
00134
00135 #endif