Axes resolution problems using VideoWriter
2 次查看(过去 30 天)
显示 更早的评论
I'm facing some issues trying to improve the resolution of graph axes when creating an .avi file. Each frame in the file consists of a bar graph, where the horizontal axes labels involve text, e.g. "1A", "2A",...."44E" and where no label consists of more than 3 characters.
I start with the following:
writerObj = VideoWriter('awesome.avi');
writeObj.FrameRate=.1;
writeObj.Quality=100;
open(writerObj);
Within a loop I create each bar graph and add the frame to the video frame sequence:
frame=getframe(gcf);
writeVideo(writerObj,frame);
After the loop I close the writer object:
close(writerObj);
Everything works fine in terms of creating the video, but the resolution of the text on the horizontal axes, when I play back in either Windows Media Player (on my PC) or QuickTimePlayer (on my MAC) isn't yet satisfactory. I've tried adjusting the font size and using .mp4 format as well but to no avail.
Each frame in the video consists of a bar graph surrounded by a grey border. If I could just "stretch" the graph horizontally within the border, I'd be fine.
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!