Effacer les filtres
Effacer les filtres

how to rectify the below error...

1 vue (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 27 Mar 2015
Commenté : Image Analyst le 28 Mar 2015
when i execute a training file i get the below error;
??? Error using ==> imread at 359
Can't open file "Face Granules\FGr13.jpg" for reading;
you may not have read permission.
Error in ==> Training at 105
After getting the above error if i click any m-file i get the below error
??? C:\Program Files\MATLAB\R2009b\toolbox\matlab\uitools\uiopen.m: Too many files open;
check that FILES = 20 in your CONFIG.SYS file.
then i need to close matlab and open it again... the training is getting failed due to this error... please can someone help me to solve this error

Réponse acceptée

Thorsten
Thorsten le 27 Mar 2015
You don't have to close Matlab, just
close all
Probably you have opened files using fopen, and forgot to close them using fclose?
  4 commentaires
Elysi Cochin
Elysi Cochin le 28 Mar 2015
thank you all... it worked fine with
fclose('all');
Image Analyst
Image Analyst le 28 Mar 2015
I think that's somewhat dangerous unless you know what is open. I think you should open and close each file individually. That's the cleanest way to do it. If you just blindly call fclose('all') then it's possible that you might close something you did not intend to. That's why it's better to close each file independently and close it when it makes sense to close it, not just at some arbitrary time later, blindly, and with a sledgehammer.

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 27 Mar 2015
Does the file even exist? Try this
if exist('Face Granules\FGr13.jpg', 'file')
uiwait(helpdlg('File exists'));
else
uiwait(warndlg('File does not exist on the search path!'));
end

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by