Searched defs:Rect_ (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dtypes.hpp173 bool inside(const Rect_<_Tp>& r) const;
329 //////////////////////////////// Rect_ ////////////////////////////////
334 - Coordinates of the top-left corner. This is a default interpretation of Rect_::x and Rect_::y
339 right and bottom boundaries are not. For example, the method Rect_::contains returns true if
344 Virtually every loop over an image ROI in OpenCV (where ROI is specified by Rect_\<int\> ) is
367 operator <= (const Rect_<_Tp>& r1, const Rect_<_Tp>& r2)
372 For your convenience, the Rect_\<\> alias is available: cv::Rect
374 template<typename _Tp> class Rect_ class in namespace:cv
1662 Rect_<_Tp>::Rect_() function in class:cv::Rect_
1666 Rect_<_Tp>::Rect_(_Tp _x, _Tp _y, _Tp _width, _Tp _height) function in class:cv::Rect_
1670 Rect_<_Tp>::Rect_(const Rect_<_Tp>& r) function in class:cv::Rect_
1674 Rect_<_Tp>::Rect_(const Point_<_Tp>& org, const Size_<_Tp>& sz) function in class:cv::Rect_
1678 Rect_<_Tp>::Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2) function in class:cv::Rect_
[all...]
H A Dtypes_c.h777 /** @sa Rect_ */
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)) {}
790 operator cv::Rect_<_Tp>() const { return cv::Rect_<_Tp>((_Tp)x, (_Tp)y, (_Tp)width, (_Tp)height); }

Completed in 280 milliseconds