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 #ifndef PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_2D_H_
00039 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_2D_H_
00040
00041 #include <pcl/registration/transformation_estimation.h>
00042
00043 namespace pcl
00044 {
00045 namespace registration
00046 {
00058 template <typename PointSource, typename PointTarget, typename Scalar = float>
00059 class TransformationEstimation2D : public TransformationEstimation<PointSource, PointTarget, Scalar>
00060 {
00061 public:
00062 typedef boost::shared_ptr<TransformationEstimation2D<PointSource, PointTarget, Scalar> > Ptr;
00063 typedef boost::shared_ptr<const TransformationEstimation2D<PointSource, PointTarget, Scalar> > ConstPtr;
00064
00065 typedef typename TransformationEstimation<PointSource, PointTarget, Scalar>::Matrix4 Matrix4;
00066
00067 TransformationEstimation2D () {};
00068 virtual ~TransformationEstimation2D () {};
00069
00075 inline void
00076 estimateRigidTransformation (
00077 const pcl::PointCloud<PointSource> &cloud_src,
00078 const pcl::PointCloud<PointTarget> &cloud_tgt,
00079 Matrix4 &transformation_matrix) const;
00080
00087 inline void
00088 estimateRigidTransformation (
00089 const pcl::PointCloud<PointSource> &cloud_src,
00090 const std::vector<int> &indices_src,
00091 const pcl::PointCloud<PointTarget> &cloud_tgt,
00092 Matrix4 &transformation_matrix) const;
00093
00101 virtual void
00102 estimateRigidTransformation (
00103 const pcl::PointCloud<PointSource> &cloud_src,
00104 const std::vector<int> &indices_src,
00105 const pcl::PointCloud<PointTarget> &cloud_tgt,
00106 const std::vector<int> &indices_tgt,
00107 Matrix4 &transformation_matrix) const;
00108
00115 virtual void
00116 estimateRigidTransformation (
00117 const pcl::PointCloud<PointSource> &cloud_src,
00118 const pcl::PointCloud<PointTarget> &cloud_tgt,
00119 const pcl::Correspondences &correspondences,
00120 Matrix4 &transformation_matrix) const;
00121
00122 protected:
00123
00129 void
00130 estimateRigidTransformation (ConstCloudIterator<PointSource>& source_it,
00131 ConstCloudIterator<PointTarget>& target_it,
00132 Matrix4 &transformation_matrix) const;
00133
00141 void
00142 getTransformationFromCorrelation (
00143 const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> &cloud_src_demean,
00144 const Eigen::Matrix<Scalar, 4, 1> ¢roid_src,
00145 const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> &cloud_tgt_demean,
00146 const Eigen::Matrix<Scalar, 4, 1> ¢roid_tgt,
00147 Matrix4 &transformation_matrix) const;
00148 };
00149
00150 }
00151 }
00152
00153 #include <pcl/registration/impl/transformation_estimation_2D.hpp>
00154
00155 #endif