Why i am getting the error "Too many open files. Close files to prevent MATLAB instability."
Show older comments
Hello all, i am working on MCYT dataset and they have .fpg files. i have converted those file into .jpg files. now i am passing those images in to CNN but i am getting the error "Too many open files. Close files to prevent MATLAB instability. Caused by: Message Catalog MATLAB:FileIO was not loaded from the file. Please check file location, format or contents"
4 Comments
user06
on 9 Mar 2018
Mayuri Kulkarni
on 29 Mar 2018
I am facing the same issue as stated in the problem. I am passing those .jpg images in to CNN which are read using
imageDatastore('path','IncludeSubfolders',true,'LabelSource','foldernames');
command using
fclose all
doesnot help.
i have read few answers about using opengl to solve this issue. https://in.mathworks.com/help/matlab/creating_plots/resolving-low-level-graphics-issues.html
but do not know how to implement the solution. does opengl helps to solve the error?
Walter Roberson
on 29 Mar 2018
I would not expect changing to opengl to help this at all.
Something in the flow is failing to close files after use. It could be a bug. If you have a custom read function then you should check to be sure that it closes the file after it reads from it.
Mayuri Kulkarni
on 29 Mar 2018
this is the bug in matlab2017a, so switching to matlab2017b or higher will help in this case
Answers (1)
Veera Kanmani
on 29 Mar 2018
0 votes
The reason for the error messages is because the number of files that are open exceeds the limit on the maximum number of files that can be kept open.
While MATLAB does not have a limit on the maximum number of files that can be open, this is a restriction set by the operating system. Consult your system administrator for information on how to change this limit.
To resolve your issue, close every file with a FCLOSE command after using it. refer https://in.mathworks.com/matlabcentral/answers/101187-why-do-i-receive-too-many-files-open-error-messages-after-several-hours-when-executing-code-which
Categories
Find more on Downloads in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!