Go to the source code of this file.
|
| #define | CLAMP(value) if (value < 0) value = 0; else if (value > 255) value = 255; |
| |
|
| void | convertYUYVtoRGB24 (unsigned int w, unsigned int h, unsigned char const *srcptr, unsigned char *dstptr) |
| | Convert from YUYV to RGB, mostly intended for internal use. Use RawImage functions instead in most cases.
|
| |
| void | convertYUYVtoRGBYLinternal (int R, int G, int B, int *dstrg, int *dstby, int *dstlum, int thresh, int lshift, int lumlshift) |
| |
| void | convertYUYVtoRGBYL (unsigned int w, unsigned int h, unsigned char const *srcptr, int *dstrg, int *dstby, int *dstlum, int thresh, int inputbits) |
| | Convert from YUYV to RG, BY, and luminance for use by Saliency module in jevoisbase. For internal use.
|
| |
◆ CLAMP
| #define CLAMP |
( |
|
value | ) |
if (value < 0) value = 0; else if (value > 255) value = 255; |
◆ convertYUYVtoRGBYLinternal()
| void convertYUYVtoRGBYLinternal |
( |
int |
R, |
|
|
int |
G, |
|
|
int |
B, |
|
|
int * |
dstrg, |
|
|
int * |
dstby, |
|
|
int * |
dstlum, |
|
|
int |
thresh, |
|
|
int |
lshift, |
|
|
int |
lumlshift |
|
) |
| |
|
inline |