go home Home | Main Page | Topics | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage > Class Template Reference

#include <itkMultiResolutionGaussianSmoothingPyramidImageFilter.h>

Detailed Description

template<typename TInputImage, typename TOutputImage>
class itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >

Framework for creating images in a multi-resolution pyramid.

MultiResolutionGaussianSmoothingPyramidImageFilter creates an image pryamid according to a user defined multi-resolution schedule.

This class inherits from the MultiResolutionPyramidImageFilter. It applies the same smoothing but does NOT do the downsampling.

The multi-resolution schedule is still specified in terms for 'shrink factors' at each multi-resolution level for each dimension (although, actual shrinking is not performed).

A user can either use the default schedules or specify each factor in the schedules directly.

The schedule is stored as an unsigned int matrix. An element of the table can be access via the double bracket notation: table[resLevel][dimension]

For example: 8 4 4 4 4 2

is a schedule for two computation level. In the first (coarest) level the image is reduce by a factor of 8 in the column dimension, factor of 4 in the row dimension and factor of 4 in the slice dimension. In the second level, the image is reduce by a factor of 4 in the column dimension, 4 is the row dimension and 2 in the slice dimension.

The method SetNumberOfLevels() set the number of computation levels in the pyramid. This method will allocate memory for the multi-resolution schedule table. This method generates defaults tables with the starting shrink factor for all dimension set to 2^(NumberOfLevel - 1). All factors are halved for all subsequent levels. For example if the number of levels was set to 4, the default table is:

8 8 8 4 4 4 2 2 2 1 1 1

The user can get a copy of the schedule via GetSchedule() They may make alteration and reset it using SetSchedule().

A user can create a default table by specifying the starting shrink factors via methods SetStartingShrinkFactors() The factors for subsequent level is generated by halving the factor or setting to one, depending on which is larger.

For example, for 4 levels and starting factors of 8,8,4 the default table would be:

8 8 4 4 4 2 2 2 1 1 1 1

When this filter is updated, NumberOfLevels outputs are produced. The N'th output correspond to the N'th level of the pyramid.

To generate each output image, Gaussian smoothing is first performed using a series of RecursiveGaussianImageFilter with standard deviation (shrink factor / 2)*imagespacing.

When either a shrink factor is set to zero for a particular dimension, or when the dimension itself is 1, or both, no smoothing is performed along that dimension.

The smoothed images are NOT downsampled, in contrast to the superclass's behaviour.

This class is templated over the input image type and the output image type.

This filter uses multithreaded filters to perform the smoothing.

This filter supports streaming.

Definition at line 127 of file itkMultiResolutionGaussianSmoothingPyramidImageFilter.h.

Inheritance diagram for itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >:

Public Types

using ConstPointer = SmartPointer<const Self>
using Pointer = SmartPointer<Self>
using Self = MultiResolutionGaussianSmoothingPyramidImageFilter
using Superclass = MultiResolutionPyramidImageFilter<TInputImage, TOutputImage>

Public Member Functions

void GenerateInputRequestedRegion () override
void GenerateOutputInformation () override
void GenerateOutputRequestedRegion (DataObject *output) override
 ITK_DISALLOW_COPY_AND_MOVE (MultiResolutionGaussianSmoothingPyramidImageFilter)
 itkOverrideGetNameOfClassMacro (MultiResolutionGaussianSmoothingPyramidImageFilter)
 itkStaticConstMacro (ImageDimension, unsigned int, TInputImage::ImageDimension)
 itkStaticConstMacro (OutputImageDimension, unsigned int, TOutputImage::ImageDimension)
void SetSchedule (const ScheduleType &schedule) override

Static Public Member Functions

static Pointer New ()

Protected Member Functions

void EnlargeOutputRequestedRegion (DataObject *output) override
void GenerateData () override
 MultiResolutionGaussianSmoothingPyramidImageFilter ()=default
 ~MultiResolutionGaussianSmoothingPyramidImageFilter () override=default

Member Typedef Documentation

◆ ConstPointer

template<typename TInputImage, typename TOutputImage>
using itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self>

◆ Pointer

template<typename TInputImage, typename TOutputImage>
using itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self>

◆ Self

template<typename TInputImage, typename TOutputImage>
using itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::Self = MultiResolutionGaussianSmoothingPyramidImageFilter

Standard class typedefs.

Definition at line 134 of file itkMultiResolutionGaussianSmoothingPyramidImageFilter.h.

◆ Superclass

template<typename TInputImage, typename TOutputImage>
using itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::Superclass = MultiResolutionPyramidImageFilter<TInputImage, TOutputImage>

Constructor & Destructor Documentation

◆ MultiResolutionGaussianSmoothingPyramidImageFilter()

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::MultiResolutionGaussianSmoothingPyramidImageFilter ( )
protecteddefault

◆ ~MultiResolutionGaussianSmoothingPyramidImageFilter()

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::~MultiResolutionGaussianSmoothingPyramidImageFilter ( )
overrideprotecteddefault

Member Function Documentation

◆ EnlargeOutputRequestedRegion()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::EnlargeOutputRequestedRegion ( DataObject * output)
overrideprotected

This filter by default generates the largest possible region, because it uses internally a filter that does this.

◆ GenerateData()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::GenerateData ( )
overrideprotected

Generate the output data.

◆ GenerateInputRequestedRegion()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::GenerateInputRequestedRegion ( )
override

MultiResolutionGaussianSmoothingPyramidImageFilter requires a larger input requested region than the output requested regions to accomdate the smoothing operations. As such, MultiResolutionGaussianSmoothingPyramidImageFilter needs to provide an implementation for GenerateInputRequestedRegion(). The original documentation of this method is below.

See also
ProcessObject::GenerateInputRequestedRegion()

◆ GenerateOutputInformation()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::GenerateOutputInformation ( )
override

Set spacing etc.

◆ GenerateOutputRequestedRegion()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::GenerateOutputRequestedRegion ( DataObject * output)
override

Given one output whose requested region has been set, this method sets the requested region for the remaining output images. The original documentation of this method is below.

See also
ProcessObject::GenerateOutputRequestedRegion();

◆ ITK_DISALLOW_COPY_AND_MOVE()

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::ITK_DISALLOW_COPY_AND_MOVE ( MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage > )

◆ itkOverrideGetNameOfClassMacro()

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::itkOverrideGetNameOfClassMacro ( MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage > )

Run-time type information (and related methods).

◆ itkStaticConstMacro() [1/2]

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::itkStaticConstMacro ( ImageDimension ,
unsigned int ,
TInputImage::ImageDimension  )

ImageDimension enumeration.

◆ itkStaticConstMacro() [2/2]

template<typename TInputImage, typename TOutputImage>
itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::itkStaticConstMacro ( OutputImageDimension ,
unsigned int ,
TOutputImage::ImageDimension  )

◆ New()

template<typename TInputImage, typename TOutputImage>
Pointer itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::New ( )
static

Method for creation through the object factory.

◆ SetSchedule()

template<typename TInputImage, typename TOutputImage>
void itk::MultiResolutionGaussianSmoothingPyramidImageFilter< TInputImage, TOutputImage >::SetSchedule ( const ScheduleType & schedule)
override

Set a multi-resolution schedule. The input schedule must have only ImageDimension number of columns and NumberOfLevels number of rows. In contrast to the superclass, any schedule is allowed:

  • For each dimension, the shrink factor may be non-increasing with respect to subsequent levels.
  • shrink factors of 0 are allowed. This results in almost no smoothing. Because of lazy programming, the image is then smoothed with a gauss with sigma of 0.01*spacing...

Note that the images are not actually shrunk by this class. They are only smoothed with the same standard deviation gaussian as used by the superclass.



Generated on 26-02-2026 for elastix by doxygen 1.16.1 (669aeeefca743c148e2d935b3d3c69535c7491e6) elastix logo