Why does the GETFRAME function return a gray frame within MATLAB on an OS X 10.3.2 machine?
2 ビュー (過去 30 日間)
古いコメントを表示
Why does the GETFRAME function return a gray frame within MATLAB on an OS X 10.3.2 machine?
I have upgraded to OS X 10.3.2, which includes updates for ATI and NVidia graphics drivers. Now, when I capture frames of a figure using the OpenGL renderer with GETFRAME, the frames' color data is all gray.
採用された回答
MathWorks Support Team
2009 年 6 月 27 日
This bug has been fixed in Release 14 Service Pack 3 (R14SP3). For previous product releases, read below for any possible workarounds:
This is a bug in the GETFRAME function within MATLAB when using an OS X 10.3.2 machine.
Currently, to workaround this issue, change the "Renderer" property of the figure to "painters" or "zbuffer" before using GETFRAME to capture the frame.
set(gcf,'Renderer','painters')
set(gcf,'Renderer','zbuffer')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Graphics Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!