ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkFixedPointInverseDisplacementFieldImageFilter.h>
Computes the inverse of a Displacement field using a fixed point iteration scheme.
FixedPointInverseDisplacementFieldImageFilter takes a Displacement field as input and computes the Displacement field that is its inverse. If the input Displacement field was mapping coordinates from a space A into a space B, the output of this filter will map coordinates from the space B into the space A.
To compute the inverse of the given Displacement field, the fixed point algorithm by Mingli Chen, Weiguo Lu, Quan Chen, Knneth J. Ruchala and Gusavo H. Olivera described in the paper
"A simple fixed-point approach to invert a Displacement field", Medical Physics, vol. 35, issue 1, p. 81
is applied.
Definition at line 58 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | FieldInterpolatorOutputType = typename FieldInterpolatorType::OutputType |
using | FieldInterpolatorPointer = typename FieldInterpolatorType::Pointer |
using | FieldInterpolatorType = VectorLinearInterpolateImageFunction< TInputImage, double > |
using | InputConstIterator = ImageRegionConstIterator< InputImageType > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImageIndexType = typename InputImageType::IndexType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImagePointType = typename InputImageType::PointType |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageSpacingType = typename InputImageType::SpacingType |
using | InputImageType = TInputImage |
using | InputIterator = ImageRegionIterator< InputImageType > |
using | InterpolatorVectorType = typename NumericTraits< typename TOutputImage::PixelType >::RealType |
using | OutputConstIterator = ImageRegionConstIterator< OutputImageType > |
using | OutputImageIndexType = typename OutputImageType::IndexType |
using | OutputImageOriginPointType = typename TOutputImage::PointType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImagePointType = typename OutputImageType::PointType |
using | OutputImageSizeType = typename OutputImageType::SizeType |
using | OutputImageSpacingType = typename OutputImageType::SpacingType |
using | OutputImageType = TOutputImage |
using | OutputImageValueType = typename OutputImagePixelType::ValueType |
using | OutputIterator = ImageRegionIterator< OutputImageType > |
using | OutputVectorType = typename TOutputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | Self = FixedPointInverseDisplacementFieldImageFilter |
using | Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
using | TimeType = TimeProbe |
using | VectorWarperType = WarpVectorImageFilter< TOutputImage, TInputImage, TOutputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | Pointer = SmartPointer< Self > |
using | Self = ImageToImageFilter |
using | Superclass = ImageSource< TOutputImage > |
Public Types inherited from itk::ImageSource< TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = Superclass::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ImageSource |
using | Superclass = ProcessObject |
Public Types inherited from itk::ProcessObject | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = DataObject::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArray = std::vector< DataObjectPointer > |
using | DataObjectPointerArraySizeType = DataObjectPointerArray::size_type |
using | MultiThreaderType = MultiThreaderBase |
using | NameArray = std::vector< DataObjectIdentifierType > |
using | Pointer = SmartPointer< Self > |
using | Self = ProcessObject |
using | Superclass = Object |
Public Types inherited from itk::Object | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
Public Types inherited from itk::LightObject | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Protected Attributes | |
unsigned int | m_NumberOfIterations |
Protected Attributes inherited from itk::ImageSource< TOutputImage > | |
bool | m_DynamicMultiThreading |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
Private Attributes | |
OutputImageOriginPointType | m_OutputOrigin |
OutputImageSpacingType | m_OutputSpacing |
OutputImageSizeType | m_Size |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 68 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::FieldInterpolatorOutputType = typename FieldInterpolatorType::OutputType |
Definition at line 112 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::FieldInterpolatorPointer = typename FieldInterpolatorType::Pointer |
Definition at line 111 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::FieldInterpolatorType = VectorLinearInterpolateImageFunction<TInputImage, double> |
Definition at line 110 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputConstIterator = ImageRegionConstIterator<InputImageType> |
Definition at line 102 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImageConstPointer = typename InputImageType::ConstPointer |
Definition at line 79 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImageIndexType = typename InputImageType::IndexType |
Definition at line 84 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 80 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImagePointType = typename InputImageType::PointType |
Definition at line 81 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 82 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImageSpacingType = typename InputImageType::SpacingType |
Definition at line 83 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Some type alias.
Definition at line 78 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InputIterator = ImageRegionIterator<InputImageType> |
Definition at line 103 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::InterpolatorVectorType = typename NumericTraits<typename TOutputImage::PixelType>::RealType |
Definition at line 108 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputConstIterator = ImageRegionConstIterator<OutputImageType> |
Definition at line 104 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageIndexType = typename OutputImageType::IndexType |
Definition at line 91 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageOriginPointType = typename TOutputImage::PointType |
Definition at line 95 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImagePixelType = typename OutputImageType::PixelType |
Definition at line 89 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 88 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImagePointType = typename OutputImageType::PointType |
Definition at line 90 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageSizeType = typename OutputImageType::SizeType |
Definition at line 93 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageSpacingType = typename OutputImageType::SpacingType |
Definition at line 94 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 87 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputImageValueType = typename OutputImagePixelType::ValueType |
Definition at line 92 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputIterator = ImageRegionIterator<OutputImageType> |
Definition at line 105 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::OutputVectorType = typename TOutputImage::PixelType |
Definition at line 109 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 67 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::Self = FixedPointInverseDisplacementFieldImageFilter |
Standard class type alias.
Definition at line 65 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<TInputImage,TOutputImage> |
Definition at line 66 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::TimeType = TimeProbe |
Definition at line 96 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
using itk::FixedPointInverseDisplacementFieldImageFilter< TInputImage, TOutputImage >::VectorWarperType = WarpVectorImageFilter<TOutputImage,TInputImage,TOutputImage> |
Definition at line 107 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
protected |
Begin concept checking End concept checking
|
inlineoverrideprotected |
Definition at line 151 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
overrideprotectedvirtual |
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling DynamicThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter can be threaded, it should NOT provide a GenerateData() method but should provide a DynamicThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
What is the input requested region that is required to produce the output requested region? The base assumption for image processing filters is that the input requested region can be set to match the output requested region. If a filter requires more input (for instance a filter that uses neighborhoods needs more input than output to avoid introducing artificial boundary conditions) or less input (for instance a magnify filter) will have to override this method. In doing so, it should call its superclass' implementation as its first step. Note that imaging filters operate differently than the classes to this point in the class hierarchy. Up till now, the base assumption has been that the largest possible region will be requested of the input.
This implementation of GenerateInputRequestedRegion() only processes the inputs that are a subclass of the ImageBase<InputImageDimension>. If an input is another type of DataObject (including an Image of a different dimension), they are skipped by this method. The subclasses of ImageToImageFilter are responsible for providing an implementation of GenerateInputRequestedRegion() when there are multiple inputs of different types.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
overrideprotectedvirtual |
Generate the information describing the output data. The default implementation of this method will copy information from the input to the output. A filter may override this method if its output will have different information than its input. For instance, a filter that shrinks an image will need to provide an implementation for this method that changes the spacing of the pixels. Such filters should call their superclass' implementation of this method prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information.
Reimplemented from itk::ProcessObject.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
|
virtual |
Get the output image spacing.
|
virtual |
Get the size of the output image.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
|
virtual |
Set the output image origin.
|
virtual |
Set the output image origin.
|
virtual |
Set the output image spacing.
|
virtual |
Set the output image spacing.
|
virtual |
Set the size of the output image.
|
static |
Number of dimensions.
Definition at line 100 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
protected |
Definition at line 160 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
private |
Definition at line 166 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
private |
Definition at line 165 of file itkFixedPointInverseDisplacementFieldImageFilter.h.
|
private |
Definition at line 164 of file itkFixedPointInverseDisplacementFieldImageFilter.h.