You are here: Start » FIL.NET » FIS.ClusterPoints2D_SingleLink Method

FIS.ClusterPoints2D_SingleLink Method

Clusters data using hierarchical single-link algorithm.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ClusterPoints2D_SingleLink
(
	IList<FilNet.Point2D> inPoints,
	int? inClusters,
	float? inMaxDistance,
	IList<List<FilNet.Point2D>> outClusters
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point2D>Array of points to cluster.
inClustersint?<2, +INF>Number of clusters to extract. Default value: ftl::NIL.
inMaxDistancefloat?<0.0f, INF>Maximum distance between two closest points in a cluster. Default value: ftl::NIL.
outClustersSystem.Collections.Generic.IList<System.Collections.Generic.List<FilNet.Point2D>>Resulting Point2D clusters.

Function Overrides

See also