欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matlab小技巧:imshow放大图像显示位置

程序员文章站 2022-03-10 10:43:31
...

使用matlab做图像处理或仿真时,使用imshow显示图像

clc, clear, close all
img = ~imread('clc, clear, close all
img = ~imread('G:\fire.bmp');
figure(1);
imshow(img);');
figure(1);
imshow(img);

会有以下现象:
matlab小技巧:imshow放大图像显示位置

可见,有一部分区域是浪费了的,那么解决方法如下:

clc, clear, close all
img = ~imread('G:\fire.bmp');
figure(1);
imshow(img,'InitialMagnification','fit')

matlab小技巧:imshow放大图像显示位置