ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFFTDiscreteGaussianImageFilterFactory.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 itkFFTDiscreteGaussianImageFilterFactory_h
20#define itkFFTDiscreteGaussianImageFilterFactory_h
21#include "ITKSmoothingExport.h"
22
24#include "itkImage.h"
26#include "itkVersion.h"
27
28namespace itk
29{
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(FFTDiscreteGaussianImageFilterFactory);
47
52
55 const char *
56 GetITKSourceVersion() const override
57 {
58 return ITK_SOURCE_VERSION;
59 }
60 const char *
61 GetDescription() const override
62 {
63 return "An FFTDiscreteGaussianImageFilterFactory factory";
64 }
65
67 itkFactorylessNewMacro(Self);
68
70 itkOverrideGetNameOfClassMacro(FFTDiscreteGaussianImageFilterFactory);
71
73 static void
80
81protected:
86 template <typename InputPixelType, typename OutputPixelType, unsigned int D, unsigned int... ImageDimensions>
87 void
88 OverrideSuperclassType(const std::integer_sequence<unsigned int, D, ImageDimensions...> &)
89 {
90 using InputImageType = Image<InputPixelType, D>;
91 using OutputImageType = Image<OutputPixelType, D>;
92 this->RegisterOverride(
95 "FFTDiscreteGaussianImageFilter Override",
96 true,
98 OverrideSuperclassType<InputPixelType, OutputPixelType>(std::integer_sequence<unsigned int, ImageDimensions...>{});
99 }
100 template <typename InputPixelType, typename OutputPixelType>
101 void
102 OverrideSuperclassType(const std::integer_sequence<unsigned int> &)
103 {}
104
106 {
107 OverrideSuperclassType<float, float>(std::integer_sequence<unsigned int, 4, 3, 2, 1>{});
108
109 OverrideSuperclassType<double, double>(std::integer_sequence<unsigned int, 4, 3, 2, 1>{});
110 }
111};
112
113} // namespace itk
114
115#endif // itkFFTDiscreteGaussianImageFilterFactory_h
Used to create callback functions that create ITK Objects for use with the itk::ObjectFactory.
void OverrideSuperclassType(const std::integer_sequence< unsigned int > &)
void OverrideSuperclassType(const std::integer_sequence< unsigned int, D, ImageDimensions... > &)
Blurs an image by convolution with a discrete gaussian kernel in the frequency domain.
DiscreteGaussianImageFilter< TInputImage, TOutputImage > Superclass
Templated n-dimensional image class.
Definition itkImage.h:89
Create instances of classes using an object factory.
void RegisterOverride(const char *classOverride, const char *subclass, const char *description, bool enableFlag, CreateObjectFunctionBase *createFunction)
static void RegisterFactoryInternal(ObjectFactoryBase *)
Implements transparent reference counting.
#define ITK_SOURCE_VERSION
Definition itkVersion.h:39
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....