The algorithm to use for selecting the initial centers when performing a k-means clustering step.
Namespace: OpenCvSharp.CPlusPlus.Flann
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Random | 0 | picks the initial cluster centers randomly [flann_centers_init_t::CENTERS_RANDOM] | |
Gonzales | 1 | picks the initial centers using Gonzales’ algorithm [flann_centers_init_t::CENTERS_GONZALES] | |
KMeansPP | 2 | picks the initial centers using the algorithm suggested in [arthur_kmeanspp_2007] [flann_centers_init_t::CENTERS_KMEANSPP] |
See Also