Lines Matching refs:uchar
39 … void mog2_kernel(__global const uchar* frame, int frame_step, int frame_offset, int frame_row, in…
40 …__global uchar* modesUsed, //uc…
41 …__global uchar* weight, //fl…
42 …__global uchar* mean, //T_…
43 …__global uchar* variance, //fl…
44 …__global uchar* fgmask, int fgmask_step, int fgmask_offset, //uc…
49 , uchar c_shadowVal
58 __global const uchar* _frame = (frame + mad24(y, frame_step, mad24(x, CN, frame_offset)));
62 uchar foreground = 255; // 0 - the pixel classified as background
69 __global uchar* _modesUsed = modesUsed + pt_idx;
70 uchar nmodes = _modesUsed[0];
78 uchar mode = 0;
157 uchar mode = nmodes == (NMIXTURES) ? (NMIXTURES) - 1 : nmodes++;
193 for (uchar mode = 0; mode < nmodes; ++mode)
225 __global uchar* _fgmask = fgmask + mad24(y, fgmask_step, x + fgmask_offset);
226 *_fgmask = (uchar)foreground;
230 __kernel void getBackgroundImage2_kernel(__global const uchar* modesUsed,
231 __global const uchar* weight,
232 __global const uchar* mean,
233 … __global uchar* dst, int dst_step, int dst_offset, int dst_row, int dst_col,
243 __global const uchar* _modesUsed = modesUsed + pt_idx;
244 uchar nmodes = _modesUsed[0];
252 for (uchar mode = 0; mode < nmodes; ++mode)
270 __global uchar* _dst = dst + mad24(y, dst_step, mad24(x, CN, dst_offset));