KMeansClusteringMethod

Description

Possible methods of KMeans clustering.

Values of this enumeration:

  • KMeans - Plain - uses Lloyds algorithm.
  • KMeansPlusPlus - Generates candidate centroids using KMeans++ method, and passes them to Lloyds algorithm.

namespace KMeansClusteringMethod
{
	enum Type
	{
		KMeans,
		KMeansPlusPlus
	};
}