Searched refs:normrect (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/objdetect/src/opencl/ |
D | cascadedetect.cl | 82 int4 normrect, int sqofs, int2 windowsize) 90 int4 nofs0 = (int4)(mad24(normrect.y, sumstep, normrect.x), 91 mad24(normrect.y, sumstep, normrect.x + normrect.z), 92 mad24(normrect.y + normrect.w, sumstep, normrect.x), 93 mad24(normrect.y + normrect.w, sumstep, normrect.x + normrect.z)); 94 int normarea = normrect.z * normrect.w; 99 int4 nofs = (int4)(mad24(normrect.y, SUM_BUF_STEP, normrect.x), 100 mad24(normrect.y, SUM_BUF_STEP, normrect.x + normrect.z), 101 mad24(normrect.y + normrect.w, SUM_BUF_STEP, normrect.x), 102 mad24(normrect.y + normrect.w, SUM_BUF_STEP, normrect.x + normrect.z));
|
/external/opencv3/apps/traincascade/ |
D | features.cpp | 12 Rect normrect( 1, 1, sum.cols - 3, sum.rows - 3 ); in calcNormFactor() local 14 CV_SUM_OFFSETS( p0, p1, p2, p3, normrect, sum.step1() ) in calcNormFactor() 15 double area = normrect.width * normrect.height; in calcNormFactor()
|
/external/opencv3/modules/objdetect/src/ |
D | cascadedetect.cpp | 637 normrect = Rect(1, 1, origWinSize.width - 2, origWinSize.height - 2); in read() 711 CV_SUM_OFS( nofs[0], nofs[1], nofs[2], nofs[3], 0, normrect, sstep ); in computeOptFeatures() 741 double area = normrect.area(); in setWindow() 779 return normrect; in getNormRect() 1147 Rect normrect = haar->getNormRect(); in ocl_detectMultiScaleNoGrouping() local 1161 normrect, sqofs, data.origWinSize); in ocl_detectMultiScaleNoGrouping() 1424 hf.normRectArea = heval.normrect.area(); in setHaarVars() 1472 nr.x = heval.normrect.x; in setHaarVars() 1473 nr.y = heval.normrect.y; in setHaarVars() 1474 nr.width = heval.normrect.width; in setHaarVars() [all …]
|
D | cascadedetect.hpp | 390 Rect normrect; member in cv::HaarEvaluator
|