ddt 1.2.1
|
#include <imageColor.hpp>
Public Attributes | |
std::array< uint, MAX_SCALING_LUT_ENTRIES > | lut |
double | offset |
double | factor |
The scaling Lookup-Table type definition. The scaling LUT consists of a 65536 element array of uint values. The LUT is used to assign each pixel value another pixel values that e.g. was computed using a logarithmic function. In addition, an offset and a factor are contained. These are used to adjust value ranges that do not fit to the given LUT type and dimension.
double ddt::scalingLut_t::factor |
Factor to multiply the pixel values with in order to adjust the image pixel value range to the ushort value range.
std::array<uint, MAX_SCALING_LUT_ENTRIES> ddt::scalingLut_t::lut |
The lookup table. It consists of 65536 uint values.
double ddt::scalingLut_t::offset |
Offset to be added to the pixel values in order to shift the image pixel value range it into the positive.