ITK
5.2.0
Insight Toolkit
|
#include <itkFFTWInverseFFTImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::InverseFFTImageFilter< TInputImage, TOutputImage > | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static void | SetGlobalDefaultDirectionTolerance (double) |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static double | GetGlobalDefaultCoordinateTolerance () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = InputImageType::ImageDimension |
Static Public Attributes inherited from itk::InverseFFTImageFilter< TInputImage, TOutputImage > | |
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 |
int | m_PlanRigor |
virtual void | SetPlanRigor (const int &value) |
virtual const int & | GetPlanRigor () const |
void | SetPlanRigor (const std::string &name) |
SizeValueType | GetSizeGreatestPrimeFactor () const override |
FFTWInverseFFTImageFilter () | |
~FFTWInverseFFTImageFilter () override=default | |
void | BeforeThreadedGenerateData () override |
void | DynamicThreadedGenerateData (const OutputImageRegionType &outputRegionForThread) override |
void | PrintSelf (std::ostream &os, Indent indent) const override |
FFTW-based inverse Fast Fourier Transform.
This filter computes the inverse Fourier transform of an image. The implementation is based on the FFTW library.
This filter is multithreaded and supports input images of any size.
This implementation was taken from the Insight Journal paper: https://www.insight-journal.org/browse/publication/717
Definition at line 50 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 66 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::FFTWProxyType = typename fftw::Proxy<OutputPixelType> |
The proxy type is a wrapper for the FFTW API since the proxy is only defined over double and float, trying to use any other pixel type is unsupported, as is trying to use double if only the float FFTW version is configured in, or float if only double is configured.
Definition at line 73 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Standard class type aliases.
Definition at line 56 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::InputPixelType = typename InputImageType::PixelType |
Definition at line 57 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::InputSizeType = typename InputImageType::SizeType |
Definition at line 58 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 75 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 59 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::OutputPixelType = typename OutputImageType::PixelType |
Definition at line 60 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::OutputSizeType = typename OutputImageType::SizeType |
Definition at line 61 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 65 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::Self = FFTWInverseFFTImageFilter |
Definition at line 63 of file itkFFTWInverseFFTImageFilter.h.
using itk::FFTWInverseFFTImageFilter< TInputImage, TOutputImage >::Superclass = InverseFFTImageFilter<InputImageType, OutputImageType> |
Definition at line 64 of file itkFFTWInverseFFTImageFilter.h.
|
protected |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
|
overrideprotecteddefault |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
|
overrideprotectedvirtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Reimplemented from itk::ImageSource< TOutputImage >.
|
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.
|
overrideprotectedvirtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Reimplemented from itk::ImageSource< TOutputImage >.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
|
overridevirtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Reimplemented from itk::InverseFFTImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
inlinevirtual |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Definition at line 96 of file itkFFTWInverseFFTImageFilter.h.
References itk::FFTWGlobalConfiguration::GetPlanRigorName().
|
inline |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Definition at line 110 of file itkFFTWInverseFFTImageFilter.h.
References itk::FFTWGlobalConfiguration::GetPlanRigorValue().
|
staticconstexpr |
Define the image dimension.
Definition at line 84 of file itkFFTWInverseFFTImageFilter.h.
|
private |
Set/Get the behavior of wisdom plan creation. The default is provided by FFTWGlobalConfiguration::GetPlanRigor().
The parameter is one of the FFTW planner rigor flags FFTW_ESTIMATE, FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE provided by FFTWGlobalConfiguration.
This has no effect with ITK_USE_CUFFTW. /sa FFTWGlobalConfiguration
Definition at line 135 of file itkFFTWInverseFFTImageFilter.h.