Apparent imshow memory leak?
6 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have some code that captures and displays images repeatedly for some time, and I noticed that it continually eats up more and more memory (until it crashes).
I did some investigating and provided I don't bother to display the images, there do not appear to be any problems.
I determined that imshow() appears to be the cause of my woes, and I am hoping that there is a technique to resolve the problem.
The following code should demonstrate the issue:
x=rand(500,700,3);
for n=1:10000
imshow(x);
%drawnow;
if mod(n,500) == 0
memory
end
%cla
end
Does anyone know how to stop imshow() from eating up my memory? (or) Does anyone know how to display an image another cleaner way?
Thanks in advance, Sean
1 件のコメント
Jan
2011 年 11 月 17 日
I've started your example in the command line of Matlab 2009a/64 in Windows 7. Now I cannot stop the program using Ctrl-C. I cannot kill the process due to unsaved changes in some open M-files, but the editor is unresponsive also.
But I do not see an increase in the occupied memory.
採用された回答
Jan
2011 年 11 月 17 日
You can create the image once and update the CData only afterwards:
x = rand(500,700,3);
imgH = imshow(x);
for n=1:10000
set(imgH, 'CData', x);
drawnow;
if mod(n,500) == 0
memory
end
end
その他の回答 (2 件)
Image Analyst
2011 年 11 月 17 日
You're basically storing all of those images in the same axes, one on top of another. Put this before imshow and it will be fine:
cla reset;
2 件のコメント
BC
2021 年 3 月 18 日
Just came here to say I was having issues with a loop giving me an "out of memory" error after a while - including this in my loop seems to have solved this issue for now, thanks!
Yunjin Chen
2017 年 6 月 21 日
from https://stackoverflow.com/questions/36150047/matlab-imshow-how-to-free-memory-but-show-the-image
I bet you are doing something like
hold on
for ii=1:frames
imshow(frame)
drawnow
end
as most memory problems are due to this structure. If you hold on and never clear the figure, you will draw on top of whatever is there, but it will never get deleted. I suggest you remove the hold on if you are just drawing a single thing inside the loop, and if you are drawing more than one thing inside and you need the hold on, then add cla (clear axes) or clf after the drawnow, or in the begging of the loop.
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!