| MatEllipse Method (RotatedRect, Scalar, Int32, LineTypes) |
Draws simple or thick elliptic arc or fills ellipse sector
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void Ellipse(
RotatedRect box,
Scalar color,
int thickness = 1,
LineTypes lineType = LineTypes.Link8
)
Public Sub Ellipse (
box As RotatedRect,
color As Scalar,
Optional thickness As Integer = 1,
Optional lineType As LineTypes = LineTypes.Link8
)
public:
void Ellipse(
RotatedRect box,
Scalar color,
int thickness = 1,
LineTypes lineType = LineTypes::Link8
)
member Ellipse :
box : RotatedRect *
color : Scalar *
?thickness : int *
?lineType : LineTypes
(* Defaults:
let _thickness = defaultArg thickness 1
let _lineType = defaultArg lineType LineTypes.Link8
*)
-> unit
Parameters
- box
- Type: OpenCvSharpRotatedRect
The enclosing box of the ellipse drawn - color
- Type: OpenCvSharpScalar
Ellipse color. - thickness (Optional)
- Type: SystemInt32
Thickness of the ellipse boundary. [By default this is 1] - lineType (Optional)
- Type: OpenCvSharpLineTypes
Type of the ellipse boundary. [By default this is LineType.Link8]
See Also