OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:imgGray
(Results
1 - 4
of
4
) sorted by null
/external/opencv/cvaux/src/
cvfacedetection.cpp
94
void FaceDetection::FindContours(IplImage*
imgGray
)
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)
134
assert(
imgGray
!= NULL);
135
assert(
imgGray
->nChannels == 1);
138
uchar* buffImg = (uchar*)
imgGray
->imageData;
141
for (j = 0; j <
imgGray
->height; j ++
[
all
...]
cvvecfacetracking.cpp
67
void ThresholdingParam(IplImage *
imgGray
, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/);
118
IplImage*
imgGray
;
129
imgGray
= NULL;
134
if (NULL !=
imgGray
)
135
delete
imgGray
;
141
int Init(CvRect* pRects, IplImage*
imgGray
)
150
imgGray
= cvCreateImage(cvSize(
imgGray
->width,
imgGray
->height), 8, 1);
151
imgThresh = cvCreateImage(cvSize(
imgGray
->width, imgGray->height), 8, 1)
[
all
...]
_cvfacedetection.h
348
void FindContours(IplImage*
imgGray
);
350
void ThresholdingParam(IplImage*
imgGray
, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iStep);
/external/opencv/cvaux/include/
cvaux.h
[
all
...]
Completed in 580 milliseconds