18 #ifndef __itkAtanImageAdaptor_h
19 #define __itkAtanImageAdaptor_h
22 #include "vnl/vnl_math.h"
41 template<
class TInternalType,
class TExternalType >
54 static inline void Set(TInternalType & output,
const TExternalType & input)
55 { output = (TInternalType)vcl_atan( (
double)input ); }
57 static inline TExternalType Get(
const TInternalType & input)
58 {
return (TExternalType)vcl_atan( (
double)input ); }
73 template<
class TImage,
class TOutputPixelType >
76 Accessor::AtanPixelAccessor<
77 typename TImage::PixelType,
85 typename TImage::PixelType,
103 void operator=(
const Self &);