ITK
4.8.0
Insight Segmentation and Registration Toolkit
|
#include <itkVnlComplexToComplexFFTImageFilter.h>
VNL based complex to complex Fast Fourier Transform.
This filter requires input images with sizes which are a power of two.
Definition at line 40 of file itkVnlComplexToComplexFFTImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ComplexToComplexFFTImageFilter< TImage > | |
static Pointer | New () |
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 | |
static const unsigned int | ImageDimension = ImageType::ImageDimension |
Static Public Attributes inherited from itk::ComplexToComplexFFTImageFilter< TImage > | |
static const unsigned int | ImageDimension = InputImageType::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TImage, TImage > | |
static const unsigned int | InputImageDimension |
static const unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< TImage > | |
static const unsigned int | OutputImageDimension |
Private Member Functions | |
void | operator= (const Self &) |
VnlComplexToComplexFFTImageFilter (const Self &) | |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TImage, TImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Static Protected Member Functions inherited from itk::ImageSource< TImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
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::VnlComplexToComplexFFTImageFilter< TImage >::ConstPointer |
Definition at line 48 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef TImage itk::VnlComplexToComplexFFTImageFilter< TImage >::ImageType |
Definition at line 50 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef Superclass::InputImageType itk::VnlComplexToComplexFFTImageFilter< TImage >::InputImageType |
Definition at line 52 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef OutputImageType::RegionType itk::VnlComplexToComplexFFTImageFilter< TImage >::OutputImageRegionType |
Definition at line 54 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef Superclass::OutputImageType itk::VnlComplexToComplexFFTImageFilter< TImage >::OutputImageType |
Definition at line 53 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef ImageType::PixelType itk::VnlComplexToComplexFFTImageFilter< TImage >::PixelType |
Definition at line 51 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef SmartPointer< Self > itk::VnlComplexToComplexFFTImageFilter< TImage >::Pointer |
Definition at line 47 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef VnlComplexToComplexFFTImageFilter itk::VnlComplexToComplexFFTImageFilter< TImage >::Self |
Standard class typedefs.
Definition at line 45 of file itkVnlComplexToComplexFFTImageFilter.h.
typedef ComplexToComplexFFTImageFilter< TImage > itk::VnlComplexToComplexFFTImageFilter< TImage >::Superclass |
Definition at line 46 of file itkVnlComplexToComplexFFTImageFilter.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 68 of file itkVnlComplexToComplexFFTImageFilter.h.
|
private |
|
overrideprotectedvirtual |
If an imaging filter needs to perform processing after the buffer has been allocated but before threads are spawned, the filter can can provide an implementation for BeforeThreadedGenerateData(). The execution flow in the default GenerateData() method will be: 1) Allocate the output buffer 2) Call BeforeThreadedGenerateData() 3) Spawn threads, calling ThreadedGenerateData() in each thread. 4) Call AfterThreadedGenerateData() Note that this flow of control is only available if a filter provides a ThreadedGenerateData() method and NOT a GenerateData() method.
Reimplemented from itk::ImageSource< TImage >.
|
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 |
Run-time type information (and related methods).
Reimplemented from itk::ComplexToComplexFFTImageFilter< TImage >.
|
static |
Method for creation through the object factory.
|
private |
|
overrideprotectedvirtual |
If an imaging filter can be implemented as a multithreaded algorithm, the filter will provide an implementation of ThreadedGenerateData(). This superclass will automatically split the output image into a number of pieces, spawn multiple threads, and call ThreadedGenerateData() in each thread. Prior to spawning threads, the BeforeThreadedGenerateData() method is called. After all the threads have completed, the AfterThreadedGenerateData() method is called. If an image processing filter cannot support threading, that filter should provide an implementation of the GenerateData() method instead of providing an implementation of ThreadedGenerateData(). If a filter provides a GenerateData() method as its implementation, then the filter is responsible for allocating the output data. If a filter provides a ThreadedGenerateData() method as its implementation, then the output memory will allocated automatically by this superclass. The ThreadedGenerateData() method should only produce the output specified by "outputThreadRegion" parameter. ThreadedGenerateData() cannot write to any other portion of the output image (as this is responsibility of a different thread).
Reimplemented from itk::ImageSource< TImage >.
|
static |
Definition at line 64 of file itkVnlComplexToComplexFFTImageFilter.h.