robot36/yuv.h

13 wiersze
309 B
C
Czysty Zwykły widok Historia

2011-09-08 12:31:11 +00:00
#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);
2011-09-08 12:31:11 +00:00
#endif