2011-02-23 04:43:26 +08:00
Clustering
==========
.. highlight :: cpp
.. index :: kmeans
cv::kmeans
----------
2011-02-26 19:05:10 +08:00
.. cfunction :: double kmeans( const Mat\& samples, int clusterCount, Mat\& labels, TermCriteria termcrit, int attempts, int flags, Mat* centers )
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
Finds the centers of clusters and groups the input samples around the clusters.
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param samples: Floating-point matrix of input samples, one row per sample
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param clusterCount: The number of clusters to split the set by
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param labels: The input/output integer array that will store the cluster indices for every sample
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param termcrit: Specifies maximum number of iterations and/or accuracy (distance the centers can move by between subsequent iterations)
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param attempts: How many times the algorithm is executed using different initial labelings. The algorithm returns the labels that yield the best compactness (see the last function parameter)
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param flags: It can take the following values:
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
* **KMEANS_RANDOM_CENTERS** Random initial centers are selected in each attempt
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
* **KMEANS_PP_CENTERS** Use kmeans++ center initialization by Arthur and Vassilvitskii
2011-02-23 04:43:26 +08:00
* **KMEANS_USE_INITIAL_LABELS** During the first (and possibly the only) attempt, the
2011-02-26 19:05:10 +08:00
function uses the user-supplied labels instaed of computing them from the initial centers. For the second and further attempts, the function will use the random or semi-random centers (use one of `` KMEANS_*_CENTERS `` flag to specify the exact method)
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param centers: The output matrix of the cluster centers, one row per each cluster center
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
The function `` kmeans `` implements a k-means algorithm that finds the
centers of `` clusterCount `` clusters and groups the input samples
around the clusters. On output,
:math: `\texttt{labels}_i` contains a 0-based cluster index for
the sample stored in the
:math: `i^{th}` row of the `` samples `` matrix.
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
The function returns the compactness measure, which is computed as
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
.. math ::
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
\sum _i \| \texttt{samples} _i - \texttt{centers} _{ \texttt{labels} _i} \| ^2
2011-02-23 04:43:26 +08:00
after every attempt; the best (minimum) value is chosen and the
corresponding labels and the compactness value are returned by the function.
Basically, the user can use only the core of the function, set the number of
attempts to 1, initialize labels each time using some custom algorithm and pass them with
2011-02-26 19:05:10 +08:00
( `` flags `` = `` KMEANS_USE_INITIAL_LABELS `` ) flag, and then choose the best (most-compact) clustering.
2011-02-23 04:43:26 +08:00
.. index :: partition
cv::partition
-------------
.. cfunction :: template<typename _Tp, class _EqPredicate> int
.. cfunction :: partition( const vector<_Tp>\& vec, vector<int>\& labels, _EqPredicate predicate=_EqPredicate())
Splits an element set into equivalency classes.
2011-02-26 19:05:10 +08:00
:param vec: The set of elements stored as a vector
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
:param labels: The output vector of labels; will contain as many elements as ``vec`` . Each label ``labels[i]`` is 0-based cluster index of ``vec[i]`` :param predicate: The equivalence predicate (i.e. pointer to a boolean function of two arguments or an instance of the class that has the method ``bool operator()(const _Tp& a, const _Tp& b)`` . The predicate returns true when the elements are certainly if the same class, and false if they may or may not be in the same class
2011-02-23 04:43:26 +08:00
2011-02-26 19:05:10 +08:00
The generic function `` partition `` implements an
:math: `O(N^2)` algorithm for
splitting a set of
:math: `N` elements into one or more equivalency classes, as described in
2011-02-23 04:43:26 +08:00
http://en.wikipedia.org/wiki/Disjoint-set_data_structure
. The function
returns the number of equivalency classes.