第15行MatLab 2017a中的imshow错误

时间:2017-10-12 02:13:20

标签: matlab matlab-figure matlab-guide

我试图用matlab显示图像。根据我的理解,imshow函数应该这样做,但由于某种原因,它不起作用。当我尝试在终端的matlab解释器中使用它时,没有任何事情发生:有人可以告诉我为什么我在第15行(imshow)中有错误。

clc
clear all
close all

%% reference image

[filename, filepath]=uigetfile('*.*','Select reference image');
filedir=strcat(filepath,'\',filename);
images=imread(filedir);
resize=256;
img_ref=imresize(images,[resize resize],'bilinear');

figure
subplot(2,2,1)
imshow(img_ref);
title('Reference Image')

0 个答案:

没有答案