Splits set of vectors by given number of clusters
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int KMeans2( Array samples, MatrixType samplesType, int clusterCount, int[] labels, CvTermCriteria termcrit )
Parameters
- samples
- Type: SystemArray
Floating-point matrix of input samples, one row per sample. - samplesType
- Type: OpenCvSharpMatrixType
[Missing <param name="samplesType"/> documentation for "M:OpenCvSharp.Cv.KMeans2(System.Array,OpenCvSharp.MatrixType,System.Int32,System.Int32[],OpenCvSharp.CvTermCriteria)"]
- clusterCount
- Type: SystemInt32
Number of clusters to split the set by. - labels
- Type: SystemInt32
Output integer vector storing cluster indices for every sample. - termcrit
- Type: OpenCvSharpCvTermCriteria
Specifies maximum number of iterations and/or accuracy (distance the centers move by between the subsequent iterations).
Return Value
Type: Int32[Missing <returns> documentation for "M:OpenCvSharp.Cv.KMeans2(System.Array,OpenCvSharp.MatrixType,System.Int32,System.Int32[],OpenCvSharp.CvTermCriteria)"]
See Also