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 (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvEllipseBox(
	IntPtr img,
	MCvBox2D box,
	MCvScalar color,
	int thickness,
	LINE_TYPE lineType,
	int shift
)
Visual Basic (Declaration)
Public Shared Sub cvEllipseBox ( _
	img As IntPtr, _
	box As MCvBox2D, _
	color As MCvScalar, _
	thickness As Integer, _
	lineType As LINE_TYPE, _
	shift As Integer _
)
Visual C++
public:
static void cvEllipseBox(
	IntPtr img, 
	MCvBox2D box, 
	MCvScalar color, 
	int thickness, 
	LINE_TYPE lineType, 
	int shift
)

Parameters

img
Type: System..::.IntPtr
Image
box
Type: Emgu.CV.Structure..::.MCvBox2D
The box the define the ellipse area
color
Type: Emgu.CV.Structure..::.MCvScalar
Ellipse color
thickness
Type: System..::.Int32
Thickness of the ellipse arc
lineType
Type: Emgu.CV.CvEnum..::.LINE_TYPE
Type of the ellipse boundary
shift
Type: System..::.Int32
Number of fractional bits in the center coordinates and axes' values

See Also