why doesn't the 'getframe' work?

3 visualizaciones (últimos 30 días)
buaa
buaa el 19 de Dic. de 2011
c_H=figure; H_axes=axes('parent', c_H); Z= hadamard(20); figure(c_H) % pause(1) pcolor(Z) pause(1) f = getframe(H_axes); figure,image(f.cdata)
I am confused,the last picture is nothing.But if I comment the figure(c_H),the code is right. I appreciate who can tell me why.

Respuesta aceptada

Friedrich
Friedrich el 19 de Dic. de 2011
Hi,
seems like an openGL issue. Changing the renderer to painters or zbuffer or opengl software works:
c_H=figure;
H_axes=axes('parent',c_H);
Z= hadamard(20);
figure(c_H)
pcolor(Z)
%set(c_H,'Renderer','painters') %or
%opengl software %or
set(c_H,'renderer','zbuffer')
pause(1)
f = getframe(H_axes);
figure,image(f.cdata)
  1 comentario
buaa
buaa el 19 de Dic. de 2011
thank you very much. It's done. But the 'painters' is so slow,I used 'zbuffer'.
thank you!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by