Filter löschen
Filter löschen

how to rectify the below error...

1 Ansicht (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 27 Mär. 2015
Kommentiert: Image Analyst am 28 Mär. 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

Akzeptierte Antwort

Thorsten
Thorsten am 27 Mär. 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 Kommentare
Elysi Cochin
Elysi Cochin am 28 Mär. 2015
thank you all... it worked fine with
fclose('all');
Image Analyst
Image Analyst am 28 Mär. 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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 27 Mär. 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