ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkUnaryFunctorImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 "itkInPlaceImageFilter.h"
23 
24 namespace itk
25 {
47 template< typename TInputImage, typename TOutputImage, typename TFunction >
48 class UnaryFunctorImageFilter:public InPlaceImageFilter< TInputImage, TOutputImage >
49 {
50 public:
56 
58  itkNewMacro(Self);
59 
62 
64  typedef TFunction FunctorType;
65 
66  typedef TInputImage InputImageType;
67  typedef typename InputImageType::ConstPointer InputImagePointer;
68  typedef typename InputImageType::RegionType InputImageRegionType;
69  typedef typename InputImageType::PixelType InputImagePixelType;
70 
71  typedef TOutputImage OutputImageType;
72  typedef typename OutputImageType::Pointer OutputImagePointer;
73  typedef typename OutputImageType::RegionType OutputImageRegionType;
74  typedef typename OutputImageType::PixelType OutputImagePixelType;
75 
81  const FunctorType & GetFunctor() const { return m_Functor; }
83 
90  void SetFunctor(const FunctorType & functor)
91  {
92  if ( m_Functor != functor )
93  {
94  m_Functor = functor;
95  this->Modified();
96  }
97  }
99 
100 protected:
103 
112  virtual void GenerateOutputInformation() ITK_OVERRIDE;
113 
124  void ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
125  ThreadIdType threadId) ITK_OVERRIDE;
126 
127 private:
128  UnaryFunctorImageFilter(const Self &); //purposely not implemented
129  void operator=(const Self &); //purposely not implemented
130 
132 };
133 } // end namespace itk
134 
135 #ifndef ITK_MANUAL_INSTANTIATION
136 #include "itkUnaryFunctorImageFilter.hxx"
137 #endif
138 
139 #endif
InputImageType::ConstPointer InputImagePointer
Light weight base class for most itk classes.
InputImageType::RegionType InputImageRegionType
InPlaceImageFilter< TInputImage, TOutputImage > Superclass
OutputImageType::Pointer OutputImagePointer
OutputImageType::PixelType OutputImagePixelType
const FunctorType & GetFunctor() const
InputImageType::PixelType InputImagePixelType
virtual void Modified() const
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
void ThreadedGenerateData(const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId) override
Implements pixel-wise generic operation on one image.
OutputImageType::RegionType OutputImageRegionType
Base class for filters that take an image as input and overwrite that image as the output...
SmartPointer< const Self > ConstPointer
void SetFunctor(const FunctorType &functor)
virtual void GenerateOutputInformation() override