| Cv2MinAreaRect Method (IEnumerablePoint2f) |
Finds the minimum area rotated rectangle enclosing a 2D point set.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static RotatedRect MinAreaRect(
IEnumerable<Point2f> points
)
Public Shared Function MinAreaRect (
points As IEnumerable(Of Point2f)
) As RotatedRect
public:
static RotatedRect MinAreaRect(
IEnumerable<Point2f>^ points
)
static member MinAreaRect :
points : IEnumerable<Point2f> -> RotatedRect
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint2f
The input 2D point set, represented by CV_32SC2 or CV_32FC2 matrix.
Return Value
Type:
RotatedRect[Missing <returns> documentation for "M:OpenCvSharp.Cv2.MinAreaRect(System.Collections.Generic.IEnumerable{OpenCvSharp.Point2f})"]
See Also