HomeSort by relevance Sort by last modified time
    Searched refs:CvRect (Results 26 - 50 of 68) sorted by null

12 3

  /external/opencv3/modules/video/src/
compat_video.cpp 50 cvMeanShift( const void* imgProb, CvRect windowIn,
68 cvCamShift( const void* imgProb, CvRect windowIn,
  /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); }
cxcore.h 124 CVAPI(void) cvSetImageROI( IplImage* image, CvRect rect );
130 CVAPI(CvRect) cvGetImageROI( const IplImage* image );
197 CVAPI(CvMat*) cvGetSubRect( const CvArr* arr, CvMat* submat, CvRect rect );
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 540 CVAPI(CvRect) cvBoundingRect( CvArr* points, int update CV_DEFAULT(0) );
593 CVAPI(CvRect) cvMaxRect( const CvRect* rect1, const CvRect* rect2 );
    [all...]
types_c.h 61 CvRect rect; /**<ROI of the component */
  /external/opencv/cvaux/include/
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/cvaux/src/
camshift.cpp 204 CvRect rect;
cvsegment.cpp 209 CvRect rect )
335 icvGetComponent( uchar* img, int step, CvRect rect,
  /external/opencv/cv/src/
cvsamplers.cpp 90 CvPoint ip, CvRect* pRect )
92 CvRect rect;
217 CvRect r; \
319 CvRect r; \
449 CvRect r;
    [all...]
cvimgwarp.cpp     [all...]
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...]
cvsnakes.cpp 303 CvRect g_roi = { x*WTILE_SIZE - leftshift, y*WTILE_SIZE - upshift,
cvcalibinit.cpp     [all...]
cvshapedescr.cpp 1127 CV_IMPL CvRect
1131 CvRect rect = { 0, 0, 0, 0 };
    [all...]
  /external/opencv3/modules/video/test/
test_camshift.cpp 214 CvRect init_rect;
381 CvRect init_rect;
  /external/opencv/cv/include/
cv.hpp 106 CvRect _src_roi=cvRect(0,0,-1,-1),
cvcompat.h 331 CV_INLINE CvRect cvContourBoundingRect( void* point_set, int update CV_DEFAULT(0))
383 CvRect* CV_UNREFERENCED(bound_rect),
    [all...]
  /external/opencv/
cvjni.h 56 CvRect m_faceCropArea;
  /external/opencv3/modules/ts/src/
ts_arrtest.cpp 162 CvRect roi;
  /external/opencv3/modules/imgproc/src/
contours.cpp 120 CvRect rect; /* bounding rectangle */
230 scanner->frame_info.rect = cvRect( 0, 0, size.width, size.height );
675 CvRect* _rect )
680 CvRect rect;
860 CvRect* _rect )
865 CvRect rect;
    [all...]
  /external/opencv3/modules/objdetect/src/
haar.cpp 181 CvRect* ipp_features = 0;
240 CvRect r = classifier->haar_feature[l].rect[k].r;
352 ipp_features = (CvRect*)cvAlloc( max_count*3*sizeof(ipp_features[0]) );
436 CvRect equRect;
522 CvRect r[3];
566 CvRect tr;
    [all...]
  /external/opencv3/modules/highgui/src/
window_w32.cpp 305 icvLoadWindowPos( const char* name, CvRect& rect )
345 icvSaveWindowPos( const char* name, CvRect rect )
449 CvRect position;
467 CvRect RectCV = cvRect(rect.left, rect.top,rect.right - rect.left, rect.bottom - rect.top);
719 CvRect rect;
916 icvSaveWindowPos( window->name, cvRect(wrect.left, wrect.top,
    [all...]
  /external/opencv3/modules/imgproc/test/
test_floodfill.cpp 247 CvRect r = cvRect( 0, 0, -1, -1 );

Completed in 765 milliseconds

12 3