Hide figure while using geframe/videowriter function
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using the function getframe in order to obtain frames from a figure and the videowriter to create a video from those frames. I need to hide the figure during the process. I used the command set(gcf,'visible','off') but the process stops with an error message popping up. It states that the frames obtained from the function getframe are not of the same size. Is there a solution or another way to overcome this problem? Thanks in advance.
0 comentarios
Respuestas (1)
Ameer Hamza
el 25 de Abr. de 2020
Editada: Ameer Hamza
el 25 de Abr. de 2020
Call getframe with the axes handle
frame = getframe(gca); % gca is the current axes handle
It will only return the image of the axes.
8 comentarios
Ameer Hamza
el 27 de Abr. de 2020
Can you write a small code snippet which gives an error with videoWriter?
Ver también
Categorías
Más información sobre Animation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!