00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkAbsImageFilter_h
00018 #define __itkAbsImageFilter_h
00019
00020 #include "itkUnaryFunctorImageFilter.h"
00021
00022 namespace itk
00023 {
00024
00030 namespace Function {
00031
00032 template< class TInput, class TOutput>
00033 class Abs
00034 {
00035 public:
00036 Abs() {}
00037 ~Abs() {}
00038 inline TOutput operator()( const TInput & A )
00039 { return (TOutput)( ( A > 0 ) ? A : -A ); }
00040 };
00041 }
00042
00043 template <class TInputImage, class TOutputImage>
00044 class ITK_EXPORT AbsImageFilter :
00045 public
00046 UnaryFunctorImageFilter<TInputImage,TOutputImage,
00047 Function::Abs<
00048 typename TInputImage::PixelType,
00049 typename TOutputImage::PixelType> >
00050 {
00051 public:
00053 typedef AbsImageFilter Self;
00054 typedef UnaryFunctorImageFilter<TInputImage,TOutputImage,
00055 Function::Abs< typename TInputImage::PixelType,
00056 typename TOutputImage::PixelType> > Superclass;
00057 typedef SmartPointer<Self> Pointer;
00058 typedef SmartPointer<const Self> ConstPointer;
00059
00061 itkNewMacro(Self);
00062
00063 protected:
00064 AbsImageFilter() {}
00065 virtual ~AbsImageFilter() {}
00066
00067 private:
00068 AbsImageFilter(const Self&);
00069 void operator=(const Self&);
00070
00071 };
00072
00073 }
00074
00075
00076 #endif