Home | History | Annotate | Download | only in src

Lines Matching refs:minloc

59     minLoc->x = min_loc;                        \
61 minLoc->y = maxLoc->y = 0; \
90 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ), \
91 (src, step, size, minVal, maxVal, minLoc, maxLoc) ) \
110 CvPoint* minLoc, CvPoint* maxLoc ) \
218 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ), \
219 ( src, step, mask, maskStep, size, minVal, maxVal, minLoc, maxLoc) ) \
238 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ) \
302 CvPoint minloc, maxloc;
366 pmin, pmax, &minloc, &maxloc ));
376 pmin, pmax, &minloc, &maxloc ));
390 pmin, pmax, &minloc, &maxloc ));
401 pmin, pmax, &minloc, &maxloc ));
407 if( minloc.x >= mat->cols )
409 minloc.y = minloc.x / mat->cols;
410 minloc.x -= minloc.y * mat->cols;
419 if( matmask && ((unsigned)minloc.x >= (unsigned)mat->cols ||
420 (unsigned)minloc.y >= (unsigned)mat->rows ||
421 matmask->data.ptr[minloc.y*matmask->step + minloc.x] == 0 ||
426 minloc.x = minloc.y = maxloc.x = maxloc.y = -1;
431 *_minLoc = minloc;