how to rectify the below error...
Show older comments
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
Accepted Answer
More Answers (1)
Image Analyst
on 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
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!