K Mean Clustering Output Results Plotting
1 次查看(过去 30 天)
显示 更早的评论
I have the following code which runs fines...
index_string = int2str(k);
Image_Path = strcat('D:\MS\Research\Classification Model\Research Implementation\EnhancedImage\ROI',index_string,'.jpeg');
I1 = imread(Image_Path);
I=double(I1);
figure
subplot(1,3,1)
imshow(I1)
subplot(1,3,2)
[idx,C] = adaptcluster_kmeans(I);
I want to show the output of K Means like this , what should i do?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148753/image.png)
1 个评论
Image Analyst
2015-4-6
You forgot to attach an image that we can use imread() on, so we can't run your code with your image.
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Feature Detection and Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!