|
bool | rcg::convertImage (uint8_t *rgb_out, uint8_t *mono_out, const uint8_t *raw, uint64_t pixelformat, size_t width, size_t height, size_t xpadding) |
| Converts image to RGB and monochrome format. More...
|
|
void | rcg::convYCbCr411toQuadRGB (uint8_t rgb[12], const uint8_t *row, int i) |
| Conversion of a group of four pixels from YCbCr411 format (6 bytes for four pixels) to RGB. More...
|
|
void | rcg::convYCbCr411toRGB (uint8_t rgb[3], const uint8_t *row, int i) |
| Conversion of one pixel from YCbCr411 format (6 bytes for four pixels) to RGB. More...
|
|
void | rcg::convYCbCr422toQuadRGB (uint8_t rgb[12], const uint8_t *row, int i) |
| Conversion of a group of four pixels from YCbCr422 format (8 bytes for 4 pixels) to RGB. More...
|
|
void | rcg::convYCbCr422toRGB (uint8_t rgb[3], const uint8_t *row, int i) |
| Conversion of one pixel from YCbCr422 format (4 bytes for 2 pixels) to RGB. More...
|
|
void | rcg::getColor (uint8_t rgb[3], const std::shared_ptr< const Image > &img, uint32_t ds, uint32_t i, uint32_t k) |
| Expects an image in Mono8, RGB8, YCbCr411_8, YCbCr422_8 or YUV422_8 format and returns the color as RGB value at the given pixel location. More...
|
|
bool | rcg::isFormatSupported (uint64_t pixelformat, bool only_color) |
| Returns true if the given pixel format is supported by the convertImage() function. More...
|
|