📄 example76_figure.m
字号:
%%%example_figure
%%%%imread the image samples
figure('name','实验图像','numbertitle','off');
img1=imread('example76_img1.bmp');
img2=imread('example76_img2.bmp');
img3=imread('example76_img3.bmp');
img4=imread('example76_img4.bmp');
img5=imread('example76_img5.bmp');
img6=imread('example76_img6.bmp');
img7=imread('example76_img7.bmp');
img8=imread('example76_img8.bmp');
img9=imread('example76_img9.bmp');
img10=imread('example76_img10.bmp');
subplot(2,5,1),imshow(rgb2gray(img1));
subplot(2,5,2),imshow(rgb2gray(img2));
subplot(2,5,3),imshow(rgb2gray(img3));
subplot(2,5,4),imshow(rgb2gray(img4));
subplot(2,5,5),imshow(rgb2gray(img5));
subplot(2,5,6),imshow(rgb2gray(img6));
subplot(2,5,7),imshow(rgb2gray(img7));
subplot(2,5,8),imshow(rgb2gray(img8));
subplot(2,5,9),imshow(rgb2gray(img9));
subplot(2,5,10),imshow(rgb2gray(img10));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -