input与imread读入图像的问题

2019-07-17 14:13发布

目前的图片读入是:
I = imread('E:Image Processing20x.tif');
由于这个程序是给不懂matlab的人使用的,
而且每次读入的图像都不一样,
所以我想利用input作为提示,让他们自己输入需要处理的图像地址,
试了下
str = input('Please enter the location of images:')   %运行后输入 E:Image Processing20x.tif
I = imread(str);或者I = imread('str');
统统显示:
E:Image Processing20x.tif
   |
Error: Unexpected MATLAB operator.

请用过此方法的帖友们帮忙解答一下,非常感谢 :)


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。