ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkUnaryGeneratorImageFilter.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 itkUnaryGeneratorImageFilter_h
19#define itkUnaryGeneratorImageFilter_h
20
21#include "itkMath.h"
24
25#include <functional>
26
27namespace itk
28{
29
54template <typename TInputImage, typename TOutputImage>
55class ITK_TEMPLATE_EXPORT UnaryGeneratorImageFilter : public InPlaceImageFilter<TInputImage, TOutputImage>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(UnaryGeneratorImageFilter);
59
65
67 itkNewMacro(Self);
68
70 itkOverrideGetNameOfClassMacro(UnaryGeneratorImageFilter);
71
72 using InputImageType = TInputImage;
73 using InputImagePointer = typename InputImageType::ConstPointer;
74 using InputImageRegionType = typename InputImageType::RegionType;
75 using InputImagePixelType = typename InputImageType::PixelType;
76
77 using OutputImageType = TOutputImage;
78 using OutputImagePointer = typename OutputImageType::Pointer;
79 using OutputImageRegionType = typename OutputImageType::RegionType;
80 using OutputImagePixelType = typename OutputImageType::PixelType;
81
84
85
86#if !defined(ITK_WRAPPING_PARSER)
92 void
93 SetFunctor(const std::function<ConstRefFunctionType> & f)
94 {
95 m_DynamicThreadedGenerateDataFunction = [this, f](const OutputImageRegionType & outputRegionForThread) {
96 return this->DynamicThreadedGenerateDataWithFunctor(f, outputRegionForThread);
97 };
98
99 this->Modified();
100 }
101 void
102 SetFunctor(const std::function<ValueFunctionType> & f)
103 {
104 m_DynamicThreadedGenerateDataFunction = [this, f](const OutputImageRegionType & outputRegionForThread) {
105 return this->DynamicThreadedGenerateDataWithFunctor(f, outputRegionForThread);
106 };
107
108 this->Modified();
109 }
110
111
112
118 void
120 {
121 m_DynamicThreadedGenerateDataFunction = [this, funcPointer](const OutputImageRegionType & outputRegionForThread) {
122 return this->DynamicThreadedGenerateDataWithFunctor(funcPointer, outputRegionForThread);
123 };
124
125 this->Modified();
126 }
127 void
129 {
130 m_DynamicThreadedGenerateDataFunction = [this, funcPointer](const OutputImageRegionType & outputRegionForThread) {
131 return this->DynamicThreadedGenerateDataWithFunctor(funcPointer, outputRegionForThread);
132 };
133
134 this->Modified();
135 }
136
137
138
146 template <typename TFunctor>
147 void
148 SetFunctor(const TFunctor & functor)
149 {
150 m_DynamicThreadedGenerateDataFunction = [this, functor](const OutputImageRegionType & outputRegionForThread) {
151 return this->DynamicThreadedGenerateDataWithFunctor(functor, outputRegionForThread);
152 };
153
154 this->Modified();
155 }
156#endif // !defined( ITK_WRAPPING_PARSER )
157
158protected:
160 ~UnaryGeneratorImageFilter() override = default;
161
171 void
173
174
185 template <typename TFunctor>
186 void
187 DynamicThreadedGenerateDataWithFunctor(const TFunctor &, const OutputImageRegionType & outputRegionForThread);
188 void
189 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
191private:
193};
194} // end namespace itk
195
196#ifndef ITK_MANUAL_INSTANTIATION
197# include "itkUnaryGeneratorImageFilter.hxx"
198#endif
199
200#endif
virtual void Modified() const
Implements transparent reference counting.
OutputImagePixelType(InputImagePixelType) ValueFunctionType
void SetFunctor(const TFunctor &functor)
~UnaryGeneratorImageFilter() override=default
typename OutputImageType::RegionType OutputImageRegionType
typename InputImageType::ConstPointer InputImagePointer
void SetFunctor(ConstRefFunctionType *funcPointer)
typename OutputImageType::Pointer OutputImagePointer
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
OutputImagePixelType(const InputImagePixelType &) ConstRefFunctionType
void GenerateOutputInformation() override
void SetFunctor(ValueFunctionType *funcPointer)
void SetFunctor(const std::function< ConstRefFunctionType > &f)
typename InputImageType::RegionType InputImageRegionType
InPlaceImageFilter< TInputImage, TOutputImage > Superclass
std::function< void(const OutputImageRegionType &)> m_DynamicThreadedGenerateDataFunction
void SetFunctor(const std::function< ValueFunctionType > &f)
void DynamicThreadedGenerateDataWithFunctor(const TFunctor &, const OutputImageRegionType &outputRegionForThread)
typename OutputImageType::PixelType OutputImagePixelType
typename InputImageType::PixelType InputImagePixelType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....