ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkKullbackLeiblerCompareHistogramImageToImageMetric.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 itkKullbackLeiblerCompareHistogramImageToImageMetric_h
19#define itkKullbackLeiblerCompareHistogramImageToImageMetric_h
20
22
23namespace itk
24{
64
65template <typename TFixedImage, typename TMovingImage>
67 : public CompareHistogramImageToImageMetric<TFixedImage, TMovingImage>
68{
69public:
70 ITK_DISALLOW_COPY_AND_MOVE(KullbackLeiblerCompareHistogramImageToImageMetric);
71
77
79 itkNewMacro(Self);
80
83
85 using typename Superclass::RealType;
86 using typename Superclass::TransformType;
87 using typename Superclass::TransformPointer;
91 using typename Superclass::GradientPixelType;
92
93 using typename Superclass::MeasureType;
94 using typename Superclass::DerivativeType;
95 using typename Superclass::FixedImageType;
96 using typename Superclass::MovingImageType;
99
100 using typename Superclass::HistogramType;
101 using typename Superclass::HistogramSizeType;
103
107 using typename Superclass::InterpolatorType;
108 using typename Superclass::InterpolatorPointer;
109
111 itkSetMacro(Epsilon, double);
112
114 itkGetConstReferenceMacro(Epsilon, double);
115
117 unsigned int
118 GetNumberOfParameters() const override
119 {
120 return this->GetTransform()->GetNumberOfParameters();
121 }
122
124
126 void
127 Initialize() override;
128
129protected:
135 void
136 PrintSelf(std::ostream & os, Indent indent) const override;
139 void
141
144 EvaluateMeasure(HistogramType & histogram) const override;
145
146 double m_Epsilon{};
147};
148} // End namespace itk.
149
150#ifndef ITK_MANUAL_INSTANTIATION
151# include "itkKullbackLeiblerCompareHistogramImageToImageMetric.hxx"
152#endif
153
154#endif // itkKullbackLeiblerCompareHistogramImageToImageMetric_h
typename HistogramType::MeasurementVectorType MeasurementVectorType
typename FixedImageType::ConstPointer FixedImageConstPointer
virtual const TransformType * GetTransform() const
typename NumericTraits< MovingImagePixelType >::RealType RealType
typename TransformType::Pointer TransformPointer
typename MovingImageType::ConstPointer MovingImageConstPointer
typename TransformType::ParametersType TransformParametersType
InterpolateImageFunction< MovingImageType, CoordinateRepresentationType > InterpolatorType
CovariantVector< RealType, Self::MovingImageDimension > GradientPixelType
Transform< CoordinateRepresentationType, Self::MovingImageDimension, Self::FixedImageDimension > TransformType
typename InterpolatorType::Pointer InterpolatorPointer
typename TransformType::JacobianType TransformJacobianType
Control indentation during Print() invocation.
Definition itkIndent.h:50
MeasureType EvaluateMeasure(HistogramType &histogram) const override
void PrintSelf(std::ostream &os, Indent indent) const override
CompareHistogramImageToImageMetric< TFixedImage, TMovingImage > Superclass
Array< ParametersValueType > DerivativeType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....