Searched defs:RotatedRect (Results 1 - 5 of 5) sorted by relevance

/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+RotatedRect.java4 public class RotatedRect { class
10 public RotatedRect() { method in class:RotatedRect
16 public RotatedRect(Point c, Size s, double a) { method in class:RotatedRect
22 public RotatedRect(double[] vals) { method in class:RotatedRect
79 public RotatedRect clone() {
80 return new RotatedRect(center, size, angle);
104 if (!(obj instanceof RotatedRect)) return false;
105 RotatedRect it = (RotatedRect) obj;
/external/opencv3/modules/core/include/opencv2/core/
H A Dbase.hpp599 class CV_EXPORTS RotatedRect; member in namespace:cv
H A Dtypes.hpp430 ///////////////////////////// RotatedRect /////////////////////////////
437 The sample below demonstrates how to use RotatedRect:
440 RotatedRect rRect = RotatedRect(Point2f(100,100), Size2f(100,50), 30);
457 class CV_EXPORTS RotatedRect class in namespace:cv
461 RotatedRect();
468 RotatedRect(const Point2f& center, const Size2f& size, float angle);
470 Any 3 end points of the RotatedRect. They must be given in order (either clockwise or
473 RotatedRect(const Point2f& point1, const Point2f& point2, const Point2f& point3);
487 template<> class DataType< RotatedRect >
1840 RotatedRect::RotatedRect() function in class:cv::RotatedRect
1844 RotatedRect::RotatedRect(const Point2f& _center, const Size2f& _size, float _angle) function in class:cv::RotatedRect
[all...]
H A Dtypes_c.h1059 /** @sa RotatedRect
1070 CvBox2D(const cv::RotatedRect& rr) : center(rr.center), size(rr.size), angle(rr.angle) {}
1071 operator cv::RotatedRect() const { return cv::RotatedRect(center, size, angle); }
/external/opencv3/modules/core/src/
H A Dmatrix.cpp5341 ////////////////////// RotatedRect //////////////////////
5343 RotatedRect::RotatedRect(const Point2f& _point1, const Point2f& _point2, const Point2f& _point3) function in class:cv::cv::RotatedRect
5367 void RotatedRect::points(Point2f pt[]) const
5383 Rect RotatedRect::boundingRect() const

Completed in 164 milliseconds