Click or drag to resize

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
Members
  Member nameValueDescription
Random0 picks the initial cluster centers randomly [flann_centers_init_t::CENTERS_RANDOM]
Gonzales1 picks the initial centers using Gonzales’ algorithm [flann_centers_init_t::CENTERS_GONZALES]
KMeansPP2 picks the initial centers using the algorithm suggested in [arthur_kmeanspp_2007] [flann_centers_init_t::CENTERS_KMEANSPP]
See Also