00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkHistogramImageToImageMetric_h
00018 #define __itkHistogramImageToImageMetric_h
00019
00020 #include "itkHistogram.h"
00021 #include "itkImageToImageMetric.h"
00022
00023 namespace itk
00024 {
00035 template <class TFixedImage, class TMovingImage>
00036 class ITK_EXPORT HistogramImageToImageMetric :
00037 public ImageToImageMetric<TFixedImage, TMovingImage>
00038 {
00039 public:
00041 typedef HistogramImageToImageMetric Self;
00042 typedef ImageToImageMetric<TFixedImage, TMovingImage> Superclass;
00043 typedef SmartPointer<Self> Pointer;
00044 typedef SmartPointer<const Self> ConstPointer;
00045
00047 itkTypeMacro(HistogramImageToImageMetric, ImageToImageMetric);
00048
00050 typedef typename Superclass::RealType RealType;
00051 typedef typename Superclass::TransformType TransformType;
00052 typedef typename Superclass::TransformPointer TransformPointer;
00053 typedef typename Superclass::TransformParametersType
00054 TransformParametersType;
00055 typedef typename Superclass::TransformJacobianType
00056 TransformJacobianType;
00057 typedef typename Superclass::GradientPixelType GradientPixelType;
00058 typedef typename Superclass::InputPointType InputPointType;
00059 typedef typename Superclass::OutputPointType OutputPointType;
00060 typedef typename Superclass::MeasureType MeasureType;
00061 typedef typename Superclass::DerivativeType DerivativeType;
00062 typedef typename Superclass::FixedImageType FixedImageType;
00063 typedef typename Superclass::FixedImageType::PixelType FixedImagePixelType;
00064 typedef typename Superclass::MovingImageType MovingImageType;
00065 typedef typename Superclass::MovingImageType::PixelType MovingImagePixelType;
00066 typedef typename Superclass::FixedImageConstPointer
00067 FixedImageConstPointerType;
00068 typedef typename Superclass::MovingImageConstPointer
00069 MovingImageConstPointerType;
00070
00074 typedef Statistics::Histogram<double, 2> HistogramType;
00075 typedef typename HistogramType::MeasurementVectorType MeasurementVectorType;
00076 typedef typename HistogramType::SizeType HistogramSizeType;
00077 typedef typename HistogramType::Pointer HistogramPointer;
00078
00080 void Initialize() throw (ExceptionObject);
00081
00084 itkSetMacro( HistogramSize, HistogramSizeType );
00085
00087 itkGetConstReferenceMacro( HistogramSize, HistogramSizeType );
00088
00091 itkSetMacro( UpperBoundIncreaseFactor, double );
00092 itkGetMacro( UpperBoundIncreaseFactor, double );
00093
00095 itkSetMacro( PaddingValue, FixedImagePixelType );
00096
00098 itkGetConstReferenceMacro( PaddingValue, FixedImagePixelType );
00099
00103 itkGetConstReferenceMacro( Histogram, HistogramPointer );
00104
00108 itkSetMacro( UsePaddingValue, bool );
00109 itkGetMacro( UsePaddingValue, bool );
00110
00112 itkSetMacro( DerivativeStepLength, double );
00113
00115 itkGetMacro( DerivativeStepLength, double );
00116
00118 typedef Array<double> ScalesType;
00119
00121 itkSetMacro( DerivativeStepLengthScales, ScalesType );
00122
00124 itkGetConstReferenceMacro(DerivativeStepLengthScales, ScalesType);
00125
00127 MeasureType GetValue(const TransformParametersType& parameters) const;
00128
00130 void GetDerivative(const TransformParametersType & parameters,
00131 DerivativeType & derivative) const;
00132
00134 void GetValueAndDerivative(const TransformParametersType & parameters,
00135 MeasureType& Value,
00136 DerivativeType& Derivative) const;
00137
00138 protected:
00141 HistogramImageToImageMetric();
00142 virtual ~HistogramImageToImageMetric() {};
00143
00145 HistogramSizeType m_HistogramSize;
00147 mutable MeasurementVectorType m_LowerBound;
00149 mutable MeasurementVectorType m_UpperBound;
00151 double m_UpperBoundIncreaseFactor;
00152
00155 void ComputeHistogram(const TransformParametersType & parameters,
00156 HistogramType& histogram) const;
00159 void ComputeHistogram(const TransformParametersType & parameters,
00160 unsigned int parameter,
00161 double step,
00162 HistogramType& histogram) const;
00166 void CopyHistogram(HistogramType& target, HistogramType& source) const;
00167
00170 virtual MeasureType EvaluateMeasure(HistogramType& histogram) const = 0;
00171
00173 void PrintSelf(std::ostream& os, Indent indent) const;
00174
00175 private:
00176 HistogramImageToImageMetric(const Self&);
00177 void operator=(const Self&);
00178
00180 FixedImagePixelType m_PaddingValue;
00181
00185 bool m_UsePaddingValue;
00186
00188 double m_DerivativeStepLength;
00189
00191 ScalesType m_DerivativeStepLengthScales;
00192
00195 HistogramPointer m_Histogram;
00196
00197 };
00198
00199 }
00200
00201 #ifndef ITK_MANUAL_INSTANTIATION
00202 #include "itkHistogramImageToImageMetric.txx"
00203 #endif
00204
00205 #endif // __itkHistogramImageToImageMetric_h