Click or drag to resize

CvInvokeEllipse Method (IInputOutputArray, RotatedRect, MCvScalar, Int32, LineType, Int32)

http://www.emgu.com
Draws a simple or thick elliptic arc or fills an ellipse sector. The arc is clipped by ROI rectangle. A piecewise-linear approximation is used for antialiased arcs and thick arcs. All the angles are given in degrees.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Ellipse(
	IInputOutputArray img,
	RotatedRect box,
	MCvScalar color,
	int thickness = 1,
	LineType lineType = LineType.EightConnected,
	int shift = 0
)

Parameters

img
Type: Emgu.CVIInputOutputArray
Image
box
Type: Emgu.CV.StructureRotatedRect
The box the define the ellipse area
color
Type: Emgu.CV.StructureMCvScalar
Ellipse color
thickness (Optional)
Type: SystemInt32
Thickness of the ellipse arc
lineType (Optional)
Type: Emgu.CV.CvEnumLineType
Type of the ellipse boundary
shift (Optional)
Type: SystemInt32
Number of fractional bits in the center coordinates and axes' values
See Also