enum P1::ImageSdk::PixelLayout#

Overview#

Memory layout of a bitmap image. More…

#include <C_P1ImageCommonTypes.h>

enum PixelLayout
{
    Unknown,
    Interleaved,
    Planar,
};

Detailed Documentation#

Memory layout of a bitmap image.

Enum Values#

Interleaved

Store pixel by pixel, f.x. RGB RGB RGB …

Planar

Store channel by channel, f.x. RRRR…GGGG…BBBB.