Home | History | Annotate | Download | only in include

Lines Matching defs:CvRect

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 );
1343 CvRect rect; \