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