Searched refs:cvtYUV422toRGBA (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/imgproc/src/ |
D | color.cpp | 6616 inline void cvtYUV422toRGBA(Mat& _dst, int _stride, const uchar* _yuv) in cvtYUV422toRGBA() function 8553 case 4000: cvtYUV422toRGBA<0,0,0>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8554 case 4001: cvtYUV422toRGBA<0,0,1>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8555 case 4010: cvtYUV422toRGBA<0,1,0>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8556 case 4011: cvtYUV422toRGBA<0,1,1>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8557 case 4200: cvtYUV422toRGBA<2,0,0>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8558 case 4201: cvtYUV422toRGBA<2,0,1>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8559 case 4210: cvtYUV422toRGBA<2,1,0>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor() 8560 case 4211: cvtYUV422toRGBA<2,1,1>(dst, (int)src.step, src.ptr<uchar>()); break; in cvtColor()
|