How to cluster rows of a matrix and label them
1 次查看(过去 30 天)
显示 更早的评论
I have to convexify Kmeans clustering. So I'll be using some modified functions. I want to know how do I label my modified image matrix(80000x3 double) and form clusters and initialise the cluster centres by taking the mean of the cluster formed(I have to make sure that the initailised cluster centres lie within the data points) . (Generally, cluster centres are generated randomly initially.) Please help with the code.
I = im2double(imread('hest.png'));
F =reshape(I,size(I,1)*size(I,2),3);
K = 5; % # of cluster
U = F( ceil(rand(K,1)*size(F,1)) ,:);% random cluster centres generated
0 个评论
回答(1 个)
Image Analyst
2018-12-19
See my attached demo to do kmeans clustering on an RGB image. Adapt as needed.
Generally kmeans gives a crummy segmentation with color images. You might try discriminant analysis instead (demo also attached). It seems to do better.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!