ITK
4.8.0
Insight Segmentation and Registration Toolkit
|
#include <itkBSplineL2ResampleImageFilterBase.h>
Uses the "Centered l2" B-Spline pyramid implementation of B-Spline Filters to up/down sample an image by a factor of 2.
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. [4] P. Brigger, F. Miller, K. Illgner, M. Unser, "Centered Pyramids," IEEE Transactions on Image Processing, vol. 8, no. 9, pp. 1254-1264, September 1999. And code obtained from bigwww.epfl.ch by Philippe Thevenaz
Limitations: Spline order for the centered l2 pyramid must be 0,1,3, or 5. This code cannot be multi-threaded since the entire image must be traversed in the proper order. This code cannot be streamed and requires the all of the input image. Only up/down samples by a factor of 2. This is a base class and is not meant to be instantiated on its own. It requires one of the itkBSplineDownsampleImageFilter or itkBSplineUpsampleImageFilter classes. Spline order must be set before setting the image. Uses mirror boundary conditions. Requires the same order of Spline for each dimension.
Definition at line 83 of file itkBSplineL2ResampleImageFilterBase.h.
Private Member Functions | |
BSplineL2ResampleImageFilterBase (const Self &) | |
void | operator= (const Self &) |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes inherited from itk::BSplineResampleImageFilterBase< TInputImage, TOutputImage > | |
static const unsigned int | ImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::BSplineResampleImageFilterBase< TInputImage, TOutputImage > | |
std::vector< double > | m_G |
int | m_GSize |
std::vector< double > | m_H |
int | m_HSize |
int | m_SplineOrder |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
AtomicInt< int > | m_ReferenceCount |
typedef SmartPointer< const Self > itk::BSplineL2ResampleImageFilterBase< TInputImage, TOutputImage >::ConstPointer |
Definition at line 91 of file itkBSplineL2ResampleImageFilterBase.h.
typedef SmartPointer< Self > itk::BSplineL2ResampleImageFilterBase< TInputImage, TOutputImage >::Pointer |
Definition at line 90 of file itkBSplineL2ResampleImageFilterBase.h.
typedef BSplineL2ResampleImageFilterBase itk::BSplineL2ResampleImageFilterBase< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Definition at line 88 of file itkBSplineL2ResampleImageFilterBase.h.
typedef BSplineResampleImageFilterBase< TInputImage, TOutputImage > itk::BSplineL2ResampleImageFilterBase< TInputImage, TOutputImage >::Superclass |
Definition at line 89 of file itkBSplineL2ResampleImageFilterBase.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 101 of file itkBSplineL2ResampleImageFilterBase.h.
|
private |
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::BSplineResampleImageFilterBase< TInputImage, TOutputImage >.
|
overrideprotectedvirtual |
Initializes the pyramid spline coefficients. Called when Spline order has been set.
Reimplemented from itk::BSplineResampleImageFilterBase< TInputImage, TOutputImage >.
|
private |
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.