17 #ifndef __itkAsinImageAdaptor_h
18 #define __itkAsinImageAdaptor_h
21 #include "vnl/vnl_math.h"
37 template <
class TInternalType,
class TExternalType >
50 static inline void Set(TInternalType & output,
const TExternalType & input)
51 {output = (TInternalType)vcl_asin((
double)input);}
53 static inline TExternalType Get(
const TInternalType & input )
54 {
return (TExternalType)vcl_asin((
double)input);}
68 template <
class TImage,
class TOutputPixelType>
71 Accessor::AsinPixelAccessor<
72 typename TImage::PixelType,
79 typename TImage::PixelType,
96 void operator=(
const Self&);