ITK
6.0.0
Insight Toolkit
|
#include <itkForward1DFFTImageFilter.h>
Perform the Fast Fourier Transform, in the forward direction, with real inputs, but only along one dimension.
Forward1DFFTImageFilter implements methods for generating output information and relies on the ITK object factory to select a viable backend to generate data. Forward1DFFTImageFilter does not itself implement FFT.
Definition at line 44 of file itkForward1DFFTImageFilter.h.
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = InputImageType::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Private Attributes | |
unsigned int | m_Direction { 0 } |
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 57 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Standard class type alias.
Definition at line 50 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 52 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 51 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 56 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::Self = Forward1DFFTImageFilter |
Definition at line 54 of file itkForward1DFFTImageFilter.h.
using itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<InputImageType, OutputImageType> |
Definition at line 55 of file itkForward1DFFTImageFilter.h.
|
protected |
|
overrideprotecteddefault |
|
overrideprotectedvirtual |
Give the process object a chance to indicate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region.
Reimplemented from itk::ProcessObject.
|
overrideprotectedvirtual |
What is the input requested region that is required to produce the output requested region? The base assumption for image processing filters is that the input requested region can be set to match the output requested region. If a filter requires more input (for instance a filter that uses neighborhoods needs more input than output to avoid introducing artificial boundary conditions) or less input (for instance a magnify filter) will have to override this method. In doing so, it should call its superclass' implementation as its first step. Note that imaging filters operate differently than the classes to this point in the class hierarchy. Up till now, the base assumption has been that the largest possible region will be requested of the input.
This implementation of GenerateInputRequestedRegion() only processes the inputs that are a subclass of the ImageBase<InputImageDimension>. If an input is another type of DataObject (including an Image of a different dimension), they are skipped by this method. The subclasses of ImageToImageFilter are responsible for providing an implementation of GenerateInputRequestedRegion() when there are multiple inputs of different types.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Get the direction in which the filter is to be applied.
|
overridevirtual |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VnlForward1DFFTImageFilter< TInputImage, TOutputImage >.
|
inlinevirtual |
Get the greatest supported prime factor.
Definition at line 79 of file itkForward1DFFTImageFilter.h.
itk::Forward1DFFTImageFilter< TInputImage, TOutputImage >::itkFactoryOnlyNewMacro | ( | Self | ) |
Customized object creation methods that support configuration-based selection of FFT implementation.
Default implementation is VnlFFT1D.
|
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 >.
|
virtual |
Set the direction in which the filter is to be applied.
|
staticconstexpr |
Dimension of the underlying image.
Definition at line 60 of file itkForward1DFFTImageFilter.h.
|
private |
Direction in which the filter is to be applied this should be in the range [0,ImageDimension-1].
Definition at line 99 of file itkForward1DFFTImageFilter.h.