Home
last modified time | relevance | path

Searched refs:iMaxLevel (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cvaux/src/
Dcvfacedetection.cpp101 int iMinLevel = 0, iMaxLevel = 255, iStep = 255 / iNumLayers; in FindContours() local
102 ThresholdingParam(imgGray, iNumLayers, iMinLevel, iMaxLevel, iStep); in FindContours()
118 for (int l = iMinLevel, i = 0; l < iMaxLevel; l += iStep, i++) in FindContours()
132 …n::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, int &iStep) in ThresholdingParam() argument
166 iMaxLevel = i * GIST_STEP; in ThresholdingParam()
168 int dLevels = iMaxLevel - iMinLevel; in ThresholdingParam()
172 iMaxLevel = 255; in ThresholdingParam()
176 iMinLevel = iMaxLevel - iNumLayers; in ThresholdingParam()
180 iMaxLevel = iNumLayers; in ThresholdingParam()
183 iStep = (iMaxLevel - iMinLevel) / iNumLayers; in ThresholdingParam()
Dcvvecfacetracking.cpp67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &st…
274 int iMinLevel = 0, iMaxLevel = 255; in FindContours() local
276 ThresholdingParam(img, nLayers / 2, iMinLevel, iMaxLevel, step, power, 4); in FindContours()
289 if (iMaxLevelPrev > iMaxLevel) in FindContours()
291 iMinLevelPrev -= iMaxLevelPrev - iMaxLevel; in FindContours()
294 iMaxLevelPrev = iMaxLevel; in FindContours()
298 step = float(iMinLevelPrev - iMinLevel + iMaxLevel - iMaxLevelPrev) / float(n); in FindContours()
305 for (level = (float)iMaxLevelPrev; level < iMaxLevel && j < nLayers; level += step, j++) in FindContours()
613 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &st… in ThresholdingParam() argument
641 iMaxLevel = i; in ThresholdingParam()
[all …]
D_cvfacedetection.h350 …void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iSt…