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

📄 s008.m

📁 简单的数字图像处理程序
💻 M
字号:
%灰度图像调整空间分辨率  s008
I8=imread('1.jpg');
I80=rgb2gray(I8);
I81=imresize(I80,0.5);
I82=imresize(I81,0.5);
I83=imresize(I82,0.5);
I84=imresize(I83,0.5);
I85=imresize(I84,0.5);
subplot(2,3,1),imshow(I80);
subplot(2,3,2),imshow(I81);
subplot(2,3,3),imshow(I82);
subplot(2,3,4),imshow(I83);
subplot(2,3,5),imshow(I84);
subplot(2,3,6),imshow(I85)

⌨️ 快捷键说明

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