go home Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
itk::ErodeMaskImageFilter< TImage > Class Template Reference

#include <itkErodeMaskImageFilter.h>

Detailed Description

template<class TImage>
class itk::ErodeMaskImageFilter< TImage >

This filter computes the Erosion of a mask image. It makes only sense for masks used in a multiresolution registration procedure.

The input to this filter is a scalar-valued itk::Image of arbitrary dimension. The output is a scalar-valued itk::Image, of the same type as the input image. This restriction is not really necessary, but easier for coding.

If IsMovingMask == false:
If more resolution levels are used, the image is subsampled. Before subsampling the image is smoothed with a Gaussian filter, with variance (schedule/2)^2. The 'schedule' depends on the resolution level. The 'radius' of the convolution filter is roughly twice the standard deviation. Thus, the parts in the edge with size 'radius' are influenced by the background.
--> radius = static_cast<unsigned long>( schedule + 1 );

If IsMovingMask == true:
Same story as before. Now the size the of the eroding element is doubled. This is because the gradient of the moving image is used for calculating the derivative of the metric.
--> radius = static_cast<unsigned long>( 2 * schedule + 1 );

See also
ParabolicErodeImageFilter

Definition at line 57 of file itkErodeMaskImageFilter.h.

+ Inheritance diagram for itk::ErodeMaskImageFilter< TImage >:

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef MultiResolutionPyramidImageFilter< InputImageType, OutputImageTypeImagePyramidFilterType
 
typedef InputImageType::Pointer InputImagePointer
 
typedef TImage InputImageType
 
typedef InputImageType::PixelType InputPixelType
 
typedef OutputImageType::Pointer OutputImagePointer
 
typedef TImage OutputImageType
 
typedef OutputImageType::PixelType OutputPixelType
 
typedef SmartPointer< SelfPointer
 
typedef ImagePyramidFilterType::ScheduleType ScheduleType
 
typedef ErodeMaskImageFilter Self
 
typedef ImageToImageFilter< TImage, TImage > Superclass
 

Public Member Functions

virtual const char * GetClassName () const
 
virtual bool GetIsMovingMask () const
 
virtual unsigned int GetResolutionLevel () const
 
virtual const ScheduleTypeGetSchedule ()
 
 itkStaticConstMacro (ImageDimension, unsigned int, OutputImageType::ImageDimension)
 
 itkStaticConstMacro (InputImageDimension, unsigned int, InputImageType::ImageDimension)
 
 itkStaticConstMacro (OutputImageDimension, unsigned int, OutputImageType::ImageDimension)
 
virtual void SetIsMovingMask (bool _arg)
 
virtual void SetResolutionLevel (unsigned int _arg)
 
virtual void SetSchedule (const ScheduleType &schedule)
 

Static Public Member Functions

static Pointer New ()
 

Protected Member Functions

 ErodeMaskImageFilter ()
 
void GenerateData (void) override
 
 ~ErodeMaskImageFilter () override
 

Private Member Functions

 ErodeMaskImageFilter (const Self &)
 
void operator= (const Self &)
 

Private Attributes

bool m_IsMovingMask
 
unsigned int m_ResolutionLevel
 
ScheduleType m_Schedule
 

Member Typedef Documentation

◆ ConstPointer

template<class TImage >
typedef SmartPointer< const Self > itk::ErodeMaskImageFilter< TImage >::ConstPointer

Definition at line 66 of file itkErodeMaskImageFilter.h.

◆ ImagePyramidFilterType

template<class TImage >
typedef MultiResolutionPyramidImageFilter< InputImageType, OutputImageType > itk::ErodeMaskImageFilter< TImage >::ImagePyramidFilterType

Define the schedule type.

Definition at line 92 of file itkErodeMaskImageFilter.h.

◆ InputImagePointer

template<class TImage >
typedef InputImageType::Pointer itk::ErodeMaskImageFilter< TImage >::InputImagePointer

Definition at line 77 of file itkErodeMaskImageFilter.h.

◆ InputImageType

template<class TImage >
typedef TImage itk::ErodeMaskImageFilter< TImage >::InputImageType

Typedefs.

Definition at line 75 of file itkErodeMaskImageFilter.h.

◆ InputPixelType

template<class TImage >
typedef InputImageType::PixelType itk::ErodeMaskImageFilter< TImage >::InputPixelType

Definition at line 79 of file itkErodeMaskImageFilter.h.

◆ OutputImagePointer

template<class TImage >
typedef OutputImageType::Pointer itk::ErodeMaskImageFilter< TImage >::OutputImagePointer

Definition at line 78 of file itkErodeMaskImageFilter.h.

◆ OutputImageType

template<class TImage >
typedef TImage itk::ErodeMaskImageFilter< TImage >::OutputImageType

Definition at line 76 of file itkErodeMaskImageFilter.h.

◆ OutputPixelType

template<class TImage >
typedef OutputImageType::PixelType itk::ErodeMaskImageFilter< TImage >::OutputPixelType

Definition at line 80 of file itkErodeMaskImageFilter.h.

◆ Pointer

template<class TImage >
typedef SmartPointer< Self > itk::ErodeMaskImageFilter< TImage >::Pointer

Definition at line 65 of file itkErodeMaskImageFilter.h.

◆ ScheduleType

template<class TImage >
typedef ImagePyramidFilterType::ScheduleType itk::ErodeMaskImageFilter< TImage >::ScheduleType

Definition at line 93 of file itkErodeMaskImageFilter.h.

◆ Self

template<class TImage >
typedef ErodeMaskImageFilter itk::ErodeMaskImageFilter< TImage >::Self

Standard ITK stuff.

Definition at line 63 of file itkErodeMaskImageFilter.h.

◆ Superclass

template<class TImage >
typedef ImageToImageFilter< TImage, TImage > itk::ErodeMaskImageFilter< TImage >::Superclass

Definition at line 64 of file itkErodeMaskImageFilter.h.

Constructor & Destructor Documentation

◆ ErodeMaskImageFilter() [1/2]

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::ErodeMaskImageFilter ( )
protected

Constructor.

◆ ~ErodeMaskImageFilter()

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::~ErodeMaskImageFilter ( )
inlineoverrideprotected

Destructor

Definition at line 133 of file itkErodeMaskImageFilter.h.

◆ ErodeMaskImageFilter() [2/2]

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::ErodeMaskImageFilter ( const Self )
private

Member Function Documentation

◆ GenerateData()

template<class TImage >
void itk::ErodeMaskImageFilter< TImage >::GenerateData ( void  )
overrideprotected

Standard pipeline method. While this class does not implement a ThreadedGenerateData(), its GenerateData() delegates all calculations to the ParabolicErodeImageFilter, which is multi-threaded.

◆ GetClassName()

template<class TImage >
virtual const char * itk::ErodeMaskImageFilter< TImage >::GetClassName ( ) const
virtual

Run-time type information (and related methods).

◆ GetIsMovingMask()

template<class TImage >
virtual bool itk::ErodeMaskImageFilter< TImage >::GetIsMovingMask ( ) const
virtual

◆ GetResolutionLevel()

template<class TImage >
virtual unsigned int itk::ErodeMaskImageFilter< TImage >::GetResolutionLevel ( ) const
virtual

◆ GetSchedule()

template<class TImage >
virtual const ScheduleType & itk::ErodeMaskImageFilter< TImage >::GetSchedule ( )
virtual

◆ itkStaticConstMacro() [1/3]

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::itkStaticConstMacro ( ImageDimension  ,
unsigned int  ,
OutputImageType::ImageDimension   
)

◆ itkStaticConstMacro() [2/3]

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::itkStaticConstMacro ( InputImageDimension  ,
unsigned int  ,
InputImageType::ImageDimension   
)

Dimensionality of the two images is assumed to be the same.

◆ itkStaticConstMacro() [3/3]

template<class TImage >
itk::ErodeMaskImageFilter< TImage >::itkStaticConstMacro ( OutputImageDimension  ,
unsigned int  ,
OutputImageType::ImageDimension   
)

◆ New()

template<class TImage >
static Pointer itk::ErodeMaskImageFilter< TImage >::New ( )
static

Method for creation through the object factory.

◆ operator=()

template<class TImage >
void itk::ErodeMaskImageFilter< TImage >::operator= ( const Self )
private

◆ SetIsMovingMask()

template<class TImage >
virtual void itk::ErodeMaskImageFilter< TImage >::SetIsMovingMask ( bool  _arg)
virtual

Set/Get whether the mask serves as a 'moving mask' in the registration Moving masks are eroded with a slightly larger kernel, because the derivative is usually taken on the moving image. Default: false

◆ SetResolutionLevel()

template<class TImage >
virtual void itk::ErodeMaskImageFilter< TImage >::SetResolutionLevel ( unsigned int  _arg)
virtual

Set the resolution level of the registration. Default: 0.

◆ SetSchedule()

template<class TImage >
virtual void itk::ErodeMaskImageFilter< TImage >::SetSchedule ( const ScheduleType schedule)
inlinevirtual

Set/Get the pyramid schedule used to downsample the image whose mask is the input of the ErodeMaskImageFilter Default: filled with ones, one resolution.

Definition at line 99 of file itkErodeMaskImageFilter.h.

Field Documentation

◆ m_IsMovingMask

template<class TImage >
bool itk::ErodeMaskImageFilter< TImage >::m_IsMovingMask
private

Definition at line 146 of file itkErodeMaskImageFilter.h.

◆ m_ResolutionLevel

template<class TImage >
unsigned int itk::ErodeMaskImageFilter< TImage >::m_ResolutionLevel
private

Definition at line 147 of file itkErodeMaskImageFilter.h.

◆ m_Schedule

template<class TImage >
ScheduleType itk::ErodeMaskImageFilter< TImage >::m_Schedule
private

Definition at line 148 of file itkErodeMaskImageFilter.h.



Generated on 1667476801 for elastix by doxygen 1.9.4 elastix logo