Avi produced using writeVideo is clipped.

9 visualizaciones (últimos 30 días)
David
David el 13 de Mzo. de 2025
Comentada: David el 14 de Mzo. de 2025
A structure generated with multiple getframe commands within a for loop displays correctly when using a movie command within Matlab, The avi produced using writeVideo is clipped outside the axes of the 2D plot.
  2 comentarios
Walter Roberson
Walter Roberson el 13 de Mzo. de 2025
Do you happen to be using MATLAB on a Mac Silicon ?
David
David el 13 de Mzo. de 2025
Movida: Voss el 13 de Mzo. de 2025
No, just a windows PC

Iniciar sesión para comentar.

Respuesta aceptada

DGM
DGM el 14 de Mzo. de 2025
Editada: DGM el 14 de Mzo. de 2025
I think I see what's going on here, and it is easily misleading. I assume that this example will replicate the effect you're seeing.
You capture some frames and then you view the result using movie():
nframes = 10;
x = linspace(100,200,10); % note the span of x and y are 100-200
for k = 1:nframes
y = 100*rand(10,1) + 100; % some fake data
if k == 1
hp = plot(x,y);
else
hp.YData = y;
end
S(k) = getframe(gca);
end
movie(S)
Obviously, I can't really run movie() here, but at least this static frame should be what you'd expect from the call to movie -- it looks just like it did when the frames were being plotted and captured. You then write the captured frames to disk, and all of a sudden, the plot box and ticklabels are gone.
vidObj = VideoWriter('blah.avi');
open(vidObj);
for k = 1:numel(S)
thisframe = S(k);
writeVideo(vidObj,thisframe);
end
close(vidObj);
In order to see what's going on, we can make one simple change. Before calling movie(), let's clear the figure.
clf
movie(S)
Notice that the x and y axes now only span the unit interval. What's happening is that movie() is simply inheriting whatever the prior XLim, YLim are from when the axes was last used. If we clear the figure, it just uses [0 1] as the default. So when you run movie(), you actually are seeing that the frames are cropped as the AVI file shows. The tick labels aren't part of the captured frames. They're just left over from plotting.
The way to fix the issue should be to capture the parent figure instead of just the axes in the call to getframe(), something like:
S(k) = getframe(gcf); % capture the figure, not just the axes
... or whatever figure handle refers to the intended target.

Más respuestas (0)

Productos


Versión

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by