/external/opencv3/modules/core/misc/java/test/ |
RotatedRectTest.java | 5 import org.opencv.core.RotatedRect; 30 RotatedRect rr = new RotatedRect(center, size, angle); 43 RotatedRect rrect = new RotatedRect(center, size, angle); 44 RotatedRect clone = rrect.clone(); 57 RotatedRect rrect1 = new RotatedRect(center, size, angle); 58 RotatedRect rrect2 = new RotatedRect(center2, size2, angle2) [all...] |
/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/test/ |
test_rotatedrect.cpp | 57 RotatedRect rec; 86 rec = RotatedRect(a, b, c); 102 ts->printf( cvtest::TS::LOG, "RotatedRect end points don't match those supplied in constructor");
|
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/ |
generalContours_demo2.cpp | 64 vector<RotatedRect> minRect( contours.size() ); 65 vector<RotatedRect> minEllipse( contours.size() );
|
/external/opencv3/samples/cpp/ |
fitellipse.cpp | 80 RotatedRect box = fitEllipse(pointsf);
|
minarea.cpp | 43 RotatedRect box = minAreaRect(Mat(points));
|
camshiftdemo.cpp | 157 RotatedRect trackBox = CamShift(backproj, trackWindow,
|
/external/opencv3/modules/imgproc/test/ |
test_intersection.cpp | 102 RotatedRect rect1, rect2; 128 RotatedRect rect1, rect2; 176 RotatedRect rect1, rect2; 224 RotatedRect rect1, rect2; 273 RotatedRect rect1, rect2; 326 RotatedRect rect1, rect2; 375 RotatedRect rect1, rect2; 424 RotatedRect rect1, rect2; 456 RotatedRect rect1, rect2;
|
test_lsd.cpp | 90 RotatedRect rRect = RotatedRect(center, rect_size, angle); 148 TEST_F(Imgproc_LSD_ADV, rotatedRect) 201 TEST_F(Imgproc_LSD_STD, rotatedRect) 254 TEST_F(Imgproc_LSD_NONE, rotatedRect)
|
/external/opencv3/modules/imgproc/src/ |
rotcalipers.cpp | 343 cv::RotatedRect cv::minAreaRect( InputArray _points ) 347 RotatedRect box; 397 cv::RotatedRect rr = cv::minAreaRect(points); 401 void cv::boxPoints(cv::RotatedRect box, OutputArray _pts)
|
intersection.cpp | 50 int rotatedRectangleIntersection( const RotatedRect& rect1, const RotatedRect& rect2, OutputArray intersectingRegion )
|
geometry.cpp | 91 cv::RotatedRect(box).points((cv::Point2f*)pt);
|
shapedescr.cpp | 369 cv::RotatedRect cv::fitEllipse( InputArray _points ) 376 RotatedRect box;
|
/external/opencv3/modules/java/src/ |
video+Video.java | 14 import org.opencv.core.RotatedRect; 37 // C++: RotatedRect CamShift(Mat probImage, Rect& window, TermCriteria criteria) 41 public static RotatedRect CamShift(Mat probImage, Rect window, TermCriteria criteria) 44 RotatedRect retVal = new RotatedRect(CamShift_0(probImage.nativeObj, window.x, window.y, window.width, window.height, window_out, criteria.type, criteria.maxCount, criteria.epsilon)); 252 // C++: RotatedRect CamShift(Mat probImage, Rect& window, TermCriteria criteria)
|
imgproc+Imgproc.java | 18 import org.opencv.core.RotatedRect; [all...] |
/external/opencv3/modules/video/src/ |
camshift.cpp | 108 cv::RotatedRect cv::CamShift( InputArray _probImage, Rect& window, 147 return RotatedRect(); 199 RotatedRect box;
|
compat_video.cpp | 75 cv::RotatedRect rr = cv::CamShift(img, window, criteria);
|
/external/opencv3/modules/video/include/opencv2/video/ |
tracking.hpp | 71 orientation. The next position of the search window can be obtained with RotatedRect::boundingRect() 79 CV_EXPORTS_W RotatedRect CamShift( InputArray probImage, CV_IN_OUT Rect& window,
|
/external/opencv3/samples/gpu/ |
generalized_hough.cpp | 166 RotatedRect rect;
|
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | [all...] |
/external/opencv3/samples/tapi/ |
camshift.cpp | 164 cv::RotatedRect trackBox = cv::CamShift(backproj, trackWindow,
|
/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...] |
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...] |
base.hpp | 599 class CV_EXPORTS RotatedRect;
|
/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | 17 import org.opencv.core.RotatedRect; 796 RotatedRect rrect = new RotatedRect(); [all...] |