Error using fgets Invalid file identifier. Use fopen to generate a valid file identifier.
Afficher commentaires plus anciens
this is my pgm
function [filenames, classIDs] = ReadOutexTxt(txtfile)
i= 1;
fid = fopen(txtfile,'r');
%tline = fgetl(fid); % get the number of image samples
while 1
tline = fgetl(fid);
if ~ischar(tline)
break, end
%disp(tline)
index = findstr(tline,'.');
filenames(i) = str2double(tline(1:index-1)); % the picture ID starts from 0, but the index of Matlab array starts from 1
classIDs(i) = str2double(tline(index+5:end));
i = i+1;
end
fclose(fid)
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!