mirror of
https://github.com/opencv/opencv.git
synced 2025-01-09 21:27:59 +08:00
19 lines
276 B
C
19 lines
276 B
C
|
//yuv420sp2rgb.h
|
||
|
#ifndef YUV420SP2RGB_H
|
||
|
#define YUV420SP2RGB_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void color_convert_common(
|
||
|
unsigned char *pY, unsigned char *pUV,
|
||
|
int width, int height, unsigned char *buffer,
|
||
|
int grey);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|