Searched refs:m_seqRects (Results 1 – 3 of 3) sorted by relevance
/external/opencv/cvaux/src/ |
D | cvvecfacetracking.cpp | 193 CvSeq* m_seqRects; member in CvFaceElement 199 m_seqRects = NULL; in CvFaceElement() 214 if (NULL == m_seqRects) in Init() 215 m_seqRects = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvTrackingRect), m_mstgRects); in Init() 217 cvClearSeq(m_seqRects); in Init() 218 if (NULL == m_seqRects) in Init() 237 if (0 == m_seqRects->total) in FindRects() 240 cvSeqSort(m_seqRects, CompareEnergy, NULL); in FindRects() 241 CvTrackingRect* pR = (CvTrackingRect*)cvGetSeqElem(m_seqRects, 0); in FindRects() 242 if (m_seqRects->total < 32) in FindRects() [all …]
|
D | cvfacedetection.cpp | 66 m_seqRects = NULL; in FaceDetection() 114 m_seqRects = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvContourRect), m_mstgRects); in FindContours() 115 if (NULL == m_seqRects) in FindContours() 125 cvSeqSort(m_seqRects, CompareContourRect, NULL); in FindContours() 251 assert(m_seqRects != NULL); in AddContours2Rect() 265 cvSeqPush(m_seqRects, &cr); in AddContours2Rect() 277 cvSeqPush(m_seqRects, &cr); in AddContours2Rect() 310 for (int i = 0; i < m_seqRects->total; i++) in FindCandidats() 312 CvContourRect* pRect = (CvContourRect*)cvGetSeqElem(m_seqRects, i); in FindCandidats() 325 for (int j = 0; j < m_seqRects->total; j++) in FindCandidats() [all …]
|
D | _cvfacedetection.h | 341 CvSeq* m_seqRects; variable
|