ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
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
22#include "itkMacro.h"
23
24namespace itk
25{
49template <typename TInputImage,
51class ITK_TEMPLATE_EXPORT InverseFFTImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
52{
53public:
54 ITK_DISALLOW_COPY_AND_MOVE(InverseFFTImageFilter);
55
57 using InputImageType = TInputImage;
58 using InputPixelType = typename InputImageType::PixelType;
59 using OutputImageType = TOutputImage;
60 using OutputPixelType = typename OutputImageType::PixelType;
61
66
67 static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
68
70 itkOverrideGetNameOfClassMacro(InverseFFTImageFilter);
71
77
78 /* Return the preferred greatest prime factor supported for the input image
79 * size. Defaults to 2 as many implementations work only for sizes that are
80 * power of 2.
81 */
82 [[nodiscard]] virtual SizeValueType
84
85protected:
87 ~InverseFFTImageFilter() override = default;
88
90 void
92
95 void
96 EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
97};
98} // end namespace itk
99
100#ifndef ITK_MANUAL_INSTANTIATION
101# include "itkInverseFFTImageFilter.hxx"
102#endif
103
104#ifdef ITK_FFTIMAGEFILTERINIT_FACTORY_REGISTER_MANAGER
105# include "itkFFTImageFilterInitFactoryRegisterManager.h"
106#endif
107
108#endif
Base class for all data objects in ITK.
Templated n-dimensional image class.
Definition itkImage.h:89
~InverseFFTImageFilter() override=default
virtual SizeValueType GetSizeGreatestPrimeFactor() const
ImageToImageFilter< InputImageType, OutputImageType > Superclass
void GenerateInputRequestedRegion() override
void EnlargeOutputRequestedRegion(DataObject *output) override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86