18#ifndef itkAbsImageAdaptor_h
19#define itkAbsImageAdaptor_h
39template <
typename TInternalType,
typename TExternalType>
52 Set(TInternalType & output,
const TExternalType & input)
54 output = (TInternalType)((input > TExternalType{}) ? input : -input);
57 static inline TExternalType
58 Get(
const TInternalType & input)
60 return (TExternalType)((input > TInternalType{}) ? input : -input);
75template <
typename TImage,
typename TOutputPixelType>
77 :
public ImageAdaptor<TImage, Accessor::AbsPixelAccessor<typename TImage::PixelType, TOutputPixelType>>
ImageAdaptor< TImage, Accessor::AbsPixelAccessor< typename TImage::PixelType, TOutputPixelType > > Superclass
AbsImageAdaptor()=default
SmartPointer< const Self > ConstPointer
~AbsImageAdaptor() override=default
SmartPointer< Self > Pointer
Give access to the itk::Math::abs() function of a value.
TExternalType ExternalType
static TExternalType Get(const TInternalType &input)
static void Set(TInternalType &output, const TExternalType &input)
TInternalType InternalType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....