ITK  5.4.0
Insight Toolkit
itkNormalizedMutualInformationHistogramImageToImageMetric.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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  * https://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 itkNormalizedMutualInformationHistogramImageToImageMetric_h
19 #define itkNormalizedMutualInformationHistogramImageToImageMetric_h
20 
22 
23 namespace itk
24 {
51 template <typename TFixedImage, typename TMovingImage>
53  : public HistogramImageToImageMetric<TFixedImage, TMovingImage>
54 {
55 public:
57 
63 
65  itkNewMacro(Self);
66 
68  itkOverrideGetNameOfClassMacro(NormalizedMutualInformationHistogramImageToImageMetric);
69 
71  using typename Superclass::RealType;
72  using typename Superclass::TransformType;
73  using typename Superclass::TransformPointer;
74  using typename Superclass::TransformParametersType;
75  using typename Superclass::TransformJacobianType;
76  using typename Superclass::GradientPixelType;
77 
78  using typename Superclass::MeasureType;
79  using typename Superclass::DerivativeType;
80  using typename Superclass::FixedImageType;
81  using typename Superclass::MovingImageType;
82  using typename Superclass::FixedImageConstPointer;
83  using typename Superclass::MovingImageConstPointer;
84 
85  using typename Superclass::HistogramType;
89 
90 protected:
99  EvaluateMeasure(HistogramType & histogram) const override;
100 };
101 } // End namespace itk.
102 
103 #ifndef ITK_MANUAL_INSTANTIATION
104 # include "itkNormalizedMutualInformationHistogramImageToImageMetric.hxx"
105 #endif
106 
107 #endif // itkNormalizedMutualInformationHistogramImageToImageMetric_h
itk::Statistics::Histogram::Iterator
class that walks through the elements of the histogram.
Definition: itkHistogram.h:432
itk::SingleValuedCostFunction::MeasureType
double MeasureType
Definition: itkSingleValuedCostFunction.h:50
itk::NormalizedMutualInformationHistogramImageToImageMetric
Computes normalized mutual information between two images to be registered using the histograms of th...
Definition: itkNormalizedMutualInformationHistogramImageToImageMetric.h:52
itk::SmartPointer< Self >
itk::NormalizedMutualInformationHistogramImageToImageMetric::HistogramMeasurementVectorType
typename HistogramType::MeasurementVectorType HistogramMeasurementVectorType
Definition: itkNormalizedMutualInformationHistogramImageToImageMetric.h:88
itk::Statistics::Histogram
This class stores measurement vectors in the context of n-dimensional histogram.
Definition: itkHistogram.h:77
itk::NormalizedMutualInformationHistogramImageToImageMetric::HistogramFrequencyType
typename HistogramType::AbsoluteFrequencyType HistogramFrequencyType
Definition: itkNormalizedMutualInformationHistogramImageToImageMetric.h:86
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::Statistics::Histogram::AbsoluteFrequencyType
typename FrequencyContainerType::AbsoluteFrequencyType AbsoluteFrequencyType
Definition: itkHistogram.h:112
itkHistogramImageToImageMetric.h
itk::NormalizedMutualInformationHistogramImageToImageMetric::HistogramIteratorType
typename HistogramType::Iterator HistogramIteratorType
Definition: itkNormalizedMutualInformationHistogramImageToImageMetric.h:87
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Array
Array class with size defined at construction time.
Definition: itkArray.h:47
itk::HistogramImageToImageMetric
Computes similarity between two objects to be registered.
Definition: itkHistogramImageToImageMetric.h:39