Lines Matching refs:dMinSize
222 void FindRects(IplImage* img, IplImage* thresh, int nLayers, int dMinSize);
224 void FindContours(IplImage* img, IplImage* thresh, int nLayers, int dMinSize);
234 void CvFaceElement::FindRects(IplImage* img, IplImage* thresh, int nLayers, int dMinSize) in FindRects() argument
236 FindContours(img, thresh, nLayers, dMinSize / 4); in FindRects()
244 MergeRects(dMinSize / 8); in FindRects()
251 MergeRects(dMinSize / 4); in FindRects()
258 MergeRects(dMinSize / 2); in FindRects()
265 void CvFaceElement::FindContours(IplImage* img, IplImage* thresh, int nLayers, int dMinSize) in FindContours() argument
318 if (RectInRect(cr.r, m_rROI) && cr.r.width > dMinSize && cr.r.height > dMinSize) in FindContours()
328 … if (RectInRect(cr.r, m_rROI) && cr.r.width > dMinSize && cr.r.height > dMinSize) in FindContours()
478 int dMinSize = d; in cvTrackFace() local
513 big_face[elem].FindRects(pFaceTracker->imgGray, pFaceTracker->imgThresh, 32, dMinSize); in cvTrackFace()