matlab图像聚类分割算法 求大神告知以下代码是用了什么方法?还有怎么把图像分割和聚类算法结合在一起。
clc;ticI=imread('E:\\mark\\mark.bmp');I1=I(:,:,1);I2=I(:,:,2);I3=I(:,:,3);[y,x,z]=siz...
clc;
tic
I=imread('E:\\mark\\mark.bmp');
I1=I(:,:,1);
I2=I(:,:,2);
I3=I(:,:,3);
[y,x,z]=size(I);
d1=zeros(y,x);
d2=d1;
myI=double(I);
I0=zeros(y,x);
for i=1:x
for j=1:y
d1(j,i)=sqrt((myI(j,i,1)-10)^2+(myI(j,i,2)-10)^2+(myI(j,i,3)-10)^2) ;
d2(j,i)=sqrt((myI(j,i,1)-180)^2+(myI(j,i,2)-180)^2+(myI(j,i,3)-180)^2)
;
if d1(j,i)>= d2(j,i)
I0(j,i)=1;
end
end
end
toc
figure(1);
subplot(221);imshow(I); title('a 原始图像');
subplot(222);imshow(I1);title('b R分量');
subplot(223);imshow(I2);title('c G分量');
subplot(224);imshow(I3);title('d B分量');
figure(2);
subplot(131);imhist(I1); title(' R分量直方图');
subplot(132);imhist(I2); title(' G分量直方图');
subplot(133);imhist(I3); title(' B分量直方图');
figure(3);
subplot(221);imshow(I0);title('聚类分割后的图像'); 展开
tic
I=imread('E:\\mark\\mark.bmp');
I1=I(:,:,1);
I2=I(:,:,2);
I3=I(:,:,3);
[y,x,z]=size(I);
d1=zeros(y,x);
d2=d1;
myI=double(I);
I0=zeros(y,x);
for i=1:x
for j=1:y
d1(j,i)=sqrt((myI(j,i,1)-10)^2+(myI(j,i,2)-10)^2+(myI(j,i,3)-10)^2) ;
d2(j,i)=sqrt((myI(j,i,1)-180)^2+(myI(j,i,2)-180)^2+(myI(j,i,3)-180)^2)
;
if d1(j,i)>= d2(j,i)
I0(j,i)=1;
end
end
end
toc
figure(1);
subplot(221);imshow(I); title('a 原始图像');
subplot(222);imshow(I1);title('b R分量');
subplot(223);imshow(I2);title('c G分量');
subplot(224);imshow(I3);title('d B分量');
figure(2);
subplot(131);imhist(I1); title(' R分量直方图');
subplot(132);imhist(I2); title(' G分量直方图');
subplot(133);imhist(I3); title(' B分量直方图');
figure(3);
subplot(221);imshow(I0);title('聚类分割后的图像'); 展开
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询