18#ifndef itkSqrtImageAdaptor_h
19#define itkSqrtImageAdaptor_h
40template <
typename TInternalType,
typename TExternalType>
53 Set(TInternalType & output,
const TExternalType & input)
55 output = (TInternalType)std::sqrt(
static_cast<double>(input));
58 static inline TExternalType
59 Get(
const TInternalType & input)
61 return (TExternalType)std::sqrt(
static_cast<double>(input));
76template <
typename TImage,
typename TOutputPixelType>
78 :
public ImageAdaptor<TImage, Accessor::SqrtPixelAccessor<typename TImage::PixelType, TOutputPixelType>>
Give access to the std::sqrt() function of a value.
TInternalType InternalType
TExternalType ExternalType
static TExternalType Get(const TInternalType &input)
static void Set(TInternalType &output, const TExternalType &input)
Implements transparent reference counting.
ImageAdaptor< TImage, Accessor::SqrtPixelAccessor< typename TImage::PixelType, TOutputPixelType > > Superclass
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
SqrtImageAdaptor()=default
~SqrtImageAdaptor() override=default
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....