📄 s009.m
字号:
%灰度图像调整幅度分辨率 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -