ITK  5.0.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:
43  ITK_DISALLOW_COPY_AND_ASSIGN(CorrelationCoefficientHistogramImageToImageMetric);
44 
50 
52  itkNewMacro(Self);
53 
57 
59  using RealType = typename Superclass::RealType;
60  using TransformType = typename Superclass::TransformType;
61  using TransformPointer = typename Superclass::TransformPointer;
62  using TransformParametersType = typename Superclass::TransformParametersType;
63  using TransformJacobianType = typename Superclass::TransformJacobianType;
64  using GradientPixelType = typename Superclass::GradientPixelType;
65 
66  using MeasureType = typename Superclass::MeasureType;
67  using DerivativeType = typename Superclass::DerivativeType;
68  using FixedImageType = typename Superclass::FixedImageType;
69  using MovingImageType = typename Superclass::MovingImageType;
70  using FixedImageConstPointer = typename Superclass::FixedImageConstPointer;
71  using MovingImageConstPointer = typename Superclass::MovingImageConstPointer;
72 
73  using HistogramType = typename Superclass::HistogramType;
74 
75  using HistogramAbsoluteFrequencyType = typename HistogramType::AbsoluteFrequencyType;
77 
78  using HistogramIteratorType = typename HistogramType::Iterator;
79  using HistogramMeasurementVectorType = typename HistogramType::MeasurementVectorType;
80 
81 protected:
87 
89  MeasureType EvaluateMeasure(HistogramType & histogram) const override;
90 
91 private:
93  MeasureType MeanX(HistogramType & histogram) const;
94 
96  MeasureType MeanY(HistogramType & histogram) const;
97 
99  MeasureType VarianceX(HistogramType & histogram) const;
100 
102  MeasureType VarianceY(HistogramType & histogram) const;
103 
105  MeasureType Covariance(HistogramType & histogram) const;
106 };
107 } // End namespace itk.
108 
109 #ifndef ITK_MANUAL_INSTANTIATION
110 #include "itkCorrelationCoefficientHistogramImageToImageMetric.hxx"
111 #endif
112 
113 #endif // itkCorrelationCoefficientHistogramImageToImageMetric_h
Array class with size defined at construction time.
Definition: itkArray.h:46
Light weight base class for most itk classes.
Computes correlation coefficient similarity measure between two images to be registered.
Computes similarity between two objects to be registered.