k means clustering using k=4
1 回表示 (過去 30 日間)
古いコメントを表示
Perform K-means clustering on the mandrill image with K=4.
can someone please help me with code for this question, as I'm a begineer don't have much idea about how to proceed with this question.
0 件のコメント
採用された回答
KSSV
2021 年 3 月 29 日
I = imread('Mandril.jpeg') ;
I = im2double(I);
R = I(:,:,1); R = R(:);
G = I(:,:,2); G = G(:);
B = I(:,:,3); B = B(:);
idx = kmeans([R G B], 4);
imshow(ind2rgb(reshape(idx, size(I,1), size(I, 2)), rand(4,3)))
その他の回答 (1 件)
Walter Roberson
2021 年 3 月 29 日
The line that has
[idx,C] = kmeans(X,3);
would change to
[idx,C] = kmeans(X,4);
if you were clustering with four clusters.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!