getframe not updating when outputting video/images
이전 댓글 표시
Hello, thanks for reading this,
I have a image that I'm outputting to a gif/avi video, and neither one seems to work.
When I use the code:
lseg = getframe(h);
set(gcf,'InvertHardCopy','off')
imwrite(lseg.cdata, outputFileName, 'WriteMode', 'append');
camorbit(1, 0, 'data', [0 0 1])
drawnow
and see my image stack, they're all the same image: the lseg frame never gets updated when I rotate with camorbit. Additionally, when I try to make a video with:
fps = 60; sec = 10;
vidObj = VideoWriter('newfile.avi');
vidObj.Quality = 100;
vidObj.FrameRate = fps;
open(vidObj);
for i=1:fps*sec
camorbit(0.9,-0.1);
writeVideo(vidObj,getframe(gcf));
end
close(vidObj);
I get a 10 second video of a static frame: again, getframe never gets updated to the frame rotated by camorbit.
When I view the image as its writing, I can see the figure rotating. Its just when MATLAB writes to file, the written file frames are not updated.
Any ideas?
채택된 답변
추가 답변 (1개)
Chad Greene
2014년 7월 21일
I've had troubles with getframe in the past. I've had better luck using export_fig . The syntax would be
frame = export_fig(gcf);
writeVideo(vidObj,frame);
댓글 수: 3
Brian
2014년 7월 21일
Brian
2014년 7월 21일
Chad Greene
2014년 7월 21일
I think you'd need the -nocrop option in export_fit. That's because by default export_fig crops the frame to the dimensions of where plotted objects appear on the figure. If some data being plotted in your figure starts to go near the edge of the frame, export_fig will increase need to increase the size of the frame. Using the -nocrop option prevents the automatic frame sizing.
카테고리
도움말 센터 및 File Exchange에서 Video Formats and Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!