kd-Tree
and K-means
algorithm are two different types of clustering method.
Here are several types of clustering method as follows:
kd-Tree
is a hierarchical-clustering method (median-based).
K-means
is a means-based clustering method.
GMM
(Gaussian mixture model) is a probability-based clustering method (soft-clustering).
- etc.
[UPDATE]:
Generally, there are two types of clustering method, soft clustering, and hard clustering. Probabilistic clustering like the GMM are soft clustering type with assigning objects to the clusters with probabilities, and others are hard clustering with assigning objects to a cluster absolutely.