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

  /external/opencv3/modules/core/misc/java/src/java/
core+RotatedRect.java 4 public class RotatedRect {
10 public RotatedRect() {
16 public RotatedRect(Point c, Size s, double a) {
22 public RotatedRect(double[] vals) {
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/
types.hpp 430 ///////////////////////////// RotatedRect /////////////////////////////
437 The sample below demonstrates how to use RotatedRect:
440 RotatedRect rRect = RotatedRect(Point2f(100,100), Size2f(100,50), 30);
453 ![image](pics/rotatedrect.png)
457 class CV_EXPORTS RotatedRect
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)
    [all...]
base.hpp 599 class CV_EXPORTS RotatedRect;
types_c.h 1059 /** @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); }
    [all...]
  /external/opencv3/modules/core/src/
matrix.cpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 248 milliseconds