HomeSort by relevance Sort by last modified time
    Searched refs:CvRect (Results 1 - 25 of 44) sorted by null

1 2

  /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 )
camshift.cpp 204 CvRect rect;
cvsegment.cpp 209 CvRect rect )
335 icvGetComponent( uchar* img, int step, CvRect rect,
  /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...]
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...]
  /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/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...]
cvsamplers.cpp 90 CvPoint ip, CvRect* pRect )
92 CvRect rect;
217 CvRect r; \
319 CvRect r; \
449 CvRect r;
    [all...]
  /external/opencv/cxcore/include/
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...]
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); }

Completed in 1197 milliseconds

1 2