How to plot or mark the centroid of each cluster in the output image?
16 次查看(过去 30 天)
显示 更早的评论
I have used k means algorithm to cluster the image into 6. After this how can i view the centroids of each cluster in the image? Any help is appreciated
0 个评论
回答(1 个)
Sreedhar Arumugam
2021-9-7
I am assuming you're using the built-in function of MATLAB to perform k-means clustering of your data.
[idx,C] = kmeans(data,6) % As you are dividing into 6 categories
The matrix C would be a 6x2 matrix containing the centroids of each cluster.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!