Home
last modified time | relevance | path

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

/external/opencv/cvaux/src/
Dcvfacedetection.cpp100 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.h350 …void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iSt…
Dcvvecfacetracking.cpp67 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()