mirror of
https://github.com/opencv/opencv.git
synced 2025-06-10 19:24:07 +08:00
18 lines
271 B
C
18 lines
271 B
C
#ifndef YUV420SP2RGB_H
|
|
#define YUV420SP2RGB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void color_convert_common(
|
|
const unsigned char *pY, const unsigned char *pUV,
|
|
int width, int height, unsigned char *buffer,
|
|
int grey);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|