![]() |
ITK
4.4.0
Insight Segmentation and Registration Toolkit
|
#include <itkBSplineDownsampleImageFilter.h>
Inheritance diagram for itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >:
Collaboration diagram for itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >:Down-samples an image by a factor of 2 using B-Spline filter interpolation.
This class is the public interface for spline down-sampling 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 may also be used to create a smoother by combining it with the upSampler as in the following example: typedef itk::BSplineResampleImageFilterBase<ImageType2D, ImageType2D> ResamplerType; typedef itk::BSplineDownsampleImageFilter<ImageType2D,ImageType2D,ResamplerType> DownsamplerType2D; typedef itk::BSplineUpsampleImageFilter<ImageType2D,ImageType2D,ResamplerType> UpsamplerType2D;
DownsamplerType2D::Pointer downSampler = DownsamplerType2D::New(); UpsamplerType2D::Pointer upSampler = UpsamplerType2D::New(); int splineOrder = 3; downSampler->SetSplineOrder(splineOrder); upSampler->SetSplineOrder(splineOrder);
downSampler->SetInput(image); downSampler->Update();
upSampler->SetInput( downSampler->GetOutput() ); // output of downSampler is input to upSampler upSampler->Update();
ImageTypePtr2D outImage2 = upSampler->GetOutput(); // outImage2 is the smoothed imaged
Limitations: This class requires specification of a resampler type which may be one of: itkBSplineResampleImageFilterBase, itkBSplineL2ResampleImageFilterBase itkBSplineSplineCenteredResampleImageFilterBase, itkBSplineCenteredL2ResampleImageFilterBase The limitations of these resampler types will apply to this filter. Downsamples only by a factor of 2.
Definition at line 89 of file itkBSplineDownsampleImageFilter.h.
Public Types | |
| typedef SmartPointer< const Self > | ConstPointer |
| typedef Superclass::InputImagePointer | InputImagePointer |
| typedef Superclass::InputImageType | InputImageType |
| typedef Superclass::OutputImageIterator | OutputImageIterator |
| typedef Superclass::OutputImagePointer | OutputImagePointer |
| typedef SmartPointer< Self > | Pointer |
| typedef BSplineDownsampleImageFilter | Self |
| typedef ResamplerType | Superclass |
Public Member Functions | |
| virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
| void | GenerateInputRequestedRegion () |
| void | GenerateOutputInformation () |
| virtual const char * | GetNameOfClass () const |
| typedef (Concept::Convertible< double, typename TOutputImage::PixelType >) DoubleConvertibleToOutputCheck | |
Static Public Member Functions | |
| static Pointer | New () |
Protected Member Functions | |
| BSplineDownsampleImageFilter () | |
| void | EnlargeOutputRequestedRegion (DataObject *output) |
| void | GenerateData () |
| virtual | ~BSplineDownsampleImageFilter () |
Private Member Functions | |
| BSplineDownsampleImageFilter (const Self &) | |
| void | operator= (const Self &) |
| typedef SmartPointer< const Self > itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::ConstPointer |
Definition at line 97 of file itkBSplineDownsampleImageFilter.h.
| typedef Superclass::InputImagePointer itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::InputImagePointer |
InputImagePointer typedef support.
Definition at line 109 of file itkBSplineDownsampleImageFilter.h.
| typedef Superclass::InputImageType itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::InputImageType |
InputImageType typedef support.
Definition at line 103 of file itkBSplineDownsampleImageFilter.h.
| typedef Superclass::OutputImageIterator itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::OutputImageIterator |
OutputImageIterator typedef support.
Definition at line 115 of file itkBSplineDownsampleImageFilter.h.
| typedef Superclass::OutputImagePointer itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::OutputImagePointer |
OutputImagePointer typedef support.
Definition at line 112 of file itkBSplineDownsampleImageFilter.h.
| typedef SmartPointer< Self > itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Pointer |
Definition at line 96 of file itkBSplineDownsampleImageFilter.h.
| typedef BSplineDownsampleImageFilter itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Self |
Standard class typedefs.
Definition at line 94 of file itkBSplineDownsampleImageFilter.h.
| typedef ResamplerType itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::Superclass |
Definition at line 95 of file itkBSplineDownsampleImageFilter.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 139 of file itkBSplineDownsampleImageFilter.h.
|
private |
| virtual::itk::LightObject::Pointer itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::CreateAnother | ( | void | ) | const |
|
protected |
|
protected |
End concept checking
| void itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GenerateInputRequestedRegion | ( | ) |
This filter requires all of the input image
| void itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::GenerateOutputInformation | ( | ) |
Creates an image half the size of the input image with spacing twice the input image.
|
virtual |
Run-time type information (and related methods).
|
static |
New macro for creation of through a Smart Pointer
|
private |
| itk::BSplineDownsampleImageFilter< TInputImage, TOutputImage, ResamplerType >::typedef | ( | Concept::Convertible< double, typename TOutputImage::PixelType > | ) |
Begin concept checking This class requires DoubleConvertibleToOutputCheck in the form of ( Concept::Convertible< double, typename TOutputImage::PixelType > )
1.8.3.1