Searched defs:imgGray (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvfacedetection.cpp94 void FaceDetection::FindContours(IplImage* imgGray) argument
96 ReallocImage(&m_imgThresh, cvGetSize(imgGray), 1);
102 ThresholdingParam(imgGray, iNumLayers, iMinLevel, iMaxLevel, iStep);
120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY);
126 }// void FaceDetection::FindContours(IplImage* imgGray)
132 void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, int &iStep) argument
134 assert(imgGray != NULL);
135 assert(imgGray->nChannels == 1);
138 uchar* buffImg = (uchar*)imgGray->imageData;
141 for (j = 0; j < imgGray
[all...]
H A Dcvvecfacetracking.cpp67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/);
118 IplImage* imgGray; member in struct:CvFaceTracker
129 imgGray = NULL;
134 if (NULL != imgGray)
135 delete imgGray;
141 int Init(CvRect* pRects, IplImage* imgGray) argument
150 imgGray = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1);
151 imgThresh = cvCreateImage(cvSize(imgGray
427 cvInitFaceTracker(CvFaceTracker* pFaceTracker, const IplImage* imgGray, CvRect* pRects, int nRects) argument
461 cvTrackFace(CvFaceTracker* pFaceTracker, IplImage* imgGray, CvRect* pRects, int nRects, CvPoint* ptRotate, double* dbAngleRotate) argument
613 ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin ) argument
[all...]

Completed in 237 milliseconds