Home | History | Annotate | Download | only in src

Lines Matching refs:widthStep

86                                                 CvSize size, int widthStep,
117 uchar* srcdata1 = src1 + widthStep * y;
118 uchar* srcdata2 = src2 + widthStep * y;
271 dispdata = dest + widthStep * y;
312 if( dest[(y-1)*widthStep+x] == dest[(y+1)*widthStep+x] )
314 dest[y*widthStep+x] = dest[(y-1)*widthStep+x];
324 if( ( CV_IMAX3( src1[(y-1)*widthStep+x], src1[y*widthStep+x],
325 src1[(y+1)*widthStep+x] ) -
326 CV_IMIN3( src1[(y-1)*widthStep+x], src1[y*widthStep+x],
327 src1[(y+1)*widthStep+x] ) ) >= ICV_BIRCH_DIFF_LUM )
361 for( ; y < imgH && dest[y*widthStep+x] == dest[(y-1)*widthStep+x]; y++ )
376 d = dest[y*widthStep+x];
380 disparities[y*widthStep+x] = (uchar)d;
385 ( dest[i*widthStep+x] < d &&
388 dest[i*widthStep+x] - 1 == d ) ) break;
390 disparities[i*widthStep+x] = (uchar)d;
397 ( dest[i*widthStep+x] < d &&
400 dest[i*widthStep+x] - 1 == d ) ) break;
402 disparities[i*widthStep+x] = (uchar)d;
408 disparities[y*widthStep+x] = (uchar)d;
419 for( ; x < imgW && dest[y*widthStep+x] == dest[y*widthStep+x-1]; x++ );
433 d = dest[y*widthStep+x];
437 disparities[y*widthStep+x] = (uchar)d;
442 ( dest[y*widthStep+i] < d &&
445 dest[y*widthStep+i] - 1 == d ) ) break;
447 disparities[y*widthStep+i] = (uchar)d;
454 ( dest[y*widthStep+i] < d &&
457 dest[y*widthStep+i] - 1 == d ) ) break;
459 disparities[y*widthStep+i] = (uchar)d;
465 disparities[y*widthStep+x] = (uchar)d;