Hello all,
I am having issues exporting a video and want to make it high resolution:
vidObj = VideoWriter('moviev.avi');
vidObj.Quality = 100; hold on
figure('units','pixels','position',[30 30 1920 1080]); hold on
for k = 1:numel(whole_ts)-1
plot(whole_ts(k:k+1), ts(k:k+1), '-blue'); hold on
set(gcf,'renderer','Painters'); hold on
frame = getframe(gcf); hold on
writeVideo(vidObj, frame);
I have tried both line 1, 2, and 3 in order to make the output image high resolution - but the avi image still comes out blurry. Do you have any suggestions?
Thanks!