/external/opencv/cv/src/ |
mycvHaarDetectObjects.cpp | 751 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].width-1) ); 752 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].x - r[0].x-1) ); 753 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].height-1) ); 754 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].y - r[0].y-1) ); [all...] |
cvhaar.cpp | 552 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].width-1) ); 553 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].x - r[0].x-1) ); 554 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].height-1) ); 555 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].y - r[0].y-1) ); [all...] |
cvhough.cpp | 388 i = CV_IMIN( i, sfn ); [all...] |
/external/opencv/cxcore/src/ |
cxcmp.cpp | [all...] |
cxarray.cpp | [all...] |
cxmatrix.cpp | 71 len = CV_IMIN( size.width, size.height ); [all...] |
/external/opencv3/modules/objdetect/src/ |
haar.cpp | 537 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].width-1) ); 538 base_w = (int)CV_IMIN( (unsigned)base_w, (unsigned)(r[k].x - r[0].x-1) ); 539 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].height-1) ); 540 base_h = (int)CV_IMIN( (unsigned)base_h, (unsigned)(r[k].y - r[0].y-1) ); [all...] |
/external/opencv/cxcore/include/ |
cxtypes.h | 197 #define CV_IMIN(a, b) ((a) ^ (((a)^(b)) & (((a) < (b)) - 1))) [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
types_c.h | 184 #define CV_IMIN(a, b) ((a) ^ (((a)^(b)) & (((a) < (b)) - 1))) [all...] |
/external/opencv3/modules/imgproc/src/ |
hough.cpp | 368 i = CV_IMIN( i, sfn ); [all...] |
/external/opencv3/modules/core/src/ |
array.cpp | [all...] |