一
>> I=imread('imageRao.bmp');
H=adapthisteq(I);
figure(1),imshow(I);
xlabel('原始图像');
figure(2),imshow(H);
xlabel('adapthisteq 均衡化');
'adapthisteqh 函数首先对图像的局部快进行直方图均衡化,而不是全局,然后利用双线性插
值方法把各个小块拼接起来,以消除局部块造成的边界。
三
>> clear all;
I=imread('imageXian.bmp');
figure;imhist(I);
xlabel('(b) 直方图');
newI=im2bw(I,157/255);
% 根据上面直方图选择阈值 150,划分图像的前景和背景
figure;
subplot(1,2,1);imshow(I);
xlabel('(a) 原始图像');
subplot(1,2,2);imshow(newI);
xlabel('(b) 分割后图像');