/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...] |
cvface.cpp | 102 CvRect * lpTmpRect = NULL; 103 lpTmpRect = new CvRect; 104 *lpTmpRect = *(CvRect*)lpTmp[j].GetContour(); 120 inline bool RFace::isPointInRect(CvPoint p,CvRect rect) 126 }//inline bool RFace::isPointInRect(CvPoint,CvRect rect) 137 CvRect IdealRect = *(CvRect*)lpIdeal; 138 CvRect Rect = *(CvRect*)lpCandidat; 149 // CvRect UpRect [all...] |
_cvvectrack.h | 62 inline int operator == (const CvRect& r1, const CvRect& r2) 68 inline int operator != (const CvRect& r1, const CvRect& r2) 81 int PointInRect(const CvPoint& p, const CvRect& r) 88 int RectInRect(const CvRect& r1, const CvRect& r2) 96 CvRect Increase(const CvRect& r, int decr) 98 CvRect rect [all...] |
cvcreatehandmask.cpp | 54 CvSize size, CvRect * roi ) 116 cvCreateHandMask( CvSeq * numbers, IplImage * img_mask, CvRect * roi )
|
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();
|
cvvecfacetracking.cpp | 70 inline int GetEnergy(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl); 71 inline int GetEnergy2(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl, int* element); 82 CvRect r; 116 CvRect rTempl[NUM_FACE_ELEMENTS]; 141 int Init(CvRect* pRects, IplImage* imgGray) 195 CvRect m_rROI; 206 inline int Init(const CvRect& roi, const CvTrackingRect& prev, CvMemStorage* mstg = NULL) 268 CvRect roi = m_rROI; 427 cvInitFaceTracker(CvFaceTracker* pFaceTracker, const IplImage* imgGray, CvRect* pRects, int nRects) 448 }//CvFaceTracker* InitFaceTracker(IplImage* imgGray, CvRect* pRects, int nRects [all...] |
cvbgfg_codebook.cpp | 87 CvRect roi, const CvArr* _mask ) 227 CvArr* _fgmask, CvRect roi ) 295 CvRect roi, const CvArr* _mask )
|
/external/opencv3/modules/calib3d/src/ |
compat_stereo.cpp | 62 state->roi1 = state->roi2 = cvRect(0,0,0,0); 111 CvRect cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity, 114 return (CvRect)cv::getValidDisparityROI( roi1, roi2, minDisparity,
|
/external/opencv/cvaux/include/ |
cvaux.hpp | 67 CvRect get_window() const // bounding rectangle for the object 84 bool set_window( CvRect window)
|
cvaux.h | 233 IplImage *img_mask, CvRect *roi); [all...] |
/external/opencv3/modules/objdetect/include/opencv2/objdetect/ |
objdetect_c.h | 78 CvRect r; 119 CvRect rect;
|
/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 ));
|
image.cpp | 146 int desired_color, CvRect r ) 214 CvRect roi = cvGetImageROI( m_img ); 215 CvRect dst = RectToCvRect( *pDstRect );
|
/external/opencv/cv/include/ |
cvtypes.h | 72 CvRect rect; /* ROI of the component */ 332 CvRect r; 377 CvRect rect;
|
cv.h | 576 CVAPI(int) cvCamShift( const CvArr* prob_image, CvRect window, 582 CVAPI(int) cvMeanShift( const CvArr* prob_image, CvRect window, 619 CVAPI(void) cvInitSubdivDelaunay2D( CvSubdiv2D* subdiv, CvRect rect ); 629 CV_INLINE CvSubdiv2D* cvCreateSubdivDelaunay2D( CvRect rect, CvMemStorage* storage ) 739 CVAPI(CvRect) cvBoundingRect( CvArr* points, int update CV_DEFAULT(0) ); [all...] |
/external/opencv3/modules/video/include/opencv2/video/ |
tracking_c.h | 148 CVAPI(int) cvCamShift( const CvArr* prob_image, CvRect window, 154 CVAPI(int) cvMeanShift( const CvArr* prob_image, CvRect window,
|
/external/opencv3/modules/calib3d/include/opencv2/calib3d/ |
calib3d_c.h | 135 CvRect* valid_pixel_ROI CV_DEFAULT(0), 302 CvRect* valid_pix_ROI1 CV_DEFAULT(0), 303 CvRect* valid_pix_ROI2 CV_DEFAULT(0)); 343 CvRect roi1, roi2; 366 CVAPI(CvRect) cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity,
|
/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/src/ |
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...] |
_cvipp.h | 201 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 222 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 223 void* dst, int dststep, CvRect dstroi, \ 239 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 240 void* dst, int dststep, CvRect dstroi, \ 257 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 258 void* dst, int dststep, CvRect dstroi, \ 274 ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ [all...] |
cvcamshift.cpp | 50 // windowIn - CvRect of CAMSHIFT Window intial size 61 cvMeanShift( const void* imgProb, CvRect windowIn, 68 CvRect cur_rect = windowIn; 152 // windowIn - CvRect of CAMSHIFT Window intial size 165 cvCamShift( const void* imgProb, CvRect windowIn,
|
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;
|
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...] |
/external/opencv3/modules/core/include/opencv2/core/ |
types_c.h | 776 /*************************************** CvRect *****************************************/ 778 typedef struct CvRect 786 CvRect(int _x = 0, int _y = 0, int w = 0, int h = 0): x(_x), y(_y), width(w), height(h) {} 788 CvRect(const cv::Rect_<_Tp>& r): x(cv::saturate_cast<int>(r.x)), y(cv::saturate_cast<int>(r.y)), width(cv::saturate_cast<int>(r.width)), height(cv::saturate_cast<int>(r.height)) {} 793 CvRect; 795 /** constructs CvRect structure. */ 796 CV_INLINE CvRect cvRect( int x, int y, int width, int height ) 798 CvRect r; 809 CV_INLINE IplROI cvRectToROI( CvRect rect, int coi [all...] |
/external/opencv3/modules/imgproc/src/ |
geometry.cpp | 44 CV_IMPL CvRect 45 cvMaxRect( const CvRect* rect1, const CvRect* rect2 ) 49 CvRect max_rect; 82 return cvRect(0,0,0,0);
|