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.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

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

See Also