/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkMeanSquaresImageToImageMetric_h #define itkMeanSquaresImageToImageMetric_h #include "itkImageToImageMetric.h" #include "itkPoint.h" #include "itkIndex.h" namespace itk { /** * \class MeanSquaresImageToImageMetric * \brief TODO * \ingroup ITKRegistrationCommon * * \sphinx * \sphinxexample{Registration/Common/ComputeMeanSquareBetweenTwoImages,Compute Mean Squares Metric Between Two Images} * \endsphinx */ template class ITK_TEMPLATE_EXPORT MeanSquaresImageToImageMetric : public ImageToImageMetric { public: ITK_DISALLOW_COPY_AND_MOVE(MeanSquaresImageToImageMetric); /** Standard class type aliases. */ using Self = MeanSquaresImageToImageMetric; using Superclass = ImageToImageMetric; using Pointer = SmartPointer; using ConstPointer = SmartPointer; /** Method for creation through the object factory. */ itkNewMacro(Self); /** Run-time type information (and related methods). */ itkTypeMacro(MeanSquaresImageToImageMetric, ImageToImageMetric); /** Types inherited from Superclass. */ using TransformType = typename Superclass::TransformType; using TransformPointer = typename Superclass::TransformPointer; using TransformJacobianType = typename Superclass::TransformJacobianType; using InterpolatorType = typename Superclass::InterpolatorType; using MeasureType = typename Superclass::MeasureType; using DerivativeType = typename Superclass::DerivativeType; using ParametersType = typename Superclass::ParametersType; using FixedImageType = typename Superclass::FixedImageType; using MovingImageType = typename Superclass::MovingImageType; using MovingImagePointType = typename Superclass::MovingImagePointType; using FixedImageConstPointer = typename Superclass::FixedImageConstPointer; using MovingImageConstPointer = typename Superclass::MovingImageConstPointer; using CoordinateRepresentationType = typename Superclass::CoordinateRepresentationType; using FixedImageSampleContainer = typename Superclass::FixedImageSampleContainer; using ImageDerivativesType = typename Superclass::ImageDerivativesType; using WeightsValueType = typename Superclass::WeightsValueType; using IndexValueType = typename Superclass::IndexValueType; // Needed for evaluation of Jacobian. using FixedImagePointType = typename Superclass::FixedImagePointType; /** The moving image dimension. */ static constexpr unsigned int MovingImageDimension = MovingImageType::ImageDimension; /** * Initialize the Metric by * (1) making sure that all the components are present and plugged * together correctly, * (2) uniformly select NumberOfSpatialSamples within * the FixedImageRegion, and * (3) allocate memory for pdf data structures. */ void Initialize() override; /** Get the value. */ MeasureType GetValue(const ParametersType & parameters) const override; /** Get the derivatives of the match measure. */ void GetDerivative(const ParametersType & parameters, DerivativeType & derivative) const override; /** Get the value and derivatives for single valued optimizers. */ void GetValueAndDerivative(const ParametersType & parameters, MeasureType & value, DerivativeType & derivative) const override; protected: MeanSquaresImageToImageMetric(); ~MeanSquaresImageToImageMetric() override; void PrintSelf(std::ostream & os, Indent indent) const override; private: bool GetValueThreadProcessSample(ThreadIdType threadId, SizeValueType fixedImageSample, const MovingImagePointType & mappedPoint, double movingImageValue) const override; bool GetValueAndDerivativeThreadProcessSample(ThreadIdType threadId, SizeValueType fixedImageSample, const MovingImagePointType & mappedPoint, double movingImageValue, const ImageDerivativesType & movingImageGradientValue) const override; struct PerThreadS { TransformJacobianType m_Jacobian; MeasureType m_MSE; DerivativeType m_MSEDerivative; }; itkAlignedTypedef(64, PerThreadS, AlignedPerThreadType); AlignedPerThreadType * m_PerThread; }; } // end namespace itk #ifndef ITK_MANUAL_INSTANTIATION # include "itkMeanSquaresImageToImageMetric.hxx" #endif #endif