"Out of memory" error.
1 回表示 (過去 30 日間)
古いコメントを表示
I use the routine matlab to convert videos, MOV to AVI format and for my system identify the 240 frames per second. When I use the routine to convert small videos (200 MB), I have not problems, but I need also of convert large videos (2GB), but the memory laptop is no enough. Anyone know how I limit the used memory of my matlab?
If you need my routine, I publish here. Thanks.
0 件のコメント
採用された回答
Image Analyst
2013 年 11 月 22 日
You don't need to read the whole movie into memory at once. Are you using the VideoReader class and read()?
2 件のコメント
その他の回答 (1 件)
Paulo Oliveira
2013 年 11 月 25 日
3 件のコメント
Image Analyst
2013 年 11 月 25 日
Again, we have not seen your code so it's hard to speculate on the unknown. All I can guess is that you're not using read() to read in one frame at a time, but are trying to read in the whole giant thing all at once, which I've already said (and you' already know) won't work for large videos.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!