Lines Matching refs:gray
84 uchar* gray, int gray_step,
89 for( ; size.height--; gray += gray_step )
94 gray[i] = (uchar)t;
103 ushort* gray, int gray_step,
108 for( ; size.height--; gray += gray_step )
113 gray[i] = (ushort)t;
122 uchar* gray, int gray_step,
127 for( ; size.height--; gray += gray_step )
132 gray[i] = (uchar)t;
140 void icvCvt_Gray2BGR_8u_C1C3R( const uchar* gray, int gray_step,
144 for( ; size.height--; gray += gray_step )
148 bgr[0] = bgr[1] = bgr[2] = gray[i];
231 uchar* gray, int gray_step, CvSize size )
234 for( ; size.height--; gray += gray_step, bgr555 += bgr555_step )
241 gray[i] = (uchar)t;
248 uchar* gray, int gray_step, CvSize size )
251 for( ; size.height--; gray += gray_step, bgr565 += bgr565_step )
258 gray[i] = (uchar)t;
321 uchar* gray, int gray_step, CvSize size )
333 gray[i] = (uchar)t;
335 gray += gray_step;