enum dlstreamer::ImageFormat#

#include <image_info.h>

enum ImageFormat: Format {
    BGR  = detail::fourcc<'B', 'G', 'R', ' '>::code,
    RGB  = detail::fourcc<'R', 'G', 'B', ' '>::code,
    BGRX = detail::fourcc<'B', 'G', 'R', 'X'>::code,
    RGBX = detail::fourcc<'R', 'G', 'B', 'X'>::code,
    BGRP = detail::fourcc<'B', 'G', 'R', 'P'>::code,
    RGBP = detail::fourcc<'R', 'G', 'B', 'P'>::code,
    NV12 = detail::fourcc<'N', 'V', '1', '2'>::code,
    I420 = detail::fourcc<'I', '4', '2', '0'>::code,
};