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

📄 s009.m

📁 简单的数字图像处理程序
💻 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 + -