Lines Matching defs:step

95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed,
99 uchar* img = pImage + step * seed.y;
167 img = pImage + (YC + dir) * step;
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed,
231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y;
299 img = pImage + (YC + dir) * step;
373 icvFloodFill_Grad_8u_CnIR( uchar* pImage, int step, uchar* pMask, int maskStep,
378 uchar* img = pImage + step*seed.y;
480 curstep = dir * step;
481 img = pImage + (YC + dir) * step;
555 img = pImage + YC * step;
568 curstep = dir * step;
569 img = pImage + (YC + dir) * step;
643 img = pImage + YC * step;
679 icvFloodFill_Grad_32f_CnIR( float* pImage, int step, uchar* pMask, int maskStep,
684 float* img = pImage + (step /= sizeof(float))*seed.y;
786 curstep = dir * step;
787 img = pImage + (YC + dir) * step;
862 img = pImage + YC * step;
875 curstep = dir * step;
876 img = pImage + (YC + dir) * step;
951 img = pImage + YC * step;
991 void* img, int step, CvSize size, CvPoint seed, void* newval,
995 void* img, int step, uchar* mask, int maskStep, CvSize size,
1080 const uchar* seed_ptr = img->data.ptr + img->step*seed_point.y + elem_size*seed_point.x;
1091 IPPI_CALL( func( img->data.ptr, img->step, size,
1121 int width = tempMask ? mask->step : size.width + 2;
1122 uchar* mask_row = mask->data.ptr + mask->step;
1123 memset( mask_row - mask->step, 1, width );
1125 for( i = 1; i <= size.height; i++, mask_row += mask->step )
1149 IPPI_CALL( func( img->data.ptr, img->step, mask->data.ptr, mask->step,