Home | History | Annotate | Download | only in src

Lines Matching refs:step

84 icvSegmFloodFill_Stage1( uchar* pImage, int step,
91 uchar* img = pImage + step * seed.y;
103 img = pImage + seed.y*step;
144 /*curstep = flag * step;*/
145 img = pImage + (YC + flag) * step;
170 img = pImage + YC * step;
206 icvSegmFloodFill_Stage2( uchar* pImage, int step,
211 uchar* img = pImage + step * rect.y + rect.x * 3;
216 for( y = 0; y < rect.height; y++, img += step, mask += maskStep )
335 icvGetComponent( uchar* img, int step, CvRect rect,
345 CV_INIT_3X3_DELTAS( deltas, step, 1 );
348 ptr = (char*)(img + step*rect.y);
352 for( y = rect.y; y < rect.height; y++, ptr += step )
530 if( mask->data.ptr[mask->step*pt.y + pt.x] == 0 )
535 icvSegmFloodFill_Stage1( src->data.ptr, src->step,
536 mask->data.ptr, mask->step,
553 CvSeq* tmpseq = icvGetComponent( mask->data.ptr, mask->step,
567 icvSegmFloodFill_Stage2( dst->data.ptr, dst->step,
568 mask->data.ptr, mask->step,