ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageToImageMetricv4.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 itkImageToImageMetricv4_h
19#define itkImageToImageMetricv4_h
20
21#include "itkCovariantVector.h"
22#include "itkImageFunction.h"
25#include "itkSpatialObject.h"
31#include "itkPointSet.h"
34
35namespace itk
36{
168template <typename TFixedImage,
169 typename TMovingImage,
170 typename TVirtualImage = TFixedImage,
171 typename TInternalComputationValueType = double,
172 typename TMetricTraits =
174class ITK_TEMPLATE_EXPORT ImageToImageMetricv4
175 : public ObjectToObjectMetric<TFixedImage::ImageDimension,
176 TMovingImage::ImageDimension,
177 TVirtualImage,
178 TInternalComputationValueType>
179{
180public:
181 ITK_DISALLOW_COPY_AND_MOVE(ImageToImageMetricv4);
182
185 using Superclass = ObjectToObjectMetric<TFixedImage::ImageDimension,
186 TMovingImage::ImageDimension,
187 TVirtualImage,
188 TInternalComputationValueType>;
191
193 itkOverrideGetNameOfClassMacro(ImageToImageMetricv4);
194
196
198 using InternalComputationValueType = TInternalComputationValueType;
199
202
204 using typename Superclass::ParametersType;
205 using typename Superclass::ParametersValueType;
206
208 using typename Superclass::GradientSourceEnum;
209
211 using typename Superclass::DimensionType;
213
215 using typename Superclass::FixedTransformType;
217 using typename Superclass::FixedInputPointType;
220
221 using typename Superclass::MovingTransformType;
226
227 using typename Superclass::JacobianType;
230
232
234 using FixedImageType = TFixedImage;
235 using FixedImagePixelType = typename FixedImageType::PixelType;
237 using FixedImagePointer = typename FixedImageType::Pointer;
238 using FixedImageConstPointer = typename FixedImageType::ConstPointer;
239 using FixedImagePointType = typename FixedImageType::PointType;
240 using FixedImageIndexType = typename FixedImageType::IndexType;
241 using MovingImageType = TMovingImage;
242 using MovingImagePixelType = typename MovingImageType::PixelType;
244 using MovingImagePointer = typename MovingImageType::Pointer;
245 using MovingImageConstPointer = typename MovingImageType::ConstPointer;
246 using MovingImagePointType = typename MovingImageType::PointType;
247 using MovingImageRegionType = typename MovingImageType::RegionType;
248 using MovingImageIndexType = typename MovingImageType::IndexType;
249
252 using typename Superclass::VirtualImagePointer;
253 using typename Superclass::VirtualPixelType;
254 using typename Superclass::VirtualRegionType;
255 using typename Superclass::VirtualSizeType;
256 using typename Superclass::VirtualSpacingType;
258 using typename Superclass::VirtualPointType;
261 using typename Superclass::VirtualIndexType;
262 using typename Superclass::VirtualPointSetType;
264
266 using MetricTraits = TMetricTraits;
267
268 /* Image dimension accessors */
272
278
284
289
295
297 using FixedImageGradientType = typename MetricTraits::FixedImageGradientType;
298 using MovingImageGradientType = typename MetricTraits::MovingImageGradientType;
299 using VirtualImageGradientType = typename MetricTraits::VirtualImageGradientType;
300
303
306
309
313 using FixedRealType = typename MetricTraits::FixedRealType;
314 using MovingRealType = typename MetricTraits::MovingRealType;
315
318
319 using FixedGradientPixelType = typename MetricTraits::FixedGradientPixelType;
320 using MovingGradientPixelType = typename MetricTraits::MovingGradientPixelType;
321
322 using FixedImageGradientImageType = typename MetricTraits::FixedImageGradientImageType;
323 using MovingImageGradientImageType = typename MetricTraits::MovingImageGradientImageType;
324
325 using FixedImageGradientImagePointer = typename FixedImageGradientImageType::Pointer;
326 using MovingImageGradientImagePointer = typename MovingImageGradientImageType::Pointer;
327
328 using FixedImageGradientFilterType = typename MetricTraits::FixedImageGradientFilterType;
329 using MovingImageGradientFilterType = typename MetricTraits::MovingImageGradientFilterType;
330
331 using FixedImageGradientFilterPointer = typename FixedImageGradientFilterType::Pointer;
332 using MovingImageGradientFilterPointer = typename MovingImageGradientFilterType::Pointer;
333
334
336 using DefaultFixedImageGradientFilter = typename MetricTraits::DefaultFixedImageGradientFilter;
337 using DefaultMovingImageGradientFilter = typename MetricTraits::DefaultMovingImageGradientFilter;
338
341 using FixedImageGradientCalculatorType = typename MetricTraits::FixedImageGradientCalculatorType;
342 using MovingImageGradientCalculatorType = typename MetricTraits::MovingImageGradientCalculatorType;
343
344 using FixedImageGradientCalculatorPointer = typename FixedImageGradientCalculatorType::Pointer;
345 using MovingImageGradientCalculatorPointer = typename MovingImageGradientCalculatorType::Pointer;
346
348 using DefaultFixedImageGradientCalculator = typename MetricTraits::DefaultFixedImageGradientCalculator;
349 using DefaultMovingImageGradientCalculator = typename MetricTraits::DefaultMovingImageGradientCalculator;
350
352 using typename Superclass::MeasureType;
353
355 using typename Superclass::DerivativeType;
357
361
363 void
364 SetFixedObject(const ObjectType * object) override
365 {
366 auto * image = dynamic_cast<FixedImageType *>(const_cast<ObjectType *>(object));
367 if (image != nullptr)
368 {
369 this->SetFixedImage(image);
370 }
371 else
372 {
373 itkExceptionMacro("Incorrect object type. Should be an image.");
374 }
375 }
376
378 void
379 SetMovingObject(const ObjectType * object) override
380 {
381 auto * image = dynamic_cast<MovingImageType *>(const_cast<ObjectType *>(object));
382 if (image != nullptr)
383 {
384 this->SetMovingImage(image);
385 }
386 else
387 {
388 itkExceptionMacro("Incorrect object type. Should be an image.");
389 }
390 }
391
392 /* Get/Set the Fixed Image. */
394 itkSetConstObjectMacro(FixedImage, FixedImageType);
395 itkGetConstObjectMacro(FixedImage, FixedImageType);
397
400 itkSetConstObjectMacro(MovingImage, MovingImageType);
401 itkGetConstObjectMacro(MovingImage, MovingImageType);
403
405 itkSetObjectMacro(FixedInterpolator, FixedInterpolatorType);
406
408 itkGetModifiableObjectMacro(FixedInterpolator, FixedInterpolatorType);
409
411 itkSetObjectMacro(MovingInterpolator, MovingInterpolatorType);
412
414 itkGetModifiableObjectMacro(MovingInterpolator, MovingInterpolatorType);
415
418#ifndef ITK_FUTURE_LEGACY_REMOVE
419 virtual void
421 {
422 const auto * const constArg = arg;
423 // Call the overload defined by itkSetConstObjectMacro, or an override.
424 this->SetMovingImageMask(constArg);
425 }
426#endif
427 itkSetConstObjectMacro(MovingImageMask, MovingImageMaskType);
428 itkGetConstObjectMacro(MovingImageMask, MovingImageMaskType);
432#ifndef ITK_FUTURE_LEGACY_REMOVE
433 virtual void
435 {
436 const auto * const constArg = arg;
437 // Call the overload defined by itkSetConstObjectMacro, or an override.
438 this->SetFixedImageMask(constArg);
439 }
440#endif
441 itkSetConstObjectMacro(FixedImageMask, FixedImageMaskType);
442 itkGetConstObjectMacro(FixedImageMask, FixedImageMaskType);
448#ifndef ITK_FUTURE_LEGACY_REMOVE
449 virtual void
451 {
452 const auto * const constArg = arg;
453 // Call the overload defined by itkSetConstObjectMacro, or an override.
454 this->SetFixedSampledPointSet(constArg);
455 }
456#endif
457 itkSetConstObjectMacro(FixedSampledPointSet, FixedSampledPointSetType);
458 itkGetConstObjectMacro(FixedSampledPointSet, FixedSampledPointSetType);
462 itkSetObjectMacro(VirtualSampledPointSet, VirtualPointSetType);
463 itkGetConstObjectMacro(VirtualSampledPointSet, VirtualPointSetType);
467 itkSetMacro(UseSampledPointSet, bool);
468 itkGetConstReferenceMacro(UseSampledPointSet, bool);
469 itkBooleanMacro(UseSampledPointSet);
474 itkSetMacro(UseVirtualSampledPointSet, bool);
475 itkGetConstReferenceMacro(UseVirtualSampledPointSet, bool);
476 itkBooleanMacro(UseVirtualSampledPointSet);
478#if !defined(ITK_LEGACY_REMOVE)
482 itkLegacyMacro(virtual void SetUseFixedSampledPointSet(bool v))
483 {
484 this->SetUseSampledPointSet(v);
485 }
486 itkLegacyMacro(virtual bool GetUseFixedSampledPointSet() const)
487 {
488 return this->GetUseSampledPointSet();
489 }
490 itkLegacyMacro(virtual void UseFixedSampledPointSetOn())
491 {
492 return this->UseSampledPointSetOn();
493 }
494 itkLegacyMacro(virtual void UseFixedSampledPointSetOff())
495 {
496 return this->UseSampledPointSetOff();
497 }
499#endif
500
503 itkSetObjectMacro(FixedImageGradientFilter, FixedImageGradientFilterType);
504 itkGetModifiableObjectMacro(FixedImageGradientFilter, FixedImageGradientFilterType);
505 itkSetObjectMacro(MovingImageGradientFilter, MovingImageGradientFilterType);
506 itkGetModifiableObjectMacro(MovingImageGradientFilter, MovingImageGradientFilterType);
510 itkSetObjectMacro(FixedImageGradientCalculator, FixedImageGradientCalculatorType);
511 itkGetModifiableObjectMacro(FixedImageGradientCalculator, FixedImageGradientCalculatorType);
512 itkSetObjectMacro(MovingImageGradientCalculator, MovingImageGradientCalculatorType);
513 itkGetModifiableObjectMacro(MovingImageGradientCalculator, MovingImageGradientCalculatorType);
518 itkSetMacro(UseFixedImageGradientFilter, bool);
519 itkGetConstReferenceMacro(UseFixedImageGradientFilter, bool);
520 itkBooleanMacro(UseFixedImageGradientFilter);
524 itkSetMacro(UseMovingImageGradientFilter, bool);
525 itkGetConstReferenceMacro(UseMovingImageGradientFilter, bool);
526 itkBooleanMacro(UseMovingImageGradientFilter);
531 virtual ThreadIdType
533
538 virtual void
540 virtual ThreadIdType
543#if !defined(ITK_LEGACY_REMOVE)
549 itkLegacyMacro(virtual ThreadIdType GetNumberOfThreadsUsed() const)
550 {
551 return this->GetNumberOfWorkUnitsUsed();
552 }
553
561 itkLegacyMacro(virtual void SetMaximumNumberOfThreads(const ThreadIdType count))
562 {
563 this->SetMaximumNumberOfWorkUnits(count);
564 }
565 itkLegacyMacro(virtual ThreadIdType GetMaximumNumberOfThreads() const)
566 {
567 return this->GetMaximumNumberOfWorkUnits();
568 }
570#endif // !ITK_LEGACY_REMOVE
571
579 virtual void
580 FinalizeThread(const ThreadIdType /*threadId*/)
581 { /*Do nothing by default */
582 }
583
585 itkGetModifiableObjectMacro(FixedImageGradientImage, FixedImageGradientImageType);
586
588 itkGetModifiableObjectMacro(MovingImageGradientImage, MovingImageGradientImageType);
589
596
611 itkSetMacro(UseFloatingPointCorrection, bool);
612 itkGetConstReferenceMacro(UseFloatingPointCorrection, bool);
613 itkBooleanMacro(UseFloatingPointCorrection);
620 itkSetMacro(FloatingPointCorrectionResolution, DerivativeValueType);
621 itkGetConstMacro(FloatingPointCorrectionResolution, DerivativeValueType);
623 /* Initialize the metric before calling GetValue or GetDerivative.
624 * Derived classes must call this Superclass version if they override
625 * this to perform their own initialization.
626 * \note This is meant to be called once for a particular metric setup.
627 * That is, when used in registration, this method would be called once
628 * before entering the registration loop, during which GetValue or
629 * GetDerivative will be called repeatedly. It must be called again if
630 * metric settings are changed before beginning a new registration. */
631 void
632 Initialize() override;
633
635 GetValue() const override;
636
637 void
638 GetDerivative(DerivativeType &) const override;
639
645 void
646 GetValueAndDerivative(MeasureType & value, DerivativeType & derivative) const override;
647
651 itkGetConstReferenceMacro(NumberOfSkippedFixedSampledPoints, SizeValueType);
652
653 bool
655 {
656 return true;
657 }
658
659 using typename Superclass::MetricCategoryType;
660
662 MetricCategoryType
663 GetMetricCategory() const override
664 {
665 return MetricCategoryType::IMAGE_METRIC;
666 }
667
668protected:
669 /* Interpolators for image gradient filters. */
674
677 Self>;
680 Self>;
682
683 /* A DenseGetValueAndDerivativeThreader
684 * Derived classes must define this class and assign it in their constructor
685 * if threaded processing in GetValueAndDerivative is performed. */
688 /* A SparseGetValueAndDerivativeThreader
689 * Derived classes must define this class and assign it in their constructor
690 * if threaded processing in GetValueAndDerivative is performed. */
693
698 virtual void
700
708 bool
710 FixedImagePointType & mappedFixedPoint,
711 FixedImagePixelType & mappedFixedPixelValue) const;
712
714 bool
716 MovingImagePointType & mappedMovingPoint,
717 MovingImagePixelType & mappedMovingPixelValue) const;
718
720 virtual void
722
724 virtual void
726
730 virtual void
732
736 virtual void
738
745 virtual void
747
751 virtual void
753 virtual void
757 itkGetConstMacro(ComputeDerivative, bool);
758
761
767
772
776
779 typename DefaultFixedImageGradientFilter::Pointer m_DefaultFixedImageGradientFilter{};
780 typename DefaultMovingImageGradientFilter::Pointer m_DefaultMovingImageGradientFilter{};
781
784 typename DefaultFixedImageGradientCalculator::Pointer m_DefaultFixedImageGradientCalculator{};
785 typename DefaultMovingImageGradientCalculator::Pointer m_DefaultMovingImageGradientCalculator{};
786
790
794
802
806
810
813
817
819 ~ImageToImageMetricv4() override = default;
820
821 void
822 PrintSelf(std::ostream & os, Indent indent) const override;
823
824private:
826 void
828
830 void
832 typename FixedTransformType::OutputPointType & mappedFixedPoint) const
833 {
834 mappedFixedPoint = this->m_FixedTransform->TransformPoint(virtualPoint);
835 }
836 // cast the virtual point
837 template <typename TVirtualPoint>
838 void
839 LocalTransformPoint(const TVirtualPoint & virtualPoint,
840 typename FixedTransformType::OutputPointType & mappedFixedPoint) const
841 {
842 typename FixedTransformType::OutputPointType localVirtualPoint;
843
844 localVirtualPoint.CastFrom(virtualPoint);
845
846 mappedFixedPoint = this->m_FixedTransform->TransformPoint(localVirtualPoint);
847 }
848 // cast the mapped Fixed Point
849 template <typename TFixedImagePoint>
850 void
852 TFixedImagePoint & mappedFixedPoint) const
853 {
854 typename FixedTransformType::OutputPointType localMappedFixedPoint;
855 localMappedFixedPoint.CastFrom(mappedFixedPoint);
856 localMappedFixedPoint = this->m_FixedTransform->TransformPoint(virtualPoint);
857 mappedFixedPoint.CastFrom(localMappedFixedPoint);
858 }
859 // cast both mapped and fixed point.
860 template <typename TVirtualPoint, typename TFixedImagePoint>
861 void
862 LocalTransformPoint(const TVirtualPoint & virtualPoint, TFixedImagePoint & mappedFixedPoint) const
863 {
864 typename FixedTransformType::OutputPointType localVirtualPoint;
865 typename FixedTransformType::OutputPointType localMappedFixedPoint;
866
867 localVirtualPoint.CastFrom(virtualPoint);
868 localMappedFixedPoint.CastFrom(mappedFixedPoint);
869
870 localMappedFixedPoint = this->m_FixedTransform->TransformPoint(localVirtualPoint);
871 mappedFixedPoint.CastFrom(localMappedFixedPoint);
872 }
873
877
882
885
887
889 mutable bool m_ComputeDerivative{};
890
899};
900} // namespace itk
901
902#ifndef ITK_MANUAL_INSTANTIATION
903# include "itkImageToImageMetricv4.hxx"
904#endif
905
906#endif
TInternalComputationValueType ValueType
Definition itkArray.h:51
OptimizerParameters< TInternalComputationValueType > ParametersType
TInternalComputationValueType ParametersValueType
A templated class holding a n-Dimensional covariant vector.
A simple structure holding type information for ImageToImageMetricv4 classes.
Provides threading for ImageToImageMetricv4::GetValueAndDerivative.
void LocalTransformPoint(const TVirtualPoint &virtualPoint, TFixedImagePoint &mappedFixedPoint) const
virtual void ComputeFixedImageGradientAtPoint(const FixedImagePointType &mappedPoint, FixedImageGradientType &gradient) const
~ImageToImageMetricv4() override=default
virtual void InitializeDefaultFixedImageGradientFilter()
virtual void ComputeMovingImageGradientFilterImage() const
ImageToImageMetricv4GetValueAndDerivativeThreader< ThreadedImageRegionPartitioner< VirtualImageDimension >, Self >::Pointer m_DenseGetValueAndDerivativeThreader
virtual void InitializeForIteration() const
ObjectToObjectMetric< TFixedImage::ImageDimension, TMovingImage::ImageDimension, TVirtualImage, TInternalComputationValueType > Superclass
void Initialize() override
CovariantVector< typename MovingImageGradientType::ValueType, MovingImageDimension > MovingImageComponentGradientType
bool TransformAndEvaluateFixedPoint(const VirtualPointType &virtualPoint, FixedImagePointType &mappedFixedPoint, FixedImagePixelType &mappedFixedPixelValue) const
void SetFixedObject(const ObjectType *object) override
MetricCategoryType GetMetricCategory() const override
MeasureType GetValue() const override
void GetDerivative(DerivativeType &) const override
CovariantVector< typename FixedImageGradientType::ValueType, FixedImageDimension > FixedImageComponentGradientType
virtual void SetMaximumNumberOfWorkUnits(const ThreadIdType number)
void GetValueAndDerivative(MeasureType &value, DerivativeType &derivative) const override
LinearInterpolateImageFunction< FixedImageGradientImageType, CoordinateRepresentationType > FixedImageGradientInterpolatorType
SizeValueType GetNumberOfDomainPoints() const
virtual void ComputeFixedImageGradientFilterImage()
virtual void GetValueAndDerivativeExecute() const
bool TransformAndEvaluateMovingPoint(const VirtualPointType &virtualPoint, MovingImagePointType &mappedMovingPoint, MovingImagePixelType &mappedMovingPixelValue) const
LinearInterpolateImageFunction< MovingImageGradientImageType, CoordinateRepresentationType > MovingImageGradientInterpolatorType
void LocalTransformPoint(const typename FixedTransformType::OutputPointType &virtualPoint, typename FixedTransformType::OutputPointType &mappedFixedPoint) const
void LocalTransformPoint(const TVirtualPoint &virtualPoint, typename FixedTransformType::OutputPointType &mappedFixedPoint) const
ImageToImageMetricv4GetValueAndDerivativeThreader< ThreadedIndexedContainerPartitioner, Self >::Pointer m_SparseGetValueAndDerivativeThreader
virtual ThreadIdType GetMaximumNumberOfWorkUnits() const
CovariantVector< typename VirtualImageGradientType::ValueType, VirtualImageDimension > VirtualImageComponentGradientType
void LocalTransformPoint(const typename FixedTransformType::OutputPointType &virtualPoint, TFixedImagePoint &mappedFixedPoint) const
void PrintSelf(std::ostream &os, Indent indent) const override
void SetMovingObject(const ObjectType *object) override
bool SupportsArbitraryVirtualDomainSamples() const override
virtual void FinalizeThread(const ThreadIdType)
virtual ThreadIdType GetNumberOfWorkUnitsUsed() const
virtual void ComputeMovingImageGradientAtPoint(const MovingImagePointType &mappedPoint, MovingImageGradientType &gradient) const
virtual void InitializeDefaultMovingImageGradientFilter()
Control indentation during Print() invocation.
Definition itkIndent.h:50
Base class for all image interpolators.
Linearly interpolate an image at specified positions.
Transform< TInternalComputationValueType, TVirtualImage::ImageDimension, TMovingDimension > MovingTransformType
typename TPixelType::ValueType ValueType
A superclass of the N-dimensional mesh structure; supports point (geometric coordinate and attribute)...
Definition itkPointSet.h:82
void CastFrom(const Point< TCoordinateB, VPointDimension > &pa)
Definition itkPoint.h:265
Array< TInternalComputationValueType > DerivativeType
Implements transparent reference counting.
Implementation of the composite pattern.
Class for partitioning of an ImageRegion.
Point< TParametersValueType, VOutputDimension > OutputPointType
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType
unsigned long SizeValueType
Definition itkIntTypes.h:86