Unable to load many files at once
4 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I've created a small video-editor using the matlab GUIDE. One of its functions is to load image files in order to convert them into a movie. Everything works fine, except that I cannot load more files than ~650 at the same time. Since I work with thousands of images, loading everything in batches of 600 is just annoying, and I figure I should be able to load all my files at once. I use the following code:
[cellFiles,pathvar] = uigetfile(...
filterSpec,...
'Pick a file','MultiSelect','on');
I guess the problem is that there is a limit to the size uigetfile can return, so I was wondering if anyone knows a way to circumvent this.
With kind regards, Jorrit Montijn
3 件のコメント
回答 (2 件)
Jan
2011 年 9 月 20 日
There is an undocumented function called "native_uigetfile" in Matlab 2009a under Windows. Is it available on your system and does it influence the problem?
5 件のコメント
Maya Aviv
2013 年 2 月 12 日
did you find a solution? since i have the same problem. i have to get more than 1000 files.
Sean de Wolski
2013 年 2 月 12 日
Are you making sure to close the files when you are done with them? This is very important. The number of file handles is limited by the OS (i.e. not MATLAB) and if you open more than this you will see some of the most ridiculous behavior ever.
What is the output from:
hOpen = fopen('all');
This will tell you if you are not closing files when done with them. To close them use:
fclose(fid);
To close all of them:
fclose('all');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!