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