Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages |
#include <itkGenericMultiResolutionPyramidImageFilter.h>
Framework for creating images in a multi-resolution pyramid.
GenericMultiResolutionPyramidImageFilter provides a generic framework to to create a image pyramid according to a user defined multi-resolution rescale and smoothing schedules.
The multi-resolution rescale schedule is specified in terms of shrink factors at each multi-resolution level for each dimension
The rescale schedule is stored as an unsigned int matrix. An element of the table can be access via the double bracket notation: schedule[level][dimension] For example: 8 4 4 4 4 2
is a rescale 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 rescale 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 rescale schedule via GetRescaleSchedule() They may make alteration and reset it using SetRescaleSchedule()
To generate each output image, recursive Gaussian smoothing is performed using a SmoothingRecursiveGaussianImageFilter.
The user can make alteration on smoothing schedule via SetSmoothingSchedule() For example, for 4 levels smoothing schedule would be: 3 4 5 2 2 2 0 1 2 0 0 0
In the first level all sigma are set to the same value 2 across each axis. Sigma is measured in the units of image spacing. Use different values along each axis if you would like perform nonidentical smoothing (see level 1) Although for the level 2 no smoothing will be performed because all sigma values are equal zeros. For the last level 3 smoothing will be performed with sigma 0 for x axis.
The default smoothing schedule is derived from the rescale schedule, where each element is computed as: 0.5 * rescale_factor * image_spacing.
The user can get a copy of the schedule via GetSmoothingSchedule()
The smoothed image is then downsampled using a ResampleImageFilter or ShrinkImageFilter depending on SetUseShrinkImageFilter().
When this filter is updated, NumberOfLevels outputs are produced. The N'th output correspond to the N'th level of the pyramid.
The user can influence whether or not rescale schedule or smoothing schedule will be used via SetRescaleScheduleToUnity() and SetSmoothingScheduleToZero() methods.
The GenericMultiResolutionPyramidImageFilter provides direct control to compute only single level of the pyramid via SetCurrentLevel() and SetComputeOnlyForCurrentLevel() methods.
This implementation was taken from elastix (http://elastix.isi.uu.nl/).
Definition at line 117 of file itkGenericMultiResolutionPyramidImageFilter.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::InputImageConstPointer | InputImageConstPointer |
typedef Superclass::InputImagePointer | InputImagePointer |
typedef Superclass::InputImageType | InputImageType |
typedef Superclass::OutputImagePointer | OutputImagePointer |
typedef Superclass::OutputImageType | OutputImageType |
typedef SmartPointer< Self > | Pointer |
typedef SigmaArrayType | RescaleFactorArrayType |
typedef ScheduleType | RescaleScheduleType |
typedef NumericTraits< PixelType >::ScalarRealType | ScalarRealType |
typedef Superclass::ScheduleType | ScheduleType |
typedef GenericMultiResolutionPyramidImageFilter | Self |
typedef FixedArray< ScalarRealType, itkGetStaticConstMacro(ImageDimension) > | SigmaArrayType |
typedef Array2D< ScalarRealType > | SmoothingScheduleType |
typedef Superclass::InputImageType::SpacingType | SpacingType |
typedef MultiResolutionPyramidImageFilter< TInputImage, TOutputImage > | Superclass |
typedef Superclass::Superclass | SuperSuperclass |
Public Member Functions | |
virtual void | ComputeOnlyForCurrentLevelOff () |
virtual void | ComputeOnlyForCurrentLevelOn () |
virtual const char * | GetClassName () const |
virtual bool | GetComputeOnlyForCurrentLevel () const |
virtual const unsigned int & | GetCurrentLevel () |
const RescaleScheduleType & | GetRescaleSchedule (void) const |
virtual const SmoothingScheduleType & | GetSmoothingSchedule () |
itkStaticConstMacro (ImageDimension, unsigned int, TInputImage::ImageDimension) | |
itkStaticConstMacro (OutputImageDimension, unsigned int, TOutputImage::ImageDimension) | |
virtual void | SetComputeOnlyForCurrentLevel (const bool _arg) |
virtual void | SetCurrentLevel (unsigned int level) |
void | SetNumberOfLevels (unsigned int num) override |
virtual void | SetRescaleSchedule (const RescaleScheduleType &schedule) |
virtual void | SetRescaleScheduleToUnity (void) |
void | SetSchedule (const ScheduleType &schedule) override |
virtual void | SetSmoothingSchedule (const SmoothingScheduleType &schedule) |
virtual void | SetSmoothingScheduleToZero (void) |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
void | GenerateData (void) override |
void | GenerateInputRequestedRegion (void) override |
void | GenerateOutputInformation (void) override |
void | GenerateOutputRequestedRegion (DataObject *output) override |
GenericMultiResolutionPyramidImageFilter () | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
void | ReleaseOutputs (void) |
~GenericMultiResolutionPyramidImageFilter () override | |
Protected Attributes | |
bool | m_ComputeOnlyForCurrentLevel |
unsigned int | m_CurrentLevel |
SmoothingScheduleType | m_SmoothingSchedule |
bool | m_SmoothingScheduleDefined |
Private Types | |
typedef ImageToImageFilter< InputImageType, OutputImageType > | ImageToImageFilterDifferentTypes |
typedef ImageToImageFilter< OutputImageType, OutputImageType > | ImageToImageFilterSameTypes |
typedef SmoothingRecursiveGaussianImageFilter< InputImageType, OutputImageType > | SmootherType |
Private Member Functions | |
bool | AreRescaleFactorsAllOnes (const RescaleFactorArrayType &rescaleFactorArray) const |
bool | AreSigmasAllZeros (const SigmaArrayType &sigmaArray) const |
bool | ComputeForCurrentLevel (const unsigned int level) const |
void | DefineShrinkerOrResampler (const bool sameType, const RescaleFactorArrayType &shrinkFactors, const OutputImagePointer &outputPtr, typename ImageToImageFilterSameTypes::Pointer &rescaleSameTypes, typename ImageToImageFilterDifferentTypes::Pointer &rescaleDifferentTypes) |
GenericMultiResolutionPyramidImageFilter (const Self &) | |
double | GetDefaultSigma (const unsigned int level, const unsigned int dim, const unsigned int *factors, const SpacingType &spacing) const |
void | GetShrinkFactors (const unsigned int level, RescaleFactorArrayType &shrinkFactors) const |
void | GetSigma (const unsigned int level, SigmaArrayType &sigmaArray) const |
bool | IsRescaleUsed (void) const |
bool | IsSmoothingUsed (void) const |
void | operator= (const Self &) |
void | SetSmoothingScheduleToDefault (void) |
int | SetupShrinkerOrResampler (const unsigned int level, typename SmootherType::Pointer &smoother, const bool sameType, const InputImageConstPointer &input, const OutputImagePointer &outputPtr, typename ImageToImageFilterSameTypes::Pointer &rescaleSameTypes, typename ImageToImageFilterDifferentTypes::Pointer &rescaleDifferentTypes) |
bool | SetupSmoother (const unsigned int level, typename SmootherType::Pointer &smoother, const InputImageConstPointer &input) |
typedef SmartPointer< const Self > itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::ConstPointer |
Definition at line 128 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Definition at line 285 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Typedefs for shrinker or resample. If smoother has not been used, then we have to use InputImageType to OutputImageType, otherwise OutputImageType to OutputImageType.
Definition at line 283 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::InputImageConstPointer itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::InputImageConstPointer |
Definition at line 149 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::InputImagePointer itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::InputImagePointer |
Definition at line 147 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::InputImageType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::InputImageType |
Definition at line 145 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::OutputImagePointer itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::OutputImagePointer |
Definition at line 148 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::OutputImageType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::OutputImageType |
Definition at line 146 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef SmartPointer< Self > itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Pointer |
Definition at line 127 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef SigmaArrayType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::RescaleFactorArrayType |
Definition at line 161 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef ScheduleType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::RescaleScheduleType |
Definition at line 156 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef NumericTraits<PixelType>::ScalarRealType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::ScalarRealType |
Definition at line 152 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::ScheduleType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::ScheduleType |
Inherit types from Superclass.
Definition at line 144 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef GenericMultiResolutionPyramidImageFilter itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Self |
Standard class typedefs.
Definition at line 123 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef FixedArray< ScalarRealType, itkGetStaticConstMacro( ImageDimension ) > itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SigmaArrayType |
Define the type for the sigma array.
Definition at line 160 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Typedef for smoother. Smooth always happens first, then only from InputImageType to OutputImageType is possible.
Definition at line 276 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Array2D< ScalarRealType > itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SmoothingScheduleType |
SmoothingScheduleType typedef support.
Definition at line 155 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::InputImageType::SpacingType itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SpacingType |
Definition at line 150 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef MultiResolutionPyramidImageFilter< TInputImage, TOutputImage > itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Superclass |
Definition at line 125 of file itkGenericMultiResolutionPyramidImageFilter.h.
typedef Superclass::Superclass itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SuperSuperclass |
Definition at line 126 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
|
inlineoverrideprotected |
Definition at line 235 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
|
private |
Returns true if all elements of rescaleFactorArray are ones, otherwise return false.
|
private |
Returns true if all elements of sigmaArray are zeros, otherwise return false.
|
private |
Checks whether we have to compute anything based on m_ComputeOnlyForCurrentLevel and m_CurrentLevel.
|
virtual |
|
virtual |
|
private |
Defines Shrink or Resample filters.
|
overrideprotected |
Generate the output data.
|
overrideprotected |
Overwrite the Superclass implementation: no padding required.
|
overrideprotected |
GenericMultiResolutionPyramidImageFilter may produce images which are of different resolution and different pixel spacing than its input image. As such, GenericMultiResolutionPyramidImageFilter needs to provide an implementation for GenerateOutputInformation() in order to inform the pipeline execution model. The original documentation of this method is below.
|
overrideprotected |
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.
|
virtual |
Run-time type information (and related methods).
Reimplemented in elastix::FixedGenericPyramid< TElastix >, elastix::OpenCLFixedGenericPyramid< TElastix >, elastix::MovingGenericPyramid< TElastix >, and elastix::OpenCLMovingGenericPyramid< TElastix >.
|
virtual |
|
virtual |
Get the current multi-resolution level.
|
private |
Backward compatibility method to compute default sigma value.
|
inline |
Get the multi-resolution rescale schedule.
Definition at line 185 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Get shrink factors from m_Schedule for the level.
|
private |
Get sigmas from m_SmoothingSchedule for the level.
|
virtual |
Get the multi-resolution smoothing schedule.
|
private |
Returns true if rescale has been used in pipeline, otherwise return false.
|
private |
Returns true if smooth has been used in pipeline, otherwise return false.
itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::itkStaticConstMacro | ( | ImageDimension | , |
unsigned int | , | ||
TInputImage::ImageDimension | |||
) |
ImageDimension enumeration.
itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::itkStaticConstMacro | ( | OutputImageDimension | , |
unsigned int | , | ||
TOutputImage::ImageDimension | |||
) |
|
static |
Method for creation through the object factory.
|
private |
|
overrideprotected |
PrintSelf.
|
protected |
Release the output data when the current level is used.
|
virtual |
Set a control on whether a current level will be used.
|
virtual |
Set the current multi-resolution levels. The current level is clamped to a total number of levels.
|
override |
Set the number of multi-resolution levels. The matrices containing the schedule will be resized accordingly. The schedules are populated with default values.
|
virtual |
Set a multi-resolution rescale schedule. The input schedule must have only ImageDimension number of columns and NumberOfLevels number of rows. For each dimension, the shrink factor must be non-increasing with respect to subsequent levels. This function will clamp shrink factors to satisfy this condition. All shrink factors less than one will also be clamped to the value of 1.
|
virtual |
Set a multi-resolution rescale schedule with ones.
|
override |
Set a multi-resolution schedule. The input schedule must have only ImageDimension number of columns and NumberOfLevels number of rows. For each dimension, the shrink factor must be non-increasing with respect to subsequent levels. This function will clamp shrink factors to satisfy this condition. All shrink factors less than one will also be clamped to the value of 1.
|
virtual |
Set a multi-resolution smoothing schedule. The input schedule must have only ImageDimension number of columns and NumberOfLevels number of rows. All sigmas less than 0 will also be clamped to the value of 0.
|
private |
Initialize m_SmoothingSchedule to default values for backward compatibility.
|
virtual |
Set a multi-resolution rescale schedule with zeros.
|
private |
Shrink or Resample image at current level. Returns 1 or 2 if performed, 0 otherwise. This method does not perform execution.
|
private |
Smooth image at current level. Returns true if performed. This method does not perform execution.
|
protected |
Definition at line 267 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 266 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 265 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 268 of file itkGenericMultiResolutionPyramidImageFilter.h.
Generated on 1667476801 for elastix by 1.9.4 |