/external/opencv/cvaux/src/ |
_cvfacedetection.h | 136 inline MouthFaceTemplate(long lNumber,CvRect rect,double dEyeWidth,double dEyeHeight,double dDistanceBetweenEye,double dDistanceEyeAboveMouth); 141 inline MouthFaceTemplate::MouthFaceTemplate(long lNumber,CvRect rect,double dEyeWidth,double dEyeHeight, 145 CvRect MouthRect = rect; 148 CvRect LeftEyeRect = cvRect(cvRound(rect.x - (dEyeWidth + dDistanceBetweenEye/(double)2 - (double)rect.width/(double)2)), 153 CvRect RightEyeRect = cvRect(cvRound(rect.x + (double)rect.width/(double)2 + dDistanceBetweenEye/(double)2), 158 // CvRect NoseRect = cvRect(cvRound(rect.x + (double)rect.width/(double)4), 163 CvRect CheenRect = cvRect(rect.x,rect.y + 3*rect.height/2,rect.width,rect.height) [all...] |
cvfacedetection.cpp | 308 CvRect * lpRect1 = NULL; 313 CvRect rect = pRect->r; 332 lpRect1 = new CvRect(); 337 lpRect1 = new CvRect(); 378 CvRect * lpRect1 = NULL; 381 lpFaceTemplate1 = new BoostingFaceTemplate(3,cvRect(0,0,FaceImage->width,FaceImage->height)); 383 lpFaceTemplate1 = new BoostingFaceTemplate(3,cvRect(FaceImage->roi->xOffset,FaceImage->roi->yOffset, 395 lpRect1 = new CvRect(); 400 lpRect1 = new CvRect();
|
cvlevmarprojbandle.cpp | 958 cvGetSubRect(points4D,&point4D,cvRect(currPoint,0,1,4)); [all...] |
cvtrifocal.cpp | 255 cvGetSubRect(points[i],&tmpPoints,cvRect(2,0,4,2)); 329 cvGetSubRect(&resFundReduceCoef, &fundCoefs, cvRect(0,currSol,5,1)); 376 cvGetSubRect(projMatrs[currCamera],&tmpSubRes,cvRect(0,currSol*3,4,3)); 395 cvGetSubRect(points4D,tmpSubRes,cvRect(0,currSol*4,6,4)); 936 cvGetSubArr(&tmpProjMatr[0],&proj6[0],cvRect(0,currProj*3,4,3)); 937 cvGetSubArr(&tmpProjMatr[1],&proj6[1],cvRect(0,currProj*3,4,3)); 938 cvGetSubArr(&tmpProjMatr[2],&proj6[2],cvRect(0,currProj*3,4,3)); [all...] |
cvcorrimages.cpp | 685 // subdiv = cvCreateSubdivDelaunay2D( cvRect( 0, 0, size.width, size.height ), storage ); 686 subdiv = cvCreateSubdivDelaunay2D( cvRect( cvRound(minX)-5, cvRound(minY)-5, cvRound(maxX-minX)+10, cvRound(maxY-minY)+10 ), storage ); [all...] |
/external/opencv/cv/src/ |
cvtemplmatch.cpp | 163 dst = cvGetSubRect( dft_templ, &dstub, cvRect(0,yofs,templ->cols,templ->rows)); 179 cvGetSubRect( dft_templ, dst, cvRect(templ->cols, yofs, 183 cvGetSubRect( dft_templ, dst, cvRect(0,yofs,dftsize.width,dftsize.height) ); 221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) ); 223 cvRect(0,0,isz.width,isz.height) ); 228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 )); 248 cvGetSubRect( _dft_img, dst, cvRect(isz.width, 0, 255 cvRect(0,(templ_cn>1?yofs:0),dftsize.width,dftsize.height) ); 260 src = cvGetSubRect( _dft_img, &sstub, cvRect(0,0,csz.width,csz.height) ); 261 dst = cvGetSubRect( corr, &dstub, cvRect(x,y,csz.width,csz.height) ) [all...] |
cvcorner.cpp | 324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage ); 325 stripe_size.height = dy_filter.process( src, Dy, cvRect(0,y,-1,delta), 390 cvRect(0,0,-1,stripe_size.height),cvPoint(0,0),stage+CV_ISOLATED_ROI); 625 CvRect roi = cvRect(0,y,size.width,delta);
|
cvcalibration.cpp | [all...] |
cvfundam.cpp | [all...] |
cvgeometry.cpp | 44 CV_IMPL CvRect 45 cvMaxRect( const CvRect* rect1, const CvRect* rect2 ) 49 CvRect max_rect; 82 return cvRect(0,0,0,0); 190 CvRect r = ((CvContour*)contour)->rect;
|
mycvHaarDetectObjects.cpp | 121 const CvRect* r1 = (const CvRect*)_r1; 122 const CvRect* r2 = (const CvRect*)_r2; 157 CvRect* ipp_features = 0; 220 CvRect r = classifier->haar_feature[l].rect[k].r; 336 CV_CALL( ipp_features = (CvRect*)cvAlloc( max_count*3*sizeof(ipp_features[0]) )); 643 CvRect equ_rect; 734 CvRect r[3]; 785 CvRect tr [all...] |
cvsurf.cpp | 424 CvRect patch_rect0 = { INT_MAX, INT_MAX, INT_MIN, INT_MIN }, patch_rect, sr_patch_rect; 453 sr_patch_rect = cvRect(0,0, RS_PATCH_SZ, RS_PATCH_SZ);
|
cvcontours.cpp | 134 CvRect rect; /* bounding rectangle */ 249 scanner->frame_info.rect = cvRect( 0, 0, size.width, size.height ); 707 CvRect* _rect ) 712 CvRect rect; [all...] |
cvhaar.cpp | 175 CvRect* ipp_features = 0; 238 CvRect r = classifier->haar_feature[l].rect[k].r; 354 CV_CALL( ipp_features = (CvRect*)cvAlloc( max_count*3*sizeof(ipp_features[0]) )); 444 CvRect equ_rect; 535 CvRect r[3]; 584 CvRect tr; 840 const CvRect* r1 = (const CvRect*)_r1; 841 const CvRect* r2 = (const CvRect*)_r2 [all...] |
cvimgwarp.cpp | [all...] |
/external/opencv/otherlibs/highgui/ |
highgui.h | 290 CV_INLINE CvRect RectToCvRect( RECT sr ); 291 CV_INLINE CvRect RectToCvRect( RECT sr ) 294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top ); 297 CV_INLINE RECT CvRectToRect( CvRect sr ); 298 CV_INLINE RECT CvRectToRect( CvRect sr ) 349 int desired_color, CvRect r ); 356 cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top ));
|
/external/opencv/cxcore/include/ |
cxcore.hpp | 140 CvRect roi() const 142 return !image ? cvRect(0,0,0,0) : 143 !image->roi ? cvRect(0,0,image->width,image->height) : 144 cvRect(image->roi->xOffset,image->roi->yOffset, 150 void set_roi(CvRect roi) { cvSetImageROI(image,roi); }
|
cxtypes.h | 837 /*************************************** CvRect *****************************************/ 839 typedef struct CvRect 846 CvRect; 848 CV_INLINE CvRect cvRect( int x, int y, int width, int height ) 850 CvRect r; 861 CV_INLINE IplROI cvRectToROI( CvRect rect, int coi ) 874 CV_INLINE CvRect cvROIToRect( IplROI roi ) 876 return cvRect( roi.xOffset, roi.yOffset, roi.width, roi.height ); [all...] |
/external/opencv/ |
cvjni.cpp | 388 CvRect tPrev = cvRect(m_faceCropArea.x * scale, m_faceCropArea.y * scale,
433 CvRect *rect = (CvRect*)cvGetSeqElem(rects, i);
504 void storePreviousFace(CvRect* face) {
519 m_faceCropArea = cvRect(startX, startY,
529 jobject rectToAndroidRect(JNIEnv* env, CvRect *rect) {
593 CvRect *face = (CvRect*)cvGetSeqElem(m_facesFound, 0);
613 void highlightFace(IplImage *sourceImage, CvRect *face, double scale = 1.0) { [all...] |
/external/opencv/cv/include/ |
cv.hpp | 106 CvRect _src_roi=cvRect(0,0,-1,-1),
|
/external/opencv/cvaux/include/ |
cvaux.h | 233 IplImage *img_mask, CvRect *roi); [all...] |
cvvidsurv.hpp | 449 #define CV_BLOB_RECT(pB) cvRect(cvRound(((CvBlob*)(pB))->x-CV_BLOB_RX(pB)),cvRound(((CvBlob*)(pB))->y-CV_BLOB_RY(pB)),cvRound(CV_BLOB_WX(pB)),cvRound(CV_BLOB_WY(pB))) 692 CV_INLINE CvRect cvRectIntersection( const CvRect r1, const CvRect r2 ) 694 CvRect r = cvRect( MAX(r1.x, r2.x), MAX(r1.y, r2.y), 0, 0 ); [all...] |
cvmat.hpp | 384 explicit CvMAT( const CvMat& mat, CvRect rect ); /* submatrix */ 534 CvMAT rect( CvRect rect ) const; 639 CvMAT rect( CvRect rect ) const; [all...] |
/external/opencv/ml/src/ |
mlcnn.cpp | [all...] |
/external/opencv/cxcore/src/ |
cxarray.cpp | [all...] |