#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.dev/).
Definition at line 117 of file itkGenericMultiResolutionPyramidImageFilter.h.
Public Types | |
using | ConstPointer = SmartPointer<const Self> |
using | Pointer = SmartPointer<Self> |
using | RescaleFactorArrayType = SigmaArrayType |
using | RescaleScheduleType = ScheduleType |
using | ScalarRealType = typename NumericTraits<PixelType>::ScalarRealType |
using | Self = GenericMultiResolutionPyramidImageFilter |
using | SigmaArrayType = FixedArray<ScalarRealType, Self::ImageDimension> |
using | SmoothingScheduleType = vnl_matrix<ScalarRealType> |
using | SpacingType = typename Superclass::InputImageType::SpacingType |
using | Superclass = MultiResolutionPyramidImageFilter<TInputImage, TOutputImage> |
using | SuperSuperclass = typename Superclass::Superclass |
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 () const |
virtual const SmoothingScheduleType & | GetSmoothingSchedule () |
ITK_DISALLOW_COPY_AND_MOVE (GenericMultiResolutionPyramidImageFilter) | |
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 | SetSchedule (const ScheduleType &schedule) override |
virtual void | SetSmoothingSchedule (const SmoothingScheduleType &schedule) |
virtual void | SetSmoothingScheduleToZero () |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
void | GenerateData () override |
void | GenerateInputRequestedRegion () override |
void | GenerateOutputInformation () override |
void | GenerateOutputRequestedRegion (DataObject *output) override |
GenericMultiResolutionPyramidImageFilter () | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
void | ReleaseOutputs () |
~GenericMultiResolutionPyramidImageFilter () override=default | |
Protected Attributes | |
bool | m_ComputeOnlyForCurrentLevel {} |
unsigned int | m_CurrentLevel {} |
SmoothingScheduleType | m_SmoothingSchedule {} |
bool | m_SmoothingScheduleDefined {} |
Private Types | |
using | ImageToImageFilterDifferentTypes = ImageToImageFilter<InputImageType, OutputImageType> |
using | ImageToImageFilterSameTypes = ImageToImageFilter<OutputImageType, OutputImageType> |
using | SmootherType = SmoothingRecursiveGaussianImageFilter<InputImageType, OutputImageType> |
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) |
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 () const |
bool | IsSmoothingUsed () const |
void | SetSmoothingScheduleToDefault () |
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) |
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::ConstPointer = SmartPointer<const Self> |
Definition at line 128 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Definition at line 289 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 288 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Pointer = SmartPointer<Self> |
Definition at line 127 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::RescaleFactorArrayType = SigmaArrayType |
Definition at line 157 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::RescaleScheduleType = ScheduleType |
Definition at line 153 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::ScalarRealType = typename NumericTraits<PixelType>::ScalarRealType |
Definition at line 149 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Self = GenericMultiResolutionPyramidImageFilter |
Standard class typedefs.
Definition at line 124 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SigmaArrayType = FixedArray<ScalarRealType, Self::ImageDimension> |
Define the type for the sigma array.
Definition at line 156 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
private |
Typedef for smoother. Smooth always happens first, then only from InputImageType to OutputImageType is possible.
Definition at line 282 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SmoothingScheduleType = vnl_matrix<ScalarRealType> |
SmoothingScheduleType typedef support.
Definition at line 152 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SpacingType = typename Superclass::InputImageType::SpacingType |
Definition at line 147 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::Superclass = MultiResolutionPyramidImageFilter<TInputImage, TOutputImage> |
Definition at line 125 of file itkGenericMultiResolutionPyramidImageFilter.h.
using itk::GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType >::SuperSuperclass = typename Superclass::Superclass |
Definition at line 126 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
|
overrideprotecteddefault |
|
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::MovingGenericPyramid< TElastix >, elastix::OpenCLFixedGenericPyramid< 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 >::ITK_DISALLOW_COPY_AND_MOVE | ( | GenericMultiResolutionPyramidImageFilter< TInputImage, TOutputImage, TPrecisionType > | ) |
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.
|
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 275 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 274 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 273 of file itkGenericMultiResolutionPyramidImageFilter.h.
|
protected |
Definition at line 276 of file itkGenericMultiResolutionPyramidImageFilter.h.
Generated on 2024-07-17 for elastix by 1.11.0 (9b424b03c9833626cd435af22a444888fbbb192d) |