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