running k-means and getting different results run after run?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
cgo
el 17 de Ag. de 2018
Comentada: Mehmet Volkan Ozdogan
el 2 de Abr. de 2019
I am running k-means clustering algorithm on a data, and I don't understand why I am getting different silhouette plots each time I run this. Is there a way to stabilise this? (or set the number of iterations) so I get the same results?
3 comentarios
Respuesta aceptada
Image Analyst
el 17 de Ag. de 2018
That's normal. Specify 'Replicates' to get convergence.
% Do kmeans clustering on the gray scale image.
grayLevels = double(grayImage(:)); % Convert to column vector.
[clusterIndexes, clusterCenters] = kmeans(grayLevels, numberOfClusters,...
'distance', 'sqEuclidean', ...
'Replicates', 2);
labeledImage = reshape(clusterIndexes, rows, columns);
See attached demo.
3 comentarios
Image Analyst
el 27 de Mzo. de 2019
You forgot to attach 'ucd1.xlsx', or even any scatterplots. Please do so, so we can help you.
Mehmet Volkan Ozdogan
el 2 de Abr. de 2019
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!