Matlab - 如何从目录中读取图像

时间:2014-04-23 12:47:42

标签: image matlab

我想打开一个目录,以便可以选择任何图像,然后使用imread读取它。

I have tried this:

[FileName,PathName] = uigetfile('*.jpg','Select the image file');
i=imread ( [FileName,PathName]);

但是我在目录中选择img3,我收到错误:

"img3.jpg does not exist"

谁能告诉我怎么做?

1 个答案:

答案 0 :(得分:1)

检查[FileName,PathName]的输出,这不是一个正确的文件名。使用fullfile来结合PathNameFileName