00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkNotImageFilter_h
00018 #define __itkNotImageFilter_h
00019
00020 #include "itkUnaryFunctorImageFilter.h"
00021 #include "itkNumericTraits.h"
00022
00023
00024 namespace itk
00025 {
00026
00046 namespace Functor {
00047
00048 template< class TInput, class TOutput=TInput >
00049 class NOT
00050 {
00051 public:
00052 NOT() {};
00053 ~NOT() {};
00054 inline TOutput operator()( const TInput & A )
00055 {
00056 return static_cast<TOutput>( !A );
00057 }
00058 };
00059
00060 }
00061 template <class TInputImage, class TOutputImage>
00062 class ITK_EXPORT NotImageFilter :
00063 public
00064 UnaryFunctorImageFilter<TInputImage,TOutputImage,
00065 Functor::NOT<
00066 typename TInputImage::PixelType,
00067 typename TOutputImage::PixelType> >
00068
00069
00070 {
00071 public:
00073 typedef NotImageFilter Self;
00074 typedef UnaryFunctorImageFilter<TInputImage,TOutputImage,
00075 Functor::NOT<
00076 typename TInputImage::PixelType,
00077 typename TOutputImage::PixelType>
00078 > Superclass;
00079 typedef SmartPointer<Self> Pointer;
00080 typedef SmartPointer<const Self> ConstPointer;
00081
00083 itkNewMacro(Self);
00084
00085 protected:
00086 NotImageFilter() {}
00087 virtual ~NotImageFilter() {}
00088
00089 private:
00090 NotImageFilter(const Self&);
00091 void operator=(const Self&);
00092
00093 };
00094
00095 }
00096
00097
00098 #endif