赞
踩
a = imread('pout.tif');
如果使用imshow(a)则显示出来的图像过小,我们可以使用下句,来显示合适大小的图像
imtool(uint8(a));
imshow(a,'InitialMagnification','fit')