| FlannCentersInit Enumeration |
The algorithm to use for selecting the initial centers when performing a k-means clustering step.
Namespace:
OpenCvSharp.Flann
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public enum FlannCentersInit
Public Enumeration FlannCentersInit
public enum class FlannCentersInit
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