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 #ifndef PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_H_
00037 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_H_
00038
00039 #include <pcl/features/feature.h>
00040 #include <pcl/registration/transforms.h>
00041 #include <pcl/registration/correspondence_types.h>
00042
00043 namespace pcl
00044 {
00045 namespace registration
00046 {
00047
00051 template <typename PointSource, typename PointTarget>
00052 class TransformationEstimation
00053 {
00054 public:
00055 TransformationEstimation(){};
00056 virtual ~TransformationEstimation(){};
00057
00063 virtual void
00064 estimateRigidTransformation (
00065 const pcl::PointCloud<PointSource> &cloud_src,
00066 const pcl::PointCloud<PointTarget> &cloud_tgt,
00067 Eigen::Matrix4f &transformation_matrix) = 0;
00068
00075 virtual void
00076 estimateRigidTransformation (
00077 const pcl::PointCloud<PointSource> &cloud_src,
00078 const std::vector<int> &indices_src,
00079 const pcl::PointCloud<PointTarget> &cloud_tgt,
00080 Eigen::Matrix4f &transformation_matrix) = 0;
00081
00089 virtual void
00090 estimateRigidTransformation (
00091 const pcl::PointCloud<PointSource> &cloud_src,
00092 const std::vector<int> &indices_src,
00093 const pcl::PointCloud<PointTarget> &cloud_tgt,
00094 const std::vector<int> &indices_tgt,
00095 Eigen::Matrix4f &transformation_matrix) = 0;
00096
00103 virtual void
00104 estimateRigidTransformation (
00105 const pcl::PointCloud<PointSource> &cloud_src,
00106 const pcl::PointCloud<PointTarget> &cloud_tgt,
00107 const std::vector<pcl::registration::Correspondence> &correspondences,
00108 Eigen::Matrix4f &transformation_matrix) = 0;
00109 };
00110
00111 }
00112 }
00113
00114
00115 #endif