HomeSort by relevance Sort by last modified time
    Searched refs:base_w (Results 1 - 3 of 3) sorted by null

  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 736 int base_w = -1, base_h = -1; local
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) );
761 base_w += 1;
763 kx = r[0].width / base_w;
791 tr.x = (r[k].x - r[0].x) * new_base_w / base_w + x0;
792 tr.width = r[k].width * new_base_w / base_w;
    [all...]
cvhaar.cpp 537 int base_w = -1, base_h = -1; local
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) );
562 base_w += 1;
564 kx = r[0].width / base_w;
590 tr.x = (r[k].x - r[0].x) * new_base_w / base_w + x0;
591 tr.width = r[k].width * new_base_w / base_w;
    [all...]
  /external/opencv3/modules/objdetect/src/
haar.cpp 524 int base_w = -1, base_h = -1; local
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) );
545 base_w += 1;
547 kx = r[0].width / base_w;
571 tr.x = (r[k].x - r[0].x) * new_base_w / base_w + x0;
572 tr.width = r[k].width * new_base_w / base_w;
    [all...]

Completed in 930 milliseconds