Ellipse Constructor (PointF, SizeF, Single) |
http://www.emgu.com
Create an ellipse with specific parameters
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Ellipse(
PointF center,
SizeF size,
float angle
)
Public Sub New (
center As PointF,
size As SizeF,
angle As Single
)
public:
Ellipse(
PointF center,
SizeF size,
float angle
)
new :
center : PointF *
size : SizeF *
angle : float32 -> Ellipse
Parameters
- center
- Type: System.DrawingPointF
The center of the ellipse - size
- Type: System.DrawingSizeF
The width and height of the ellipse - angle
- Type: SystemSingle
The rotation angle in radian for the ellipse
See Also