我有一個包含多個文件夾的目錄。這些文件夾中的每個都包含多個圖像從子目錄中讀取圖像
如果我們假設我們有一個包含圖像的目錄,我知道如何閱讀這些圖像(請參閱下面的代碼);如果我們假設這些圖像被放置在這個目錄的子目錄中,那麼我不知道如何編輯我的代碼。
directory = 'my_direct';
dnames1={directory};
c{1} = dir(dnames1{1}); % struct array with 5 fileds (name, isdir,...)
if length(c{1}>0)
if c{1}(1).name =='.'
c{1} = c{1}(3:end); %ignore the '.' and '..'
end
end
for k = 1: length(c{1})
image= double(imread([dnames{1} '/' h{1}(L).name]))./255;
end
感謝您的回答:) – Christina