ITK  5.2.0
Insight Toolkit
itkHalfHermitianToRealInverseFFTImageFilter.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  * http://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 itkHalfHermitianToRealInverseFFTImageFilter_h
19 #define itkHalfHermitianToRealInverseFFTImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 
24 namespace itk
25 {
54 template <typename TInputImage,
55  typename TOutputImage = Image<typename TInputImage::PixelType::value_type, TInputImage::ImageDimension>>
57  : public ImageToImageFilter<TInputImage, TOutputImage>
58 
59 {
60 public:
61  ITK_DISALLOW_COPY_AND_MOVE(HalfHermitianToRealInverseFFTImageFilter);
62 
64  using InputImageType = TInputImage;
65  using InputPixelType = typename InputImageType::PixelType;
66  using OutputImageType = TOutputImage;
67  using OutputPixelType = typename OutputImageType::PixelType;
68 
73 
74  static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
75 
80  static Pointer
81  New();
82 
84  itkSetGetDecoratedInputMacro(ActualXDimensionIsOdd, bool);
85  itkBooleanMacro(ActualXDimensionIsOdd);
87 
88  /* Return the preferred greatest prime factor supported for the input image
89  * size. Defaults to 2 as many implementations work only for sizes that are
90  * power of 2.
91  */
92  virtual SizeValueType
93  GetSizeGreatestPrimeFactor() const;
94 
95 protected:
97  ~HalfHermitianToRealInverseFFTImageFilter() override = default;
98 
101  void
102  GenerateOutputInformation() override;
103 
105  void
106  GenerateInputRequestedRegion() override;
107 
110  void
111  EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
112 };
113 } // end namespace itk
114 
115 #ifndef ITK_MANUAL_INSTANTIATION
116 # include "itkHalfHermitianToRealInverseFFTImageFilter.hxx"
117 #endif
118 
119 #endif
itk::SmartPointer< Self >
itk::HalfHermitianToRealInverseFFTImageFilter::InputPixelType
typename InputImageType::PixelType InputPixelType
Definition: itkHalfHermitianToRealInverseFFTImageFilter.h:65
itk::HalfHermitianToRealInverseFFTImageFilter::OutputPixelType
typename OutputImageType::PixelType OutputPixelType
Definition: itkHalfHermitianToRealInverseFFTImageFilter.h:67
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::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:138
itkSimpleDataObjectDecorator.h
itk::HalfHermitianToRealInverseFFTImageFilter
Base class for specialized complex-to-real inverse Fast Fourier Transform.
Definition: itkHalfHermitianToRealInverseFFTImageFilter.h:56
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