Home
last modified time | relevance | path

Searched refs:iMinLevel (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 void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxL… in ThresholdingParam() argument
158 iMinLevel = i * GIST_STEP; in ThresholdingParam()
168 int dLevels = iMaxLevel - iMinLevel; in ThresholdingParam()
171 iMinLevel = 0; in ThresholdingParam()
176 iMinLevel = iMaxLevel - iNumLayers; in ThresholdingParam()
177 if (iMinLevel < 0) in ThresholdingParam()
179 iMinLevel = 0; in ThresholdingParam()
[all …]
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()
277 int iMinLevelPrev = iMinLevel; in FindContours()
278 int iMaxLevelPrev = iMinLevel; in FindContours()
284 if (iMinLevelPrev < iMinLevel) in FindContours()
286 iMaxLevelPrev += iMinLevel - iMinLevelPrev; in FindContours()
287 iMinLevelPrev = iMinLevel; in FindContours()
292 if (iMinLevelPrev < iMinLevel) in FindContours()
293 iMinLevelPrev = iMinLevel; in FindContours()
[all …]
D_cvfacedetection.h350 …void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iSt…