Using getframe in Matlab on Windows

前端 未结 1 613
无人共我
无人共我 2021-01-23 12:29

I used the code which I asked about here but added in the final loop the ani(ii)=getframe; and after the loop movie2avi(ani, \'orbeeit.avi\', \'compressi

相关标签:
1条回答
  • 2021-01-23 12:55

    This problem is probably caused by Windows Vista (and newer) in conjunction with certain graphics drivers as described in this bug report.

    You can change the renderer after you created the figure:

    set(gcf,'Renderer','zbuffer');
    

    Or

    opengl('software');
    
    0 讨论(0)
提交回复
热议问题