Uses of Class
org.opencv.core.RotatedRect
-
Packages that use RotatedRect Package Description org.opencv.core org.opencv.imgproc org.opencv.utils org.opencv.video -
-
Uses of RotatedRect in org.opencv.core
Methods in org.opencv.core that return RotatedRect Modifier and Type Method Description RotatedRect
RotatedRect. clone()
RotatedRect[]
MatOfRotatedRect. toArray()
Methods in org.opencv.core that return types with arguments of type RotatedRect Modifier and Type Method Description List<RotatedRect>
MatOfRotatedRect. toList()
Methods in org.opencv.core with parameters of type RotatedRect Modifier and Type Method Description void
MatOfRotatedRect. fromArray(RotatedRect... a)
Method parameters in org.opencv.core with type arguments of type RotatedRect Modifier and Type Method Description void
MatOfRotatedRect. fromList(List<RotatedRect> lr)
Constructors in org.opencv.core with parameters of type RotatedRect Constructor Description MatOfRotatedRect(RotatedRect... a)
-
Uses of RotatedRect in org.opencv.imgproc
Methods in org.opencv.imgproc that return RotatedRect Modifier and Type Method Description static RotatedRect
Imgproc. fitEllipse(MatOfPoint2f points)
Fits an ellipse around a set of 2D points.static RotatedRect
Imgproc. fitEllipseAMS(Mat points)
Fits an ellipse around a set of 2D points.static RotatedRect
Imgproc. fitEllipseDirect(Mat points)
Fits an ellipse around a set of 2D points.static RotatedRect
Imgproc. minAreaRect(MatOfPoint2f points)
Finds a rotated rectangle of the minimum area enclosing the input 2D point set.Methods in org.opencv.imgproc with parameters of type RotatedRect Modifier and Type Method Description static void
Imgproc. boxPoints(RotatedRect box, Mat points)
Finds the four vertices of a rotated rect.static void
Imgproc. ellipse(Mat img, RotatedRect box, Scalar color)
static void
Imgproc. ellipse(Mat img, RotatedRect box, Scalar color, int thickness)
static void
Imgproc. ellipse(Mat img, RotatedRect box, Scalar color, int thickness, int lineType)
static int
Imgproc. rotatedRectangleIntersection(RotatedRect rect1, RotatedRect rect2, Mat intersectingRegion)
Finds out if there is any intersection between two rotated rectangles. -
Uses of RotatedRect in org.opencv.utils
Method parameters in org.opencv.utils with type arguments of type RotatedRect Modifier and Type Method Description static void
Converters. Mat_to_vector_RotatedRect(Mat m, List<RotatedRect> rs)
static Mat
Converters. vector_RotatedRect_to_Mat(List<RotatedRect> rs)
-
Uses of RotatedRect in org.opencv.video
Methods in org.opencv.video that return RotatedRect Modifier and Type Method Description static RotatedRect
Video. CamShift(Mat probImage, Rect window, TermCriteria criteria)
Finds an object center, size, and orientation.
-