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_H_
00041 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_H_
00042
00043 #include <pcl/correspondence.h>
00044 #include <pcl/common/transforms.h>
00045 #include <pcl/registration/correspondence_types.h>
00046
00047 namespace pcl
00048 {
00049 namespace registration
00050 {
00061 template <typename PointSource, typename PointTarget, typename Scalar = float>
00062 class TransformationEstimation
00063 {
00064 public:
00065 typedef Eigen::Matrix<Scalar, 4, 4> Matrix4;
00066
00067 TransformationEstimation () {};
00068 virtual ~TransformationEstimation () {};
00069
00075 virtual void
00076 estimateRigidTransformation (
00077 const pcl::PointCloud<PointSource> &cloud_src,
00078 const pcl::PointCloud<PointTarget> &cloud_tgt,
00079 Matrix4 &transformation_matrix) const = 0;
00080
00087 virtual 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 = 0;
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 = 0;
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 = 0;
00121
00122
00123 typedef boost::shared_ptr<TransformationEstimation<PointSource, PointTarget, Scalar> > Ptr;
00124 typedef boost::shared_ptr<const TransformationEstimation<PointSource, PointTarget, Scalar> > ConstPtr;
00125 };
00126 }
00127 }
00128
00129 #endif