ITK  5.4.0
Insight Toolkit
itkInverseFFTImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkInverseFFTImageFilter_h
19 #define itkInverseFFTImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
22 #include "itkMacro.h"
23 
24 namespace itk
25 {
49 template <typename TInputImage,
50  typename TOutputImage = Image<typename TInputImage::PixelType::value_type, TInputImage::ImageDimension>>
51 class ITK_TEMPLATE_EXPORT InverseFFTImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
52 
53 {
54 public:
55  ITK_DISALLOW_COPY_AND_MOVE(InverseFFTImageFilter);
56 
58  using InputImageType = TInputImage;
59  using InputPixelType = typename InputImageType::PixelType;
60  using OutputImageType = TOutputImage;
61  using OutputPixelType = typename OutputImageType::PixelType;
62 
67 
68  static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
69 
71  itkOverrideGetNameOfClassMacro(InverseFFTImageFilter);
72 
77  itkFactoryOnlyNewMacro(Self);
78 
79  /* Return the preferred greatest prime factor supported for the input image
80  * size. Defaults to 2 as many implementations work only for sizes that are
81  * power of 2.
82  */
83  virtual SizeValueType
84  GetSizeGreatestPrimeFactor() const;
85 
86 protected:
87  InverseFFTImageFilter() = default;
88  ~InverseFFTImageFilter() override = default;
89 
91  void
92  GenerateInputRequestedRegion() override;
93 
96  void
97  EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
98 };
99 } // end namespace itk
100 
101 #ifndef ITK_MANUAL_INSTANTIATION
102 # include "itkInverseFFTImageFilter.hxx"
103 #endif
104 
105 #ifdef ITK_FFTIMAGEFILTERINIT_FACTORY_REGISTER_MANAGER
106 # include "itkFFTImageFilterInitFactoryRegisterManager.h"
107 #endif
108 
109 #endif
itk::SmartPointer< Self >
itk::ImageToImageFilter
Base class for filters that take an image as input and produce an image as output.
Definition: itkImageToImageFilter.h:108
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::InverseFFTImageFilter::OutputPixelType
typename OutputImageType::PixelType OutputPixelType
Definition: itkInverseFFTImageFilter.h:61
itkMacro.h
itk::InverseFFTImageFilter
Base class for inverse Fast Fourier Transform.
Definition: itkInverseFFTImageFilter.h:51
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itkImageToImageFilter.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itk::InverseFFTImageFilter::InputPixelType
typename InputImageType::PixelType InputPixelType
Definition: itkInverseFFTImageFilter.h:59
itk::SizeValueType
unsigned long SizeValueType
Definition: itkIntTypes.h:83
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293