资源简介

如果有用还请点赞分享,原文链接https://blog.csdn.net/weixin_43863744/article/details/106224889

资源截图

代码片段和文件信息

img=imread(‘./dog.jpg‘);
%img=imread(‘./cherry.jpg‘);
subplot(231);
imshow(img);
C = makecform(‘srgb2lab‘);       %设置转换格式
img_lab = applycform(img C);

ab = double(img_lab(::2:3));    %取出lab空间的a分量和b分量
nrows = size(ab1);
ncols = size(ab2);
ab = reshape(abnrows*ncols2);

nColors = 3;        %分割的区域个数为3
[cluster_idx cluster_center] = kmeans(abnColors‘distance‘‘sqEuclidean‘‘Replicates‘3);  %重复聚类3次
pixel_labels = reshape(cluster_idxnrowsnco

评论

共有 条评论