ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFFTImageFilterFactory.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 itkFFTImageFilterFactory_h
20#define itkFFTImageFilterFactory_h
21
22#include "itkImage.h"
24#include "itkVersion.h"
25
26namespace itk
27{
28
41template <template <typename, typename> class TFFTImageFilter>
44
45
86template <template <typename, typename> class TFFTImageFilter,
87 template <typename, unsigned int> class TInput = Image,
88 template <typename, unsigned int> class TOutput = Image>
90{
91public:
92 ITK_DISALLOW_COPY_AND_MOVE(FFTImageFilterFactory);
93
98
101 const char *
102 GetITKSourceVersion() const override
103 {
104 return ITK_SOURCE_VERSION;
105 }
106 const char *
107 GetDescription() const override
108 {
109 return "An FFTImageFilter factory";
110 }
111
113 itkFactorylessNewMacro(Self);
114
116 itkOverrideGetNameOfClassMacro(FFTImageFilterFactory);
117
119 static void
126
127protected:
133 template <typename InputPixelType, typename OutputPixelType, unsigned int D, unsigned int... ImageDimensions>
134 void
135 OverrideFFTImageFilterType(const std::integer_sequence<unsigned int, D, ImageDimensions...> &)
136 {
137 using InputImageType = TInput<InputPixelType, D>;
138 using OutputImageType = TOutput<OutputPixelType, D>;
139 this->RegisterOverride(typeid(typename TFFTImageFilter<InputImageType, OutputImageType>::Superclass).name(),
140 typeid(TFFTImageFilter<InputImageType, OutputImageType>).name(),
141 "FFT Image Filter Override",
142 true,
143 CreateObjectFunction<TFFTImageFilter<InputImageType, OutputImageType>>::New());
145 std::integer_sequence<unsigned int, ImageDimensions...>{});
146 }
147 template <typename InputPixelType, typename OutputPixelType>
148 void
149 OverrideFFTImageFilterType(const std::integer_sequence<unsigned int> &)
150 {}
151
162};
163
164} // namespace itk
165
166#endif // itkFFTImageFilterFactory_h
Used to create callback functions that create ITK Objects for use with the itk::ObjectFactory.
const char * GetITKSourceVersion() const override
const char * GetDescription() const override
void OverrideFFTImageFilterType(const std::integer_sequence< unsigned int > &)
void OverrideFFTImageFilterType(const std::integer_sequence< unsigned int, D, ImageDimensions... > &)
SmartPointer< const Self > ConstPointer
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....
Helper defining pixel traits for templated FFT image filters.