0

我在 MATLAB 中制作了两部电影,我试图将它们都放在同一个图中,并将结果保存为 AVI 文件。

我了解如何使用该subplot()功能,但由于某种原因它无法正常显示。到目前为止,我的尝试是这样的;

f(count) = im2frame(uint8(newpic));
g(count) = im2frame(uint8(newpic));
subplot(1,2,1),movie(f,10,3); axis off; title('Damaged Image','fontweight','bold');
subplot(1,2,2),movie(g,10,3); axis off; title('Recreated Image','fontweight','bold');
movie2avi(f,'mov.avi','compression','None');
movie2avi(g,'mov.avi','compression','None');

但是生成的图形显示不正确,我实际上不知道如何将该图形保存为 AVI,我只知道如何保存单个文件。

任何帮助将不胜感激,在此先感谢!

4

1 回答 1

1

您可以使用捕获图形的内容getframe并将其添加到电影中。
使用示例代码getframe

Z = peaks;
figure('Renderer','zbuffer');
subplot(1,2,1)
surf(Z);title('first plot')
axis tight;
set(gca,'NextPlot','replaceChildren');
subplot(1,2,2);
surf(-Z);title('second plot')
axis tight;
set(gca,'NextPlot','replaceChildren');
for jj = 1:20
    subplot(1,2,1);
    surf(sin(2*pi*jj/20)*Z,Z)
    subplot(1,2,2);
    surf( -sin(2*pi*jj/20)*Z,Z);
    F(jj) = getframe;
end
movie2avi(F, 'mymov.avi', 'Compression','none');
于 2013-05-11T18:32:59.833 回答