vcgKmeans | R Documentation |
fast Kmean clustering for 1D, 2D and 3D data
vcgKmeans(x, k = 10, iter.max = 10, getClosest = FALSE, threads = 0)
x |
matrix containing coordinates or mesh3d |
k |
number of clusters |
iter.max |
maximum number of iterations |
getClosest |
logical: if TRUE the indices of the points closest to the k-centers are sought. |
threads |
integer: number of threads to use |
returns a list containing
centers |
cluster center |
class |
vector with cluster association for each coordinate |
If getClosest=TRUE
selected |
vector with indices of points closest to the centers |
vcgSample
require(Rvcg);require(rgl)
data(humface)
set.seed(42)
clust <- vcgKmeans(humface,k=1000,threads=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.