Create an ellipse with specific parameters

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Ellipse(
	PointF center,
	SizeF size,
	float angle
)
Visual Basic (Declaration)
Public Sub New ( _
	center As PointF, _
	size As SizeF, _
	angle As Single _
)
Visual C++
public:
Ellipse(
	PointF center, 
	SizeF size, 
	float angle
)

Parameters

center
Type: System.Drawing..::.PointF
The center of the ellipse
size
Type: System.Drawing..::.SizeF
The width and height of the ellipse
angle
Type: System..::.Single
The rotation angle in radian for the ellipse

See Also