18 #ifndef __itkComplexToImaginaryImageAdaptor_h
19 #define __itkComplexToImaginaryImageAdaptor_h
43 template<
class TInternalType,
class TExternalType >
55 static inline void Set(TInternalType & output,
const TExternalType & input)
56 { output = (TInternalType)( input ); }
58 static inline TExternalType Get(
const TInternalType & input)
59 {
return (TExternalType)( input.imag() ); }
73 template<
class TImage,
class TOutputPixelType >
76 Accessor::ComplexToImaginaryPixelAccessor<
77 typename TImage::PixelType,
84 typename TImage::PixelType,
102 void operator=(
const Self &);