ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFFTPadImageFilter.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
19#ifndef itkFFTPadImageFilter_h
20#define itkFFTPadImageFilter_h
21
23#include "itkConceptChecking.h"
25
26namespace itk
27{
28
48template <typename TInputImage, typename TOutputImage = TInputImage>
49class ITK_TEMPLATE_EXPORT FFTPadImageFilter : public PadImageFilterBase<TInputImage, TOutputImage>
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(FFTPadImageFilter);
53
59
61 using InputImageType = TInputImage;
62 using OutputImageType = TOutputImage;
63 using InputImagePixelType = typename InputImageType::PixelType;
64 using OutputImagePixelType = typename OutputImageType::PixelType;
65 using RegionType = typename InputImageType::RegionType;
66 using IndexType = typename InputImageType::IndexType;
67 using SizeType = typename InputImageType::SizeType;
68
70 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
71 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
72 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
73
75 itkNewMacro(Self);
76
78 itkOverrideGetNameOfClassMacro(FFTPadImageFilter);
79
93 itkGetConstMacro(SizeGreatestPrimeFactor, SizeValueType);
94 itkSetMacro(SizeGreatestPrimeFactor, SizeValueType);
99
100protected:
102 ~FFTPadImageFilter() override = default;
103 void
104 PrintSelf(std::ostream & os, Indent indent) const override;
105
106 void
108
109
110private:
112
114
115}; // end of class
116
117} // end namespace itk
118
119#ifndef ITK_MANUAL_INSTANTIATION
120# include "itkFFTPadImageFilter.hxx"
121#endif
122
123#endif
SizeValueType m_SizeGreatestPrimeFactor
typename InputImageType::RegionType RegionType
SmartPointer< Self > Pointer
~FFTPadImageFilter() override=default
SmartPointer< const Self > ConstPointer
typename InputImageType::IndexType IndexType
PadImageFilterBase< TInputImage, TOutputImage > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
static constexpr unsigned int InputImageDimension
ImageBoundaryCondition< TInputImage, TOutputImage > BoundaryConditionType
void GenerateOutputInformation() override
typename OutputImageType::PixelType OutputImagePixelType
static constexpr unsigned int OutputImageDimension
typename InputImageType::SizeType SizeType
static constexpr unsigned int ImageDimension
DefaultBoundaryConditionType m_DefaultBoundaryCondition
ZeroFluxNeumannBoundaryCondition< TInputImage, TOutputImage > DefaultBoundaryConditionType
typename InputImageType::PixelType InputImagePixelType
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
A function object that determines a neighborhood of values at an image boundary according to a Neuman...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....