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
00040 #ifndef PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_SVD_SCALE_H_
00041 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_SVD_SCALE_H_
00042
00043 #include <pcl/registration/transformation_estimation_svd.h>
00044
00045 namespace pcl
00046 {
00047 namespace registration
00048 {
00057 template <typename PointSource, typename PointTarget, typename Scalar = float>
00058 class TransformationEstimationSVDScale : public TransformationEstimationSVD<PointSource, PointTarget, Scalar>
00059 {
00060 public:
00061 typedef boost::shared_ptr<TransformationEstimationSVDScale<PointSource, PointTarget, Scalar> > Ptr;
00062 typedef boost::shared_ptr<const TransformationEstimationSVDScale<PointSource, PointTarget, Scalar> > ConstPtr;
00063
00064 typedef typename TransformationEstimationSVD<PointSource, PointTarget, Scalar>::Matrix4 Matrix4;
00065
00067 TransformationEstimationSVDScale ():
00068 TransformationEstimationSVD<PointSource, PointTarget, Scalar> (false)
00069 {}
00070
00071 protected:
00079 void
00080 getTransformationFromCorrelation (const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> &cloud_src_demean,
00081 const Eigen::Matrix<Scalar, 4, 1> ¢roid_src,
00082 const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> &cloud_tgt_demean,
00083 const Eigen::Matrix<Scalar, 4, 1> ¢roid_tgt,
00084 Matrix4 &transformation_matrix) const;
00085 };
00086
00087 }
00088 }
00089
00090 #include <pcl/registration/impl/transformation_estimation_svd_scale.hpp>
00091
00092 #endif