18 #ifndef __itkComplexToRealImageAdaptor_h
19 #define __itkComplexToRealImageAdaptor_h
40 template<
class TInternalType,
class TExternalType >
52 static inline void Set(TInternalType & output,
const TExternalType & input)
53 { output = (TInternalType)( input ); }
55 static inline TExternalType Get(
const TInternalType & input)
56 {
return (TExternalType)( input.real() ); }
70 template<
class TImage,
class TOutputPixelType >
73 Accessor::ComplexToRealPixelAccessor<
74 typename TImage::PixelType,
81 typename TImage::PixelType,
99 void operator=(
const Self &);