pho1.m
来自「是一本教科书的各个章节的源程序代码,适合初学数字图像的人」· M 代码 · 共 16 行
M
16 行
pho= imread(' nephogram.bmp','bmp');
figure(1);
imshow(pho);
pho1=imnoise(pho,'gaussian',0,20);
figure(2);
imshow(pho1);
pho2=imnoise(pho,'salt & pepper',0.2);
figure(3);
imshow(pho2);
pho3=imnoise(pho,'speckle',20);
figure(4);
imshow(pho3);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?