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_VALIDATION_H_
00041 #define PCL_REGISTRATION_TRANSFORMATION_VALIDATION_H_
00042
00043 #include <pcl/correspondence.h>
00044 #include <pcl/features/feature.h>
00045 #include <pcl/common/transforms.h>
00046 #include <pcl/registration/correspondence_types.h>
00047
00048 namespace pcl
00049 {
00050 namespace registration
00051 {
00067 template <typename PointSource, typename PointTarget, typename Scalar = float>
00068 class TransformationValidation
00069 {
00070 public:
00071 typedef Eigen::Matrix<Scalar, 4, 4> Matrix4;
00072 typedef boost::shared_ptr<TransformationValidation<PointSource, PointTarget, Scalar> > Ptr;
00073 typedef boost::shared_ptr<const TransformationValidation<PointSource, PointTarget, Scalar> > ConstPtr;
00074
00075 typedef pcl::PointCloud<PointSource> PointCloudSource;
00076 typedef typename PointCloudSource::Ptr PointCloudSourcePtr;
00077 typedef typename PointCloudSource::ConstPtr PointCloudSourceConstPtr;
00078
00079 typedef pcl::PointCloud<PointTarget> PointCloudTarget;
00080 typedef typename PointCloudTarget::Ptr PointCloudTargetPtr;
00081 typedef typename PointCloudTarget::ConstPtr PointCloudTargetConstPtr;
00082
00083 TransformationValidation () {};
00084 virtual ~TransformationValidation () {};
00085
00095 virtual double
00096 validateTransformation (
00097 const PointCloudSourceConstPtr &cloud_src,
00098 const PointCloudTargetConstPtr &cloud_tgt,
00099 const Matrix4 &transformation_matrix) const = 0;
00100
00111 virtual bool
00112 operator() (const double &score1, const double &score2) const = 0;
00113
00122 virtual bool
00123 isValid (
00124 const PointCloudSourceConstPtr &cloud_src,
00125 const PointCloudTargetConstPtr &cloud_tgt,
00126 const Matrix4 &transformation_matrix) const = 0;
00127 };
00128 }
00129 }
00130
00131 #endif // PCL_REGISTRATION_TRANSFORMATION_VALIDATION_H_