18 #ifndef __itkLog10ImageAdaptor_h
19 #define __itkLog10ImageAdaptor_h
22 #include "vnl/vnl_math.h"
40 template<
class TInternalType,
class TExternalType >
52 static inline void Set(TInternalType & output,
const TExternalType & input)
53 { output = (TInternalType)vcl_log10( (
double)input ); }
55 static inline TExternalType Get(
const TInternalType & input)
56 {
return (TExternalType)vcl_log10( (
double)input ); }
69 template<
class TImage,
class TOutputPixelType >
72 typename TImage::PixelType,
79 typename TImage::PixelType,
97 void operator=(
const Self &);