Searched refs:bgr555 (Results 1 – 2 of 2) sorted by relevance
/external/opencv/otherlibs/highgui/ |
D | utils.cpp | 230 void icvCvt_BGR5552Gray_8u_C2C1R( const uchar* bgr555, int bgr555_step, in icvCvt_BGR5552Gray_8u_C2C1R() argument 234 for( ; size.height--; gray += gray_step, bgr555 += bgr555_step ) in icvCvt_BGR5552Gray_8u_C2C1R() 238 int t = descale( ((((ushort*)bgr555)[i] << 3) & 0xf8)*cB + in icvCvt_BGR5552Gray_8u_C2C1R() 239 ((((ushort*)bgr555)[i] >> 2) & 0xf8)*cG + in icvCvt_BGR5552Gray_8u_C2C1R() 240 ((((ushort*)bgr555)[i] >> 7) & 0xf8)*cR, SCALE ); in icvCvt_BGR5552Gray_8u_C2C1R() 264 void icvCvt_BGR5552BGR_8u_C2C3R( const uchar* bgr555, int bgr555_step, in icvCvt_BGR5552BGR_8u_C2C3R() argument 268 for( ; size.height--; bgr555 += bgr555_step ) in icvCvt_BGR5552BGR_8u_C2C3R() 272 int t0 = (((ushort*)bgr555)[i] << 3) & 0xf8; in icvCvt_BGR5552BGR_8u_C2C3R() 273 int t1 = (((ushort*)bgr555)[i] >> 2) & 0xf8; in icvCvt_BGR5552BGR_8u_C2C3R() 274 int t2 = (((ushort*)bgr555)[i] >> 7) & 0xf8; in icvCvt_BGR5552BGR_8u_C2C3R()
|
D | utils.h | 83 void icvCvt_BGR5552Gray_8u_C2C1R( const uchar* bgr555, int bgr555_step, 87 void icvCvt_BGR5552BGR_8u_C2C3R( const uchar* bgr555, int bgr555_step,
|