Home
last modified time | relevance | path

Searched defs:CvRect (Results 1 – 1 of 1) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Dtypes_c.h847 typedef struct CvRect struct
855 CvRect() __attribute__(( warning("Non-initialized variable") )) {}; in CvRect() argument
856 template<typename _Tp> CvRect(const std::initializer_list<_Tp> list) in CvRect() function
866 CvRect(int _x = 0, int _y = 0, int w = 0, int h = 0): x(_x), y(_y), width(w), height(h) {} in x() argument
868CvRect(const cv::Rect_<_Tp>& r): x(cv::saturate_cast<int>(r.x)), y(cv::saturate_cast<int>(r.y)), w… in CvRect() function
875 CvRect; typedef