Table of Contents

Struct CircleF

Namespace
Emgu.CV.Structure
Assembly
Emgu.CV.dll

A circle

public struct CircleF : IEquatable<CircleF>
Implements
Inherited Members

Constructors

CircleF(PointF, float)

Create a circle with the specific center and radius

public CircleF(PointF center, float radius)

Parameters

center PointF

The center of this circle

radius float

The radius of this circle

Properties

Area

The area of the circle

public double Area { get; }

Property Value

double

Center

Get or Set the center of the circle

public PointF Center { get; set; }

Property Value

PointF

Radius

The radius of the circle

public float Radius { get; set; }

Property Value

float

Methods

Equals(CircleF)

Compare this circle with circle2

public bool Equals(CircleF circle2)

Parameters

circle2 CircleF

The other box to be compared

Returns

bool

true if the two boxes equals