ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkNotImageFilter.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 itkNotImageFilter_h
19 #define itkNotImageFilter_h
20 
22 #include "itkNumericTraits.h"
23 
24 namespace itk
25 {
26 namespace Functor
27 {
33 template< typename TInput, typename TOutput = TInput >
34 class NOT
35 {
36 public:
37  NOT() {}
38  ~NOT() {}
39  bool operator!=(const NOT &) const
40  {
41  return false;
42  }
44 
45  bool operator==(const NOT & other) const
46  {
47  return !( *this != other );
48  }
49 
50  inline TOutput operator()(const TInput & A) const
51  {
52  return static_cast< TOutput >( !A );
53  }
54 };
55 }
80 template< typename TInputImage, typename TOutputImage >
82  public
83  UnaryFunctorImageFilter< TInputImage, TOutputImage,
84  Functor::NOT<
85  typename TInputImage::PixelType,
86  typename TOutputImage::PixelType > >
87 
88 {
89 public:
93  TInputImage, TOutputImage,
95  typename TInputImage::PixelType,
96  typename TOutputImage::PixelType >
98 
101 
103  itkNewMacro(Self);
104 
106  itkTypeMacro(NotImageFilter,
108 
109 #ifdef ITK_USE_CONCEPT_CHECKING
110  // Begin concept checking
111  itkConceptMacro( InputConvertibleToOutputCheck,
112  ( Concept::Convertible< typename TInputImage::PixelType,
113  bool > ) );
114  itkConceptMacro( OutputConvertibleToOutputCheck,
115  ( Concept::Convertible< bool,
116  typename TOutputImage::PixelType > ) );
117  itkConceptMacro( InputNotOperatorCheck,
119  // End concept checking
120 #endif
121 
122 protected:
124  virtual ~NotImageFilter() {}
125 
126 private:
127  NotImageFilter(const Self &); //purposely not implemented
128  void operator=(const Self &); //purposely not implemented
129 };
130 } // end namespace itk
131 
132 #endif
SmartPointer< Self > Pointer
Implements the NOT logical operator pixel-wise on an image.
Base class for all process objects that output image data.
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::NOT< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
void operator=(const Self &)
TOutput operator()(const TInput &A) const
Implements pixel-wise generic operation on one image.
Unary logical NOT functor.
bool operator==(const NOT &other) const
bool operator!=(const NOT &) const
#define itkConceptMacro(name, concept)
SmartPointer< const Self > ConstPointer