Read names of images from text file and read using imread
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I have some images to read in MATLAB and the names of the images are stored in a text file please let me know how can I read images one by one using imread, in addition to that the names of the image files contains '.' and '_' and my demand is to use the names as it is because these images are in sequence. Thanks
2 Commenti
Risposte (2)
Azzi Abdelmalek
il 5 Lug 2014
f=fopen('file.txt');
s=textscan(f,'%s ');
fclose(f);
out=s{1};
for k=1:numel(out)
filename=out{k}
%do
end
0 Commenti
Image Analyst
il 5 Lug 2014
Modificato: Image Analyst
il 5 Lug 2014
Use fgetl():
fid = fopen('image_names.txt');
textLine = fgetl(fid);
while ischar(textLine)
fprintf('Now reading %s\n', textLine);
theImage = imread(textLine);
% Now process that image.
% Now read the next line.
tline = fgetl(fid);
end
fclose(fid);
0 Commenti
Vedere anche
Categorie
Scopri di più su Import, Export, and Conversion 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!