|
SimpleShapeCheckerIsCircle Method (ListIntPoint)
|
Check if the specified set of points form a circle shape.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public bool IsCircle(
List<IntPoint> edgePoints
)
Public Function IsCircle (
edgePoints As List(Of IntPoint)
) As Boolean
Request Example
View SourceParameters
- edgePoints
- Type: System.Collections.GenericListIntPoint
Shape's points to check.
Return Value
Type:
BooleanReturns
if the specified set of points form a
circle shape or
otherwise.
Remarks Note |
---|
Circle shape must contain at least 8 points to be recognized.
The method returns always, of number of points in the specified
shape is less than 8. |
See Also