ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryGeneratorImageFilter.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 itkBinaryGeneratorImageFilter_h
19#define itkBinaryGeneratorImageFilter_h
20
23
24
25#include <functional>
26
27namespace itk
28{
55template <typename TInputImage1, typename TInputImage2, typename TOutputImage>
56class ITK_TEMPLATE_EXPORT BinaryGeneratorImageFilter : public InPlaceImageFilter<TInputImage1, TOutputImage>
57{
58public:
59 ITK_DISALLOW_COPY_AND_MOVE(BinaryGeneratorImageFilter);
60
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(BinaryGeneratorImageFilter);
72
74 using Input1ImageType = TInputImage1;
75 using Input1ImagePointer = typename Input1ImageType::ConstPointer;
76 using Input1ImageRegionType = typename Input1ImageType::RegionType;
77 using Input1ImagePixelType = typename Input1ImageType::PixelType;
79
80 using Input2ImageType = TInputImage2;
81 using Input2ImagePointer = typename Input2ImageType::ConstPointer;
82 using Input2ImageRegionType = typename Input2ImageType::RegionType;
83 using Input2ImagePixelType = typename Input2ImageType::PixelType;
85
86 using OutputImageType = TOutputImage;
87 using OutputImagePointer = typename OutputImageType::Pointer;
88 using OutputImageRegionType = typename OutputImageType::RegionType;
89 using OutputImagePixelType = typename OutputImageType::PixelType;
90
92
95
98 virtual void
99 SetInput1(const TInputImage1 * image1);
100 virtual void
102 virtual void
106 virtual void
108
111 virtual const Input1ImagePixelType &
113
116 virtual void
117 SetInput2(const TInputImage2 * image2);
118 virtual void
120 virtual void
123
126 virtual void
128 void
130 {
131 this->SetConstant2(ct);
132 }
133
137 virtual const Input2ImagePixelType &
141 {
142 return this->GetConstant2();
143 }
144
145
146#if !defined(ITK_WRAPPING_PARSER)
151 void
152 SetFunctor(const std::function<ConstRefFunctionType> & f)
153 {
154 // the closure creates a copy of f
155 m_DynamicThreadedGenerateDataFunction = [this, f](const OutputImageRegionType & outputRegionForThread) {
156 return this->DynamicThreadedGenerateDataWithFunctor(f, outputRegionForThread);
157 };
158
159 this->Modified();
160 }
161 void
162 SetFunctor(const std::function<ValueFunctionType> & f)
163 {
164 // the capture creates a copy of f
165 m_DynamicThreadedGenerateDataFunction = [this, f](const OutputImageRegionType & outputRegionForThread) {
166 return this->DynamicThreadedGenerateDataWithFunctor(f, outputRegionForThread);
167 };
168
169 this->Modified();
170 }
171
176 void
178 {
179 m_DynamicThreadedGenerateDataFunction = [this, funcPointer](const OutputImageRegionType & outputRegionForThread) {
180 return this->DynamicThreadedGenerateDataWithFunctor(funcPointer, outputRegionForThread);
181 };
182
183 this->Modified();
184 }
185 void
187 {
188 m_DynamicThreadedGenerateDataFunction = [this, funcPointer](const OutputImageRegionType & outputRegionForThread) {
189 return this->DynamicThreadedGenerateDataWithFunctor(funcPointer, outputRegionForThread);
190 };
191
192 this->Modified();
193 }
194
195
204 template <typename TFunctor>
205 void
206 SetFunctor(const TFunctor & functor)
207 {
208 // the capture creates a copy of the functor
209 m_DynamicThreadedGenerateDataFunction = [this, functor](const OutputImageRegionType & outputRegionForThread) {
210 return this->DynamicThreadedGenerateDataWithFunctor(functor, outputRegionForThread);
211 };
212
213 this->Modified();
214 }
215#endif // !defined( ITK_WRAPPING_PARSER )
216
217
219 static constexpr unsigned int InputImage1Dimension = TInputImage1::ImageDimension;
220 static constexpr unsigned int InputImage2Dimension = TInputImage2::ImageDimension;
221 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
222
223 itkConceptMacro(SameDimensionCheck1,
225 itkConceptMacro(SameDimensionCheck2,
227
228protected:
230 ~BinaryGeneratorImageFilter() override = default;
231
242 template <typename TFunctor>
243 void
244 DynamicThreadedGenerateDataWithFunctor(const TFunctor &, const OutputImageRegionType & outputRegionForThread);
245 void
246 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
247 void
249 {
250 this->UpdateProgress(1.0);
251 }
252
253 // Needed to take the image information from the 2nd input, if the first one is
254 // a simple decorated object.
255 void
257
258private:
260};
261} // end namespace itk
262
263#ifndef ITK_MANUAL_INSTANTIATION
264# include "itkBinaryGeneratorImageFilter.hxx"
265#endif
266
267#endif
typename Input2ImageType::PixelType Input2ImagePixelType
OutputImagePixelType(Input1ImagePixelType, Input2ImagePixelType) ValueFunctionType
virtual const Input2ImagePixelType & GetConstant2() const
virtual void SetInput1(const DecoratedInput1ImagePixelType *input1)
typename Input1ImageType::ConstPointer Input1ImagePointer
OutputImagePixelType(*)(const Input1ImagePixelType &, const Input2ImagePixelType &) FunctionType
SimpleDataObjectDecorator< Input2ImagePixelType > DecoratedInput2ImagePixelType
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void DynamicThreadedGenerateDataWithFunctor(const TFunctor &, const OutputImageRegionType &outputRegionForThread)
typename Input2ImageType::ConstPointer Input2ImagePointer
typename OutputImageType::PixelType OutputImagePixelType
virtual void SetInput2(const DecoratedInput2ImagePixelType *input2)
virtual void SetConstant1(const Input1ImagePixelType &input1)
virtual void SetInput2(const TInputImage2 *image2)
~BinaryGeneratorImageFilter() override=default
virtual void SetConstant2(const Input2ImagePixelType &input2)
virtual void SetInput1(const Input1ImagePixelType &input1)
typename Input1ImageType::RegionType Input1ImageRegionType
virtual const Input1ImagePixelType & GetConstant1() const
void SetFunctor(ValueFunctionType *funcPointer)
void SetFunctor(const std::function< ValueFunctionType > &f)
void GenerateOutputInformation() override
InPlaceImageFilter< TInputImage1, TOutputImage > Superclass
typename OutputImageType::RegionType OutputImageRegionType
typename OutputImageType::Pointer OutputImagePointer
SimpleDataObjectDecorator< Input1ImagePixelType > DecoratedInput1ImagePixelType
OutputImagePixelType(const Input1ImagePixelType &, const Input2ImagePixelType &) ConstRefFunctionType
virtual void SetInput2(const Input2ImagePixelType &input2)
typename Input1ImageType::PixelType Input1ImagePixelType
typename Input2ImageType::RegionType Input2ImageRegionType
void SetFunctor(const std::function< ConstRefFunctionType > &f)
virtual void SetInput1(const TInputImage1 *image1)
const Input2ImagePixelType & GetConstant() const
void SetFunctor(ConstRefFunctionType *funcPointer)
virtual void Modified() const
void UpdateProgress(float progress)
Update the progress of the process object.
Decorates any "simple" data type (data types without smart pointers) with a DataObject API.
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....