18 #ifndef itkPixelAccessor_h
19 #define itkPixelAccessor_h
53 template<
typename TInternalType,
typename TExternalType >
65 inline void Set(TInternalType & output,
const TExternalType & input)
const
66 { output = (TInternalType)input; }
68 inline TExternalType
Get(
const TInternalType & input)
const
69 {
return (TExternalType)input; }
void Set(TInternalType &output, const TExternalType &input) const
TExternalType Get(const TInternalType &input) const
Give access to partial aspects of a type.
TInternalType InternalType
TExternalType ExternalType