Searched refs:imgGray (Results 1 – 4 of 4) sorted by relevance
/external/opencv/cvaux/src/ |
D | cvfacedetection.cpp | 94 void FaceDetection::FindContours(IplImage* imgGray) in FindContours() argument 96 ReallocImage(&m_imgThresh, cvGetSize(imgGray), 1); in FindContours() 102 ThresholdingParam(imgGray, iNumLayers, iMinLevel, iMaxLevel, iStep); in FindContours() 120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY); in FindContours() 132 void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxL… in ThresholdingParam() argument 134 assert(imgGray != NULL); in ThresholdingParam() 135 assert(imgGray->nChannels == 1); in ThresholdingParam() 138 uchar* buffImg = (uchar*)imgGray->imageData; in ThresholdingParam() 141 for (j = 0; j < imgGray->height; j ++) in ThresholdingParam() 143 for (i = 0; i < imgGray->width; i ++) in ThresholdingParam() [all …]
|
D | cvvecfacetracking.cpp | 67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &st… 118 IplImage* imgGray; member 129 imgGray = NULL; in CvFaceTracker() 134 if (NULL != imgGray) in ~CvFaceTracker() 135 delete imgGray; in ~CvFaceTracker() 141 int Init(CvRect* pRects, IplImage* imgGray) in Init() 150 imgGray = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1); in Init() 151 imgThresh = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1); in Init() 153 if ((NULL == imgGray) || in Init() 162 ReallocImage(&imgGray, sz, 1); in InitNextImage() [all …]
|
D | _cvfacedetection.h | 348 void FindContours(IplImage* imgGray); 350 …void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iSt…
|
/external/opencv/cvaux/include/ |
D | cvaux.h | 829 CVAPI(CvFaceTracker*) cvInitFaceTracker(CvFaceTracker* pFaceTracking, const IplImage* imgGray, 831 CVAPI(int) cvTrackFace( CvFaceTracker* pFaceTracker, IplImage* imgGray,
|