![]() |
ITK
5.4.0
Insight Toolkit
|
#include <itkInverse1DFFTImageFilter.h>
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = InputImageType::ImageDimension |
![]() | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
![]() | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Protected Attributes | |
unsigned int | m_Direction { 0 } |
![]() | |
bool | m_DynamicMultiThreading {} |
![]() | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
Perform the Fast Fourier Transform, in the reverse direction, with real output, but only along one dimension.
Definition at line 38 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 51 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Standard class type alias.
Definition at line 44 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 46 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 45 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 50 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::Self = Inverse1DFFTImageFilter |
Definition at line 48 of file itkInverse1DFFTImageFilter.h.
using itk::Inverse1DFFTImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<InputImageType, OutputImageType> |
Definition at line 49 of file itkInverse1DFFTImageFilter.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.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::FFTWInverse1DFFTImageFilter< TInputImage, TOutputImage >, and itk::VnlInverse1DFFTImageFilter< TInputImage, TOutputImage >.
|
inlinevirtual |
Get the greatest supported prime factor.
Definition at line 73 of file itkInverse1DFFTImageFilter.h.
itk::Inverse1DFFTImageFilter< 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 54 of file itkInverse1DFFTImageFilter.h.
|
protected |
Direction in which the filter is to be applied this should be in the range [0,ImageDimension-1].
Definition at line 92 of file itkInverse1DFFTImageFilter.h.