필터 지우기
필터 지우기

Saving the figure handle into a structure

조회 수: 5 (최근 30일)
Dilunath Hareendranath
Dilunath Hareendranath 2012년 4월 18일
I want to save 300 figures produced by matlab into a structure. I have given an example of the existing code which is taking time to save the frame to the disc and then store into a structure. Please suggest any efficient way.
for i=1:300
f1=figure;
imshow(images(i));
line([10 20],[15 40], 'LineWidth',1,'Color', [1 0 0]);
saveas(f1, 'test.tif');
Images(i).Frames = imread('test.tif');
end
Thanks in advance

답변 (1개)

Walter Roberson
Walter Roberson 2012년 4월 18일
Fastest is if you draw the line into the matrix of the image, without using imshow() or saveas() or imread().
Second fastest (I guess) would be to use getframe() instead of saveas() and imread()
  댓글 수: 1
Dilunath Hareendranath
Dilunath Hareendranath 2012년 4월 19일
Thanks Walter. getframe() pops out the image onto the screen every time which is very inconvinient. I would like to go with the fastest option which seems to be less time taking. Please help me out.
In my case, I have a binary image and I would like to add a line which is red in color. How can I draw red line in matrix of a binary image? Please let me know.
Thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by