Create a circle with the specific center and radius

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

Syntax

C#
public CircleF(
	PointF center,
	float radius
)
Visual Basic (Declaration)
Public Sub New ( _
	center As PointF, _
	radius As Single _
)
Visual C++
public:
CircleF(
	PointF center, 
	float radius
)

Parameters

center
Type: System.Drawing..::.PointF
The center of this circle
radius
Type: System..::.Single
The radius of this circle

See Also