mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
276 B
19 lines
276 B
14 years ago
|
//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
|