enum P1::ImageSdk::DigitalOffset#
Overview#
Digital Offset is a value added to all pixels, to avoid underflow of unsigned integers. More…
#include <P1ImageDecodeConfig.hpp> enum DigitalOffset { Subtract, Keep, Default = Subtract, };
Detailed Documentation#
Digital Offset is a value added to all pixels, to avoid underflow of unsigned integers.
Enum Values#
Subtract
Substract the the digital offset from the pixel values.
Keep
Leaves the offset as-is.
Default
Let the framework decide on whether digital offset are substracted from pixel values, or not.