How do I access a certain directory?
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do I access a certain directory, so i can then retrieve certain images from that specified directory?
0 Commenti
Risposte (2)
Jan
il 9 Set 2019
You can define the path of a file to access it:
Folder = 'C:\Temp\';
FileList = dir(fullfile(Folder, '*.jpg'));
for iFile = 1:numel(FileList)
File = fullfile(FileList(iFile).folder, FileList(iFile).name);
% Do what you want with this file, e.g.:
Img = imread(File)
end
madhan ravi
il 9 Set 2019
help cd
3 Commenti
Jan
il 9 Set 2019
It is unsafe to change to a specific directory only to access the included files. Using absolute path names is better, because this is not confused by GUI or TIMER callbacks, which call cd again unexpectedly.
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!