ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFFTConvolutionImageFilter.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 itkFFTConvolutionImageFilter_h
19#define itkFFTConvolutionImageFilter_h
20
22
27
28namespace itk
29{
53template <typename TInputImage,
54 typename TKernelImage = TInputImage,
55 typename TOutputImage = TInputImage,
56 typename TInternalPrecision = double>
57class ITK_TEMPLATE_EXPORT FFTConvolutionImageFilter
58 : public ConvolutionImageFilterBase<TInputImage, TKernelImage, TOutputImage>
59
60{
61public:
62 ITK_DISALLOW_COPY_AND_MOVE(FFTConvolutionImageFilter);
63
68
70 itkNewMacro(Self);
71
73 itkOverrideGetNameOfClassMacro(FFTConvolutionImageFilter);
74
76 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
77
78 using InputImageType = TInputImage;
79 using OutputImageType = TOutputImage;
80 using KernelImageType = TKernelImage;
81 using InputPixelType = typename InputImageType::PixelType;
82 using OutputPixelType = typename OutputImageType::PixelType;
83 using KernelPixelType = typename KernelImageType::PixelType;
84 using InputIndexType = typename InputImageType::IndexType;
85 using OutputIndexType = typename OutputImageType::IndexType;
86 using KernelIndexType = typename KernelImageType::IndexType;
87 using InputSizeType = typename InputImageType::SizeType;
88 using OutputSizeType = typename OutputImageType::SizeType;
89 using KernelSizeType = typename KernelImageType::SizeType;
90 using SizeValueType = typename InputSizeType::SizeValueType;
91 using InputRegionType = typename InputImageType::RegionType;
92 using OutputRegionType = typename OutputImageType::RegionType;
93 using KernelRegionType = typename KernelImageType::RegionType;
94
101 using InternalComplexType = std::complex<TInternalPrecision>;
104
107
108 itkSetMacro(SizeGreatestPrimeFactor, SizeValueType);
109 itkGetMacro(SizeGreatestPrimeFactor, SizeValueType);
110
111protected:
113 ~FFTConvolutionImageFilter() override = default;
114
119
126 void
128
130 void
131 GenerateData() override;
132
137 void
139 const KernelImageType * kernel,
140 InternalComplexImagePointerType & preparedInput,
141 InternalComplexImagePointerType & preparedKernel,
142 ProgressAccumulator * progress,
143 float progressWeight);
144
147 void
149 InternalComplexImagePointerType & preparedInput,
150 ProgressAccumulator * progress,
151 float progressWeight);
152
154 void
156 InternalImagePointerType & paddedInput,
157 ProgressAccumulator * progress,
158 float progressWeight);
159
161 void
163 InternalComplexImagePointerType & transformedInput,
164 ProgressAccumulator * progress,
165 float progressWeight);
166
170 void
172 InternalComplexImagePointerType & preparedKernel,
173 ProgressAccumulator * progress,
174 float progressWeight);
175
177 void
178 ProduceOutput(InternalComplexImageType * paddedOutput, ProgressAccumulator * progress, float progressWeight);
179
181 void
182 CropOutput(InternalImageType * paddedOutput, ProgressAccumulator * progress, float progressWeight);
183
188
197
199 bool
201
202 void
203 PrintSelf(std::ostream & os, Indent indent) const override;
204
205private:
209};
210} // namespace itk
211
212#ifndef ITK_MANUAL_INSTANTIATION
213# include "itkFFTConvolutionImageFilter.hxx"
214#endif
215
216#endif
void CropOutput(InternalImageType *paddedOutput, ProgressAccumulator *progress, float progressWeight)
typename OutputImageType::IndexType OutputIndexType
KernelSizeType GetKernelRadius() const
typename InternalImageType::SizeType InternalSizeType
void TransformPaddedInput(const InternalImageType *paddedInput, InternalComplexImagePointerType &transformedInput, ProgressAccumulator *progress, float progressWeight)
void PrintSelf(std::ostream &os, Indent indent) const override
void PrepareInput(const InputImageType *input, InternalComplexImagePointerType &preparedInput, ProgressAccumulator *progress, float progressWeight)
typename KernelImageType::SizeType KernelSizeType
typename InternalImageType::IndexType InternalIndexType
typename OutputImageType::PixelType OutputPixelType
typename OutputImageType::RegionType OutputRegionType
void PrepareInputs(const InputImageType *input, const KernelImageType *kernel, InternalComplexImagePointerType &preparedInput, InternalComplexImagePointerType &preparedKernel, ProgressAccumulator *progress, float progressWeight)
void PadInput(const InputImageType *input, InternalImagePointerType &paddedInput, ProgressAccumulator *progress, float progressWeight)
typename InputImageType::IndexType InputIndexType
HalfHermitianToRealInverseFFTImageFilter< InternalComplexImageType, InternalImageType > IFFTFilterType
void ProduceOutput(InternalComplexImageType *paddedOutput, ProgressAccumulator *progress, float progressWeight)
typename InputImageType::PixelType InputPixelType
Image< TInternalPrecision, TInputImage::ImageDimension > InternalImageType
void GenerateInputRequestedRegion() override
RealToHalfHermitianForwardFFTImageFilter< InternalImageType, InternalComplexImageType > FFTFilterType
std::complex< TInternalPrecision > InternalComplexType
Image< InternalComplexType, TInputImage::ImageDimension > InternalComplexImageType
~FFTConvolutionImageFilter() override=default
InternalSizeType GetFFTPadSize() const
typename KernelImageType::IndexType KernelIndexType
typename OutputImageType::SizeType OutputSizeType
typename InputImageType::RegionType InputRegionType
typename InternalComplexImageType::Pointer InternalComplexImagePointerType
typename KernelImageType::RegionType KernelRegionType
void PrepareKernel(const KernelImageType *kernel, InternalComplexImagePointerType &preparedKernel, ProgressAccumulator *progress, float progressWeight)
typename KernelImageType::PixelType KernelPixelType
typename InputSizeType::SizeValueType SizeValueType
typename InternalImageType::RegionType InternalRegionType
ConvolutionImageFilterBase< TInputImage, TKernelImage, TOutputImage > Superclass
typename InternalImageType::Pointer InternalImagePointerType
typename InputImageType::SizeType InputSizeType
Base class for specialized complex-to-real inverse Fast Fourier Transform.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Facilitates progress reporting for filters that wrap around multiple other filters.
Base class for specialized real-to-complex forward Fast Fourier Transform.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....