Error:Empty cluster at iteration
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jan
2012-11-29
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.
回答(2 个)
Walter Roberson
2012-11-29
"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 个评论
Walter Roberson
2012-11-29
This current Question is about kmeans. Please move the other topic to an appropriate question.
ishaan
2014-4-13
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!