Xavia SDK c++ API 2.1.0
API description of the xavia library
Loading...
Searching...
No Matches
pixelFormat.h
1#pragma once
2#include <cstdint>
3
4namespace xavia::sdk {
5
6// Only the default RGB and mono variants, others are unknown
7enum class PixelFormat : std::uint8_t {
8 Unknown = 0,
9 BayerRG8,
10 BayerRG12, // default for Xavia 6D
11 BayerRG12packed, // 12 bit packed (1.5 bytes per pixel)
12 RGB8,
13 RGB12, //RGB 12 packed (2 bytes per color channel)
14};
15
16} // namespace xavia::sdk