ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkUnaryFunctorImageFilter.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 itkUnaryFunctorImageFilter_h
19#define itkUnaryFunctorImageFilter_h
20
21#include "itkMath.h"
24
25namespace itk
26{
49template <typename TInputImage, typename TOutputImage, typename TFunction>
50class ITK_TEMPLATE_EXPORT UnaryFunctorImageFilter : public InPlaceImageFilter<TInputImage, TOutputImage>
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(UnaryFunctorImageFilter);
54
60
62 itkNewMacro(Self);
63
65 itkOverrideGetNameOfClassMacro(UnaryFunctorImageFilter);
66
68 using FunctorType = TFunction;
69
70 using InputImageType = TInputImage;
71 using InputImagePointer = typename InputImageType::ConstPointer;
72 using InputImageRegionType = typename InputImageType::RegionType;
73 using InputImagePixelType = typename InputImageType::PixelType;
74
75 using OutputImageType = TOutputImage;
76 using OutputImagePointer = typename OutputImageType::Pointer;
77 using OutputImageRegionType = typename OutputImageType::RegionType;
78 using OutputImagePixelType = typename OutputImageType::PixelType;
79
86 {
87 return m_Functor;
88 }
89 const FunctorType &
90 GetFunctor() const
91 {
92 return m_Functor;
93 }
94
95
102 void
103 SetFunctor(const FunctorType & functor)
104 {
105 if (m_Functor != functor)
106 {
107 m_Functor = functor;
108 this->Modified();
109 }
110 }
111
112
113protected:
115 ~UnaryFunctorImageFilter() override = default;
116
125 void
127
138 void
139 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
140
141private:
143};
144} // end namespace itk
145
146#ifndef ITK_MANUAL_INSTANTIATION
147# include "itkUnaryFunctorImageFilter.hxx"
148#endif
149
150#endif
virtual void Modified() const
Implements transparent reference counting.
typename InputImageType::PixelType InputImagePixelType
typename InputImageType::ConstPointer InputImagePointer
typename OutputImageType::PixelType OutputImagePixelType
~UnaryFunctorImageFilter() override=default
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
typename OutputImageType::Pointer OutputImagePointer
typename OutputImageType::RegionType OutputImageRegionType
void SetFunctor(const FunctorType &functor)
const FunctorType & GetFunctor() const
void GenerateOutputInformation() override
InPlaceImageFilter< TInputImage, TOutputImage > Superclass
SmartPointer< const Self > ConstPointer
typename InputImageType::RegionType InputImageRegionType
Functor::Add2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > FunctorType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....