Home | History | Annotate | Download | only in src

Lines Matching full:seed

95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed,
99 uchar* img = pImage + step * seed.y;
104 int XMin, XMax, YMin = seed.y, YMax = seed.y;
108 L = R = XMin = XMax = seed.x;
140 ICV_PUSH( seed.y, L, R, R + 1, R, UP );
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed,
231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y;
236 int XMin, XMax, YMin = seed.y, YMax = seed.y;
240 L = R = XMin = XMax = seed.x;
272 ICV_PUSH( seed.y, L, R, R + 1, R, UP );
374 CvSize /*roi*/, CvPoint seed, uchar* _newVal, uchar* _d_lw,
378 uchar* img = pImage + step*seed.y;
379 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y;
386 int XMin, XMax, YMin = seed.y, YMax = seed.y;
393 L = R = seed.x;
449 ICV_PUSH( seed.y, L, R, R + 1, R, UP );
680 CvSize /*roi*/, CvPoint seed, float* _newVal, float* _d_lw,
684 float* img = pImage + (step /= sizeof(float))*seed.y;
685 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y;
692 int XMin, XMax, YMin = seed.y, YMax = seed.y;
699 L = R = seed.x;
755 ICV_PUSH( seed.y, L, R, R + 1, R, UP );
991 void* img, int step, CvSize size, CvPoint seed, void* newval,
996 CvPoint seed, void* newval, void* d_lw, void* d_up, void* ccomp,
1071 CV_ERROR( CV_StsOutOfRange, "Seed point is outside of image" );
1084 // check if the new value is different from the current value at the seed point.