Error:Empty cluster at iteration
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Finally for the question in
i have found mean and for k means i get error
my code
By this way i have found mean
for i2=1:192
kl(:,:,i2)=kkk(:,:,i2);
kll=kkk(:,:,i2);
k3(:,:,i2)=mean(kll,3);
end
next i tried to do k means
for i2=1:192
k4(:,:,i2)=k3(:,:,i2);
k5=k4(:);
k3(:,:,i2)=kmeans(k5,3);
end
I get error
??? Error using ==> kmeans>batchUpdate at 435 Empty cluster created at iteration 1.
Error in ==> kmeans at 336 converged = batchUpdate();
Error in ==> Samp2 at 52 k3(:,:,i2)=kmeans(kll,3);
please assist
1 commentaire
Jan
le 29 Nov 2012
After kll=kkk(:,:,i2), the variable k11 is a matrix. Then using mean(k11, 3) does not compute anything, but replies k11. Finally k3 should be the same as kkk and therefore I do not understand what you are doing.
Réponses (2)
Walter Roberson
le 29 Nov 2012
"empty cluster" can occur by chance (kmeans does random initialization of positions), but more likely is the possibility that your points naturally form fewer than 3 clusters.
4 commentaires
Walter Roberson
le 29 Nov 2012
This current Question is about kmeans. Please move the other topic to an appropriate question.
ishaan
le 13 Avr 2014
I received the above error too.. I am applying kmeas clustering on a Canny's Edge detected image with k param as 2.
I3 = imclose(I2,strel('disk',20));
Imed = medfilt2(rgb2gray(I3));
Ifilt = edge(Imed,'canny');
%I3 = applycform(Ifilt,makecform('srgb2lab'));
%I = double(I3(:,:,2));
I = double(Ifilt(:,2));
szx2 = size(I,1);
szy2 = size(I,2);
I = reshape(I,szx2*szy2,1);
nColors = 2;
%%Image Manipulation Kmeans...............................................
[idx ct] = kmeans(I,nColors);
However i Received the empty cluster error. How to avoid the error. I need the edge detected image as well.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!