我试图让用户在 MATLAB 中使用以下命令从文件夹中选择图像:
uigetfile('*.tiff','Select the image files')
我希望将图像写入带有n
元素的数组或矩阵(n
即在图像选择循环中选择的图像数量)。
我尝试了多种不同的方法,因此非常感谢任何帮助。非常感谢你。
这是我最近的尝试:
function imagereader
x={};
i=1;
response = 1;
while response ~= 0
[FileName] = uigetfile('*.tiff','Select the image files')
x{i} = FileName;
choice = questdlg('Do you wish to select more images?','Image selection','Yes','No','No');
switch choice
case 'Yes'
response = 1;
i+1;
case 'No'
response = 0;
end
end
while i >= 1
image(x{i})
i-1;
end