Create an ellipse with specific parameters

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public 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
)

Parameters

center
PointF
The center of the ellipse
size
SizeF
The width and height of the ellipse
angle
Single
The rotation angle in radian for the ellipse

See Also