s009.m

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

M
13
字号
%灰度图像调整幅度分辨率  s009
clear;
I9=imread('1.jpg');
I90=rgb2gray(I9);
subplot(2,4,1),imshow(I90,256);
subplot(2,4,2),imshow(I90,128);
subplot(2,4,3),imshow(I90,64);
subplot(2,4,4),imshow(I90,32);
subplot(2,4,5),imshow(I90,16);
subplot(2,4,6),imshow(I90,8);
subplot(2,4,7),imshow(I90,4);
subplot(2,4,8),imshow(I90,2)

⌨️ 快捷键说明

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