matlab图像增强与平滑简单程序.docx
《matlab图像增强与平滑简单程序.docx》由会员分享,可在线阅读,更多相关《matlab图像增强与平滑简单程序.docx(4页珍藏版)》请在三一办公上搜索。
1、matlab图像增强与平滑简单程序图像增强与平滑 直方图: I=imread(1.jpg); imshow(I); I=rgb2gray(I); %三维变成二维的图; figure,imhist(I); %显示灰度分布 直方图均衡处理: I=imread(1.jpg); I=rgb2gray(I); J=histeq(I); Subplot(1,2,1),imshow(I); Subplot(1,2,2),imshow(J); figure,Subplot(1,2,1),imhist(I,64); Subplot(1,2,2),imhist(J,64); %这个参数是什么意思? 灰度变换: i
2、madjust(I, ); I=imread(1.jpg); I=rgb2gray(I); J=imadjust(I,0.1,0.5,); Subplot(1,2,1),imshow(I); Subplot(1,2,2),imshow(J); figure,Subplot(1,2,1),imhist(I,64); Subplot(1,2,2),imhist(J,64); 图像反转: I=imread(1.jpg); I=rgb2gray(I); J=imadjust(I,0.1,0.9,0.9 0.1); Subplot(1,2,1),imshow(I); Subplot(1,2,2),ims
3、how(J); figure,Subplot(1,2,1),imhist(I,64); Subplot(1,2,2),imhist(J,64); 图像平滑 噪声 I=imread(1.jpg); I=rgb2gray(I); J=imnoise(I,salt & pepper,0.02); H=ones(5,5)/25; I2=imfilter(J,H); %领域平均法去噪; Subplot(1,2,1),imshow(J); Subplot(1,2,2),imshow(I2); 高斯噪声 J=imnoise(I,gaussian,0.02); %高斯噪声 I=imread(1.jpg); I
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- matlab 图像 增强 平滑 简单 程序
链接地址:https://www.31ppt.com/p-3161318.html