|
ITK
5.2.0
Insight Toolkit
|
Go to the documentation of this file.
18 #ifndef itkExpNegativeImageAdaptor_h
19 #define itkExpNegativeImageAdaptor_h
40 template <
typename TInternalType,
typename TExternalType>
54 Set(TInternalType & output,
const TExternalType & input)
56 output = static_cast<TInternalType>(std::exp(-static_cast<double>(input)));
59 static inline TExternalType
60 Get(
const TInternalType & input)
62 return static_cast<TExternalType>(std::exp(-static_cast<double>(input)));
77 template <
typename TImage,
typename TOutputPixelType>
79 :
public ImageAdaptor<TImage, Accessor::ExpNegativePixelAccessor<typename TImage::PixelType, TOutputPixelType>>
static TExternalType Get(const TInternalType &input)
Presents an image as being composed of the std::exp() of its pixels.
TImage::PixelType InternalType
Give access to partial aspects of voxels from an Image.
~ExpNegativeImageAdaptor() override=default
ExpNegativeImageAdaptor()=default
Give access to the std::exp() function of a value.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
TOutputPixelType ExternalType
static void Set(TInternalType &output, const TExternalType &input)
Base class for most ITK classes.
Base class for all data objects in ITK.