⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 13-10.m

📁 matlab的源程序,没有其他目的
💻 M
字号:
I = imread('saturn.tif');
subplot(211);imshow(I);title('原图像'); 
H = fspecial('laplacian');
%应用Laplacian算子滤波锐化图像
laplacianH = filter2(H,I);
subplot(223);imshow(laplacianH);
title('laplacian算子锐化图像');
H = fspecial('prewitt');
%应用prewitt模板滤波锐化图像
prewittH =  filter2(H,I);
subplot(224);imshow(prewittH);
title('prewitt模板锐化图像');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -