mirror of
https://github.com/xdsopl/robot36.git
synced 2026-01-27 18:04:14 +01:00
13 lines
309 B
C
13 lines
309 B
C
|
|
#ifndef YUV_H
|
|
#define YUV_H
|
|
#include <stdint.h>
|
|
|
|
uint8_t R_YUV(uint8_t, uint8_t, uint8_t);
|
|
uint8_t G_YUV(uint8_t, uint8_t, uint8_t);
|
|
uint8_t B_YUV(uint8_t, uint8_t, uint8_t);
|
|
uint8_t Y_RGB(uint8_t, uint8_t, uint8_t);
|
|
uint8_t V_RGB(uint8_t, uint8_t, uint8_t);
|
|
uint8_t U_RGB(uint8_t, uint8_t, uint8_t);
|
|
#endif
|