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_H_
00040 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_H_
00041
00042 #include <pcl/correspondence.h>
00043 #include <pcl/features/feature.h>
00044 #include <pcl/common/transforms.h>
00045 #include <pcl/registration/correspondence_types.h>
00046
00047 namespace pcl
00048 {
00049 namespace registration
00050 {
00060 template <typename PointSource, typename PointTarget>
00061 class TransformationEstimation
00062 {
00063 public:
00064 TransformationEstimation () {};
00065 virtual ~TransformationEstimation () {};
00066
00072 virtual void
00073 estimateRigidTransformation (
00074 const pcl::PointCloud<PointSource> &cloud_src,
00075 const pcl::PointCloud<PointTarget> &cloud_tgt,
00076 Eigen::Matrix4f &transformation_matrix) = 0;
00077
00084 virtual void
00085 estimateRigidTransformation (
00086 const pcl::PointCloud<PointSource> &cloud_src,
00087 const std::vector<int> &indices_src,
00088 const pcl::PointCloud<PointTarget> &cloud_tgt,
00089 Eigen::Matrix4f &transformation_matrix) = 0;
00090
00098 virtual void
00099 estimateRigidTransformation (
00100 const pcl::PointCloud<PointSource> &cloud_src,
00101 const std::vector<int> &indices_src,
00102 const pcl::PointCloud<PointTarget> &cloud_tgt,
00103 const std::vector<int> &indices_tgt,
00104 Eigen::Matrix4f &transformation_matrix) = 0;
00105
00112 virtual void
00113 estimateRigidTransformation (
00114 const pcl::PointCloud<PointSource> &cloud_src,
00115 const pcl::PointCloud<PointTarget> &cloud_tgt,
00116 const pcl::Correspondences &correspondences,
00117 Eigen::Matrix4f &transformation_matrix) = 0;
00118
00119
00120 typedef boost::shared_ptr<TransformationEstimation<PointSource, PointTarget> > Ptr;
00121 typedef boost::shared_ptr<const TransformationEstimation<PointSource, PointTarget> > ConstPtr;
00122 };
00123 }
00124 }
00125
00126 #endif