Searched refs:bgr565 (Results 1 - 2 of 2) sorted by last modified time

/external/opencv/otherlibs/highgui/
H A Dutils.cpp247 void icvCvt_BGR5652Gray_8u_C2C1R( const uchar* bgr565, int bgr565_step, argument
251 for( ; size.height--; gray += gray_step, bgr565 += bgr565_step )
255 int t = descale( ((((ushort*)bgr565)[i] << 3) & 0xf8)*cB +
256 ((((ushort*)bgr565)[i] >> 3) & 0xfc)*cG +
257 ((((ushort*)bgr565)[i] >> 8) & 0xf8)*cR, SCALE );
282 void icvCvt_BGR5652BGR_8u_C2C3R( const uchar* bgr565, int bgr565_step, argument
286 for( ; size.height--; bgr565 += bgr565_step )
290 int t0 = (((ushort*)bgr565)[i] << 3) & 0xf8;
291 int t1 = (((ushort*)bgr565)[i] >> 3) & 0xfc;
292 int t2 = (((ushort*)bgr565)[
[all...]
H A Dutils.h85 void icvCvt_BGR5652Gray_8u_C2C1R( const uchar* bgr565, int bgr565_step,
89 void icvCvt_BGR5652BGR_8u_C2C3R( const uchar* bgr565, int bgr565_step,

Completed in 169 milliseconds