%%数字图像处理:阈值分割
clear all;
img= imread('lena.bmp');
%I=rgb2gray(img);
I = img;
zft=figure;
figure(zft);
subplot(2,2,1);imshow(img);title('原始图像');
subplot(2,2,2);imshow(I);title('转换灰度图像');
subplot(2,2,3);imhist(I);title('灰度图像的直方图');
t1=130; %阈值选取;
[m n]=size(I);
I1=zeros(m,n);
for i=1:m
for j=1:n
if I(i,j)>t1
I1(i,j)=1;
else
I1(i,j)=0;
end
end
end
subplot(2,2,4);imshow(I1);title('分割后的图像');
Matlab迭代阈值分割
最新推荐文章于 2022-04-13 11:59:07 发布