ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkNormalizedCorrelationImageToImageMetric.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 itkNormalizedCorrelationImageToImageMetric_h
19 #define itkNormalizedCorrelationImageToImageMetric_h
20 
21 #include "itkImageToImageMetric.h"
22 #include "itkPoint.h"
23 
24 namespace itk
25 {
45 template< typename TFixedImage, typename TMovingImage >
47  public ImageToImageMetric< TFixedImage, TMovingImage >
48 {
49 public:
50 
56 
58  itkNewMacro(Self);
59 
62 
64  typedef typename Superclass::RealType RealType;
72 
79 
81  void GetDerivative(const TransformParametersType & parameters,
82  DerivativeType & Derivative) const ITK_OVERRIDE;
83 
85  MeasureType GetValue(const TransformParametersType & parameters) const ITK_OVERRIDE;
86 
88  void GetValueAndDerivative(const TransformParametersType & parameters,
89  MeasureType & Value, DerivativeType & Derivative) const ITK_OVERRIDE;
90 
95  itkSetMacro(SubtractMean, bool);
96  itkGetConstReferenceMacro(SubtractMean, bool);
97  itkBooleanMacro(SubtractMean);
99 
100 protected:
103  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
104 
105 private:
106  NormalizedCorrelationImageToImageMetric(const Self &); //purposely not
107  // implemented
108  void operator=(const Self &); //purposely not
109  // implemented
110 
112 };
113 } // end namespace itk
114 
115 #ifndef ITK_MANUAL_INSTANTIATION
116 #include "itkNormalizedCorrelationImageToImageMetric.hxx"
117 #endif
118 
119 #endif
Array class with size defined at construction time.
Definition: itkArray.h:50
TransformType::OutputPointType OutputPointType
Light weight base class for most itk classes.
TransformType::InputPointType InputPointType
void GetValueAndDerivative(const TransformParametersType &parameters, MeasureType &Value, DerivativeType &Derivative) const override
TransformType::Pointer TransformPointer
NumericTraits< MovingImagePixelType >::RealType RealType
Superclass::DerivativeType DerivativeType
MovingImageType::ConstPointer MovingImageConstPointer
Computes similarity between two images to be registered.
Class to hold and manage different parameter types used during optimization.
void PrintSelf(std::ostream &os, Indent indent) const override
TransformType::JacobianType TransformJacobianType
MeasureType GetValue(const TransformParametersType &parameters) const override
void GetDerivative(const TransformParametersType &parameters, DerivativeType &Derivative) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:49
FixedImageType::ConstPointer FixedImageConstPointer
ImageToImageMetric< TFixedImage, TMovingImage > Superclass
Superclass::MeasureType MeasureType
CovariantVector< RealType, itkGetStaticConstMacro(MovingImageDimension) > GradientPixelType
Transform< CoordinateRepresentationType, itkGetStaticConstMacro(MovingImageDimension), itkGetStaticConstMacro(FixedImageDimension) > TransformType
Base class for most ITK classes.
Definition: itkObject.h:57
Computes similarity between regions of two images.
TransformType::ParametersType TransformParametersType