📄 junheng.m
字号:
f=imread('C:\Documents and Settings\lishurui\桌面\lena.bmp');
j=histeq(f);
subplot(2,2,1);
imshow(f);
title('原始图像');
subplot(2,2,2);
imshow(j);
title('直方图均衡图像');
subplot(2,2,3);
imhist(f);
title('原始图像直方图');
subplot(2,2,4);
imhist(j);
title('均衡化图像直方图');
f=imread('C:\Documents and Settings\lishurui\桌面\lena.bmp');
[j,T]=histeq(f);
figure,plot((0:255/255),T);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -