ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkCorrelationCoefficientHistogramImageToImageMetric.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkCorrelationCoefficientHistogramImageToImageMetric_h
19 #define itkCorrelationCoefficientHistogramImageToImageMetric_h
20 
22 
23 namespace itk
24 {
38 template< typename TFixedImage, typename TMovingImage >
40  public HistogramImageToImageMetric< TFixedImage, TMovingImage >
41 {
42 public:
48 
50  itkNewMacro(Self);
51 
55 
57  typedef typename Superclass::RealType RealType;
63 
70 
72 
73  typedef typename HistogramType::AbsoluteFrequencyType HistogramAbsoluteFrequencyType;
75 
76  typedef typename HistogramType::Iterator HistogramIteratorType;
77  typedef typename HistogramType::MeasurementVectorType
79 
80 protected:
86 
88  virtual MeasureType EvaluateMeasure(HistogramType & histogram) const ITK_OVERRIDE;
89 
90 private:
92  MeasureType MeanX(HistogramType & histogram) const;
93 
95  MeasureType MeanY(HistogramType & histogram) const;
96 
98  MeasureType VarianceX(HistogramType & histogram) const;
99 
101  MeasureType VarianceY(HistogramType & histogram) const;
102 
104  MeasureType Covariance(HistogramType & histogram) const;
105 
106  // Purposely not implemented.
108  void operator=(Self const &); // Purposely not implemented.
109 };
110 } // End namespace itk.
111 
112 #ifndef ITK_MANUAL_INSTANTIATION
113 #include "itkCorrelationCoefficientHistogramImageToImageMetric.hxx"
114 #endif
115 
116 #endif // itkCorrelationCoefficientHistogramImageToImageMetric_h
Superclass::TransformPointer TransformPointer
Light weight base class for most itk classes.
MeasureType Covariance(HistogramType &histogram) const
MeasureType VarianceX(HistogramType &histogram) const
MovingImageType::ConstPointer MovingImageConstPointer
MeasureType MeanY(HistogramType &histogram) const
MeasureType MeanX(HistogramType &histogram) const
Computes correlation coefficient similarity measure between two images to be registered.
Statistics::Histogram< double > HistogramType
MeasureType VarianceY(HistogramType &histogram) const
Superclass::TransformParametersType TransformParametersType
Superclass::TransformJacobianType TransformJacobianType
Superclass::GradientPixelType GradientPixelType
FixedImageType::ConstPointer FixedImageConstPointer
Computes similarity between two objects to be registered.
virtual MeasureType EvaluateMeasure(HistogramType &histogram) const override