HomeSort by relevance Sort by last modified time
    Searched defs:CvRect (Results 1 - 2 of 2) sorted by null

  /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...]
  /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...]

Completed in 71 milliseconds