Description of K-Means Point Reduction Algorithm

Description of the algorithm

The algorithm computes a K-Mean clustering of the points using the Euclidean distance between points, and then replaces each cluster by a single point.

More details from Wikipedia on K-Means clustering.

Parameter name Description Type Default value
k the number of clusters to build (i.e. the number of points after reduction integer  
shrinkRatio if k is set to 0, the algorithm rather uses this ratio to compute how many points are kept (0.5 means half the points are kept) double (between 0 and 1)  

Examples of generalization

K-Means point reduction using the centroid of the cluster K-Means point reduction using the nearest point to the centroid of the cluster

When to use the algorithm?

The algorithm is dedicated to features represented by point clouds.

See Also