Searched refs:smallImg (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/samples/cpp/ |
D | smiledetect.cpp | 171 Mat gray, smallImg( cvRound (img.rows/scale), cvRound(img.cols/scale), CV_8UC1 ); in detectAndDraw() local 174 resize( gray, smallImg, smallImg.size(), 0, 0, INTER_LINEAR ); in detectAndDraw() 175 equalizeHist( smallImg, smallImg ); in detectAndDraw() 177 cascade.detectMultiScale( smallImg, faces, in detectAndDraw() 186 flip(smallImg, smallImg, 1); in detectAndDraw() 187 cascade.detectMultiScale( smallImg, faces2, in detectAndDraw() 196 faces.push_back(Rect(smallImg.cols - r->x - r->width, r->y, r->width, r->height)); in detectAndDraw() 224 smallImgROI = smallImg(*r); in detectAndDraw()
|
D | facedetect.cpp | 213 Mat gray, smallImg( cvRound (img.rows/scale), cvRound(img.cols/scale), CV_8UC1 ); in detectAndDraw() local 216 resize( gray, smallImg, smallImg.size(), 0, 0, INTER_LINEAR ); in detectAndDraw() 217 equalizeHist( smallImg, smallImg ); in detectAndDraw() 220 cascade.detectMultiScale( smallImg, faces, in detectAndDraw() 229 flip(smallImg, smallImg, 1); in detectAndDraw() 230 cascade.detectMultiScale( smallImg, faces2, in detectAndDraw() 239 faces.push_back(Rect(smallImg.cols - r->x - r->width, r->y, r->width, r->height)); in detectAndDraw() 266 smallImgROI = smallImg(*r); in detectAndDraw()
|
D | ufacedetect.cpp | 202 static UMat gray, smallImg; in detectAndDraw() local 206 resize( img, smallImg, Size(), scale0, scale0, INTER_LINEAR ); in detectAndDraw() 207 cvtColor( smallImg, gray, COLOR_BGR2GRAY ); in detectAndDraw() 229 faces.push_back(Rect(smallImg.cols - r->x - r->width, r->y, r->width, r->height)); in detectAndDraw() 233 smallImg.copyTo(canvas); in detectAndDraw()
|
/external/opencv3/doc/tutorials/core/ |
D | mat_operations.markdown | 123 Mat smallImg = img(r);
|