00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkMeanReciprocalSquareDifferencePointSetToImageMetric_h
00018 #define __itkMeanReciprocalSquareDifferencePointSetToImageMetric_h
00019
00020 #include "itkPointSetToImageMetric.h"
00021 #include "itkCovariantVector.h"
00022 #include "itkPoint.h"
00023
00024
00025 namespace itk
00026 {
00027
00045 template < class TFixedPointSet, class TMovingImage >
00046 class ITK_EXPORT MeanReciprocalSquareDifferencePointSetToImageMetric :
00047 public PointSetToImageMetric< TFixedPointSet, TMovingImage>
00048 {
00049 public:
00050
00052 typedef MeanReciprocalSquareDifferencePointSetToImageMetric Self;
00053 typedef PointSetToImageMetric<TFixedPointSet, TMovingImage > Superclass;
00054
00055 typedef SmartPointer<Self> Pointer;
00056 typedef SmartPointer<const Self> ConstPointer;
00057
00059 itkNewMacro(Self);
00060
00062 itkTypeMacro( MeanReciprocalSquareDifferencePointSetToImageMetric, Object);
00063
00064
00066 typedef typename Superclass::RealType RealType;
00067 typedef typename Superclass::TransformType TransformType;
00068 typedef typename Superclass::TransformPointer TransformPointer;
00069 typedef typename Superclass::TransformParametersType TransformParametersType;
00070 typedef typename Superclass::TransformJacobianType TransformJacobianType;
00071 typedef typename Superclass::GradientPixelType GradientPixelType;
00072
00073 typedef typename Superclass::MeasureType MeasureType;
00074 typedef typename Superclass::DerivativeType DerivativeType;
00075 typedef typename Superclass::FixedPointSetType FixedPointSetType;
00076 typedef typename Superclass::MovingImageType MovingImageType;
00077 typedef typename Superclass::FixedPointSetConstPointer FixedPointSetConstPointer;
00078 typedef typename Superclass::MovingImageConstPointer MovingImageConstPointer;
00079
00080 typedef typename Superclass::PointIterator PointIterator;
00081 typedef typename Superclass::PointDataIterator PointDataIterator;
00082
00083
00085 void GetDerivative( const TransformParametersType & parameters,
00086 DerivativeType & Derivative ) const;
00087
00089 MeasureType GetValue( const TransformParametersType & parameters ) const;
00090
00092 void GetValueAndDerivative( const TransformParametersType & parameters,
00093 MeasureType& Value, DerivativeType& Derivative ) const;
00094
00096 itkSetMacro( Lambda, double );
00097 itkGetMacro( Lambda, double );
00098
00099
00100 protected:
00101 MeanReciprocalSquareDifferencePointSetToImageMetric();
00102 virtual ~MeanReciprocalSquareDifferencePointSetToImageMetric() {};
00103 virtual void PrintSelf(std::ostream& os, Indent indent) const;
00104
00105 private:
00106 MeanReciprocalSquareDifferencePointSetToImageMetric(const Self&);
00107 void operator=(const Self&);
00108
00109 double m_Lambda;
00110
00111
00112 };
00113
00114 }
00115
00116 #ifndef ITK_MANUAL_INSTANTIATION
00117 #include "itkMeanReciprocalSquareDifferencePointSetToImageMetric.txx"
00118 #endif
00119
00120 #endif
00121
00122
00123