18 #ifndef __itkAcosImageAdaptor_h
19 #define __itkAcosImageAdaptor_h
22 #include "vnl/vnl_math.h"
40 template<
class TInternalType,
class TExternalType >
53 static inline void Set(TInternalType & output,
const TExternalType & input)
54 { output = (TInternalType)vcl_acos( (
double)input ); }
56 static inline TExternalType Get(
const TInternalType & input)
57 {
return (TExternalType)vcl_acos( (
double)input ); }
70 template<
class TImage,
class TOutputPixelType >
73 typename TImage::PixelType,
80 typename TImage::PixelType,
98 void operator=(
const Self &);