Searched refs:iNumLayers (Results 1 – 3 of 3) sorted by relevance
/external/opencv/cvaux/src/ |
D | cvfacedetection.cpp | 100 int iNumLayers = m_iNumLayers; in FindContours() local 101 int iMinLevel = 0, iMaxLevel = 255, iStep = 255 / iNumLayers; in FindContours() 102 ThresholdingParam(imgGray, iNumLayers, iMinLevel, iMaxLevel, iStep); in FindContours() 132 void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxL… in ThresholdingParam() argument 174 else if (dLevels <= iNumLayers) in ThresholdingParam() 176 iMinLevel = iMaxLevel - iNumLayers; in ThresholdingParam() 180 iMaxLevel = iNumLayers; in ThresholdingParam() 183 iStep = (iMaxLevel - iMinLevel) / iNumLayers; in ThresholdingParam()
|
D | _cvfacedetection.h | 350 …void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iSt…
|
D | cvvecfacetracking.cpp | 67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &st… 613 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &st… in ThresholdingParam() argument 656 step = float(iMaxLevel - iMinLevel) / float(iNumLayers); in ThresholdingParam()
|