|
IConvexHullAlgorithmFindHull Method
|
Find convex hull for the given set of points.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax List<IntPoint> FindHull(
List<IntPoint> points
)
Function FindHull (
points As List(Of IntPoint)
) As List(Of IntPoint)
Request Example
View SourceParameters
- points
- Type: System.Collections.GenericListIntPoint
Set of points to search convex hull for.
Return Value
Type:
ListIntPointReturns set of points, which form a convex hull for the given
points.
See Also