ITK  5.4.0
Insight Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType > Class Template Reference

#include <itkBSplineUpsampleImageFilter.h>

Detailed Description

template<typename TInputImage, typename TOutputImage, typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
class itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >

Uses B-Spline interpolation to upsample an image by a factor of 2. This class is the public interface for spline upsampling as defined by the ResamplerType.

Requires the use of a resampler type. If in doubt, the basic itkBSplineResampleImageFilterBase should work fine for most applications.

This class defines N-Dimension B-Spline transformation. It is based on: [1] M. Unser, "Splines: A Perfect Fit for Signal and Image Processing," IEEE Signal Processing Magazine, vol. 16, no. 6, pp. 22-38, November 1999. [2] M. Unser, A. Aldroubi and M. Eden, "B-Spline Signal Processing: Part I--Theory," IEEE Transactions on Signal Processing, vol. 41, no. 2, pp. 821-832, February 1993. [3] M. Unser, A. Aldroubi and M. Eden, "B-Spline Signal Processing: Part II--Efficient Design and Applications," IEEE Transactions on Signal Processing, vol. 41, no. 2, pp. 834-848, February 1993. And code obtained from bigwww.epfl.ch by Philippe Thevenaz

Limitations: This class requires specification of a resampler type which may be one of: BSplineResampleImageFilterBase, BSplineL2ResampleImageFilterBase BSplineSplineCenteredResampleImageFilterBase, BSplineCenteredL2ResampleImageFilterBase The limitations of these resampler types will apply to this filter. Upsamples only by a factor of 2.

See also
BSplineDownsampleImageFilter
BSplineL2ResampleImageFilter
BSplineResampleImageFilterBase
BSplineCenteredResampleImageFilterBase
BSplineCenteredL2ResampleImageFilterBase

Definition at line 86 of file itkBSplineUpsampleImageFilter.h.

+ Inheritance diagram for itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >:
+ Collaboration diagram for itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >:

Public Types

using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = BSplineUpsampleImageFilter
 
using Superclass = ResamplerType
 

Public Member Functions

void GenerateInputRequestedRegion () override
 
void GenerateOutputInformation () override
 
const char * GetNameOfClass () const override
 

Static Public Member Functions

static Pointer New ()
 

Protected Member Functions

 BSplineUpsampleImageFilter ()=default
 
void EnlargeOutputRequestedRegion (DataObject *output) override
 
void GenerateData () override
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
 ~BSplineUpsampleImageFilter () override=default
 

Member Typedef Documentation

◆ ConstPointer

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
using itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::ConstPointer = SmartPointer<const Self>

Definition at line 95 of file itkBSplineUpsampleImageFilter.h.

◆ Pointer

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
using itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Pointer = SmartPointer<Self>

Definition at line 94 of file itkBSplineUpsampleImageFilter.h.

◆ Self

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
using itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Self = BSplineUpsampleImageFilter

Standard class type aliases.

Definition at line 92 of file itkBSplineUpsampleImageFilter.h.

◆ Superclass

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
using itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Superclass = ResamplerType

Definition at line 93 of file itkBSplineUpsampleImageFilter.h.

Constructor & Destructor Documentation

◆ BSplineUpsampleImageFilter()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::BSplineUpsampleImageFilter ( )
protecteddefault

◆ ~BSplineUpsampleImageFilter()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::~BSplineUpsampleImageFilter ( )
overrideprotecteddefault

Member Function Documentation

◆ EnlargeOutputRequestedRegion()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
void itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::EnlargeOutputRequestedRegion ( DataObject output)
overrideprotected

◆ GenerateData()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
void itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GenerateData ( )
overrideprotected

◆ GenerateInputRequestedRegion()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
void itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GenerateInputRequestedRegion ( )
override

This filter requires all of the input image

◆ GenerateOutputInformation()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
void itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GenerateOutputInformation ( )
override

Creates an image twice the size of the input image with spacing half the input image.

◆ GetNameOfClass()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
const char* itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GetNameOfClass ( ) const
override

◆ New()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
static Pointer itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::New ( )
static

New macro for creation of through a Smart Pointer

◆ PrintSelf()

template<typename TInputImage , typename TOutputImage , typename ResamplerType = BSplineResampleImageFilterBase<TInputImage, TOutputImage>>
void itk::BSplineUpsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotected

The documentation for this class was generated from the following file: