ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkWindowedSincInterpolateImageFunction.h>
Use the windowed sinc function to interpolate.
This function is intended to provide an interpolation function that has minimum aliasing artifacts, in contrast to linear interpolation. According to sampling theory, the infinite-support sinc filter, whose Fourier transform is the box filter, is optimal for resampling a function. In practice, the infinite support sinc filter is approximated using a limited support 'windowed' sinc filter.
Use this filter the way you would use any ImageInterpolationFunction, so for instance, you can plug it into the ResampleImageFilter class. In order to initialize the filter you must choose several template parameters.
There are a few improvements that an enthusiasting ITK developer could make to this filter. One issue is with the way that the kernel is applied. The computational expense comes from two sources: computing the kernel weights K(t) and multiplying the pixels in the window by the kernel weights. The first is done more or less efficiently in operations (where d is the dimensionality of the image). The second can be done better. Presently, each pixel is multiplied by the weights and added to the running total. This results in multiplication operations. However, by keeping intermediate sums, it would be possible to do the operation in operations. This would require some creative coding. In addition, in the case when one of the coordinates is integer, the computation could be reduced by an order of magnitude.
Definition at line 260 of file itkWindowedSincInterpolateImageFunction.h.
typedef SmartPointer< const Self > itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::ConstPointer |
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 270 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::ContinuousIndexType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::ContinuousIndexType |
ContinuousIndex typedef support.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 299 of file itkWindowedSincInterpolateImageFunction.h.
typedef TInputImage itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::ImageType |
Image type definition
Definition at line 296 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::IndexType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::IndexType |
Index typedef support.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 292 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::IndexValueType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::IndexValueType |
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 293 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::InputImageType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::InputImageType |
InputImageType typedef support.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 283 of file itkWindowedSincInterpolateImageFunction.h.
typedef ConstNeighborhoodIterator< ImageType, TBoundaryCondition > itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::IteratorType [private] |
Definition at line 324 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::OutputType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::OutputType |
OutputType typedef support.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 277 of file itkWindowedSincInterpolateImageFunction.h.
typedef SmartPointer< Self > itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::Pointer |
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 269 of file itkWindowedSincInterpolateImageFunction.h.
typedef Superclass::RealType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::RealType |
RealType typedef support.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 286 of file itkWindowedSincInterpolateImageFunction.h.
typedef WindowedSincInterpolateImageFunction itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::Self |
Standard class typedefs.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 266 of file itkWindowedSincInterpolateImageFunction.h.
typedef InterpolateImageFunction< TInputImage, TCoordRep > itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::Superclass |
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 267 of file itkWindowedSincInterpolateImageFunction.h.
itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::WindowedSincInterpolateImageFunction | ( | ) | [protected] |
virtual itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::~WindowedSincInterpolateImageFunction | ( | ) | [protected, virtual] |
itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::WindowedSincInterpolateImageFunction | ( | const Self & | ) | [private] |
virtual::itk::LightObject::Pointer itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::CreateAnother | ( | void | ) | const [virtual] |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
virtual OutputType itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::EvaluateAtContinuousIndex | ( | const ContinuousIndexType & | index | ) | const [virtual] |
Evaluate the function at a ContinuousIndex position
Returns the interpolated image intensity at a specified point position. Bounds checking is based on the type of the TBoundaryCondition specified.
Implements itk::InterpolateImageFunction< TInputImage, TCoordRep >.
virtual const char* itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
static Pointer itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::Object.
void itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::operator= | ( | const Self & | ) | [private] |
Mutex lock to protect modification to the reference count
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
void itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, virtual] |
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::InterpolateImageFunction< TInputImage, TCoordRep >.
virtual void itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::SetInputImage | ( | const ImageType * | ptr | ) | [virtual] |
Set the input image.
Reimplemented from itk::ImageFunction< TInputImage, NumericTraits< TInputImage::PixelType >::RealType, TCoordRep >.
double itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::Sinc | ( | double | x | ) | const [inline, private] |
The sinc function
Definition at line 343 of file itkWindowedSincInterpolateImageFunction.h.
References itk::Math::pi.
const unsigned int itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::ImageDimension = Superclass::ImageDimension [static] |
Dimension underlying input image.
Reimplemented from itk::InterpolateImageFunction< TInputImage, TCoordRep >.
Definition at line 289 of file itkWindowedSincInterpolateImageFunction.h.
unsigned int* itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::m_OffsetTable [private] |
The offset array, used to keep a list of relevant offsets in the neihborhoodIterator
Definition at line 334 of file itkWindowedSincInterpolateImageFunction.h.
unsigned int itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::m_OffsetTableSize [private] |
Size of the offset table
Definition at line 337 of file itkWindowedSincInterpolateImageFunction.h.
unsigned int** itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::m_WeightOffsetTable [private] |
Index into the weights array for each offset
Definition at line 340 of file itkWindowedSincInterpolateImageFunction.h.
TWindowFunction itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::m_WindowFunction [private] |
The function object, used to compute window
Definition at line 330 of file itkWindowedSincInterpolateImageFunction.h.
const unsigned int itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >::m_WindowSize [static, private] |
Definition at line 327 of file itkWindowedSincInterpolateImageFunction.h.