s073.m

来自「简单的数字图像处理程序」· M 代码 · 共 13 行

M
13
字号
% 灰度图像均值滤波  s073
I73=imread('3.jpg');
I730=rgb2gray(I73);
h1=[1 1 1;1 1 1;1 1 1]*1/9;;
h2=[1 1 1 1;1 1 1 1;1 1 1 1;1 1 1 1 ]*1/16;
h3=[1 1 1 1 1;1 1 1 1 1;1 1 1 1 1;1 1 1 1 1;1 1 1 1 1]*1/25;
I731=imfilter(I730,h1);
I732=imfilter(I730,h2);
I733=imfilter(I730,h3);
subplot(2,2,1),imshow(I730);
subplot(2,2,2),imshow(I731);
subplot(2,2,3),imshow(I732);
subplot(2,2,4),imshow(I733)

⌨️ 快捷键说明

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