Matlab:如何将动画情节保存到gif

时间:2017-02-09 09:34:31

标签: matlab gif

考虑以下函数绘制cicloid的动画图。

function animate1()
    clear, clc

    R = 1; 
    na = -pi/2; 
    t = 0:0.05:6;
    v = 4; 

    for i = 1:length(t)
        x0 = v*t(i); 
        y0 = R;
        na = -v*t(i)/R; 
        fi = linspace(na,na+2*pi,100); 
        x = x0 + R*cos(fi); 
        y = y0 + R*sin(fi);

        xc(i) = x0 + R*cos(na);
        yc(i) = y0 + R*sin(na);

        plot(x,y,'b',... 
            xc(i),yc(i),'*m',... 
            xc,yc,'r') 
        axis([-1 25 0 1.5])
        axis equal
        pause(0.01)
    end

是否可以以输出动画图的方式修改代码,例如到gif?

提前谢谢!

1 个答案:

答案 0 :(得分:6)

是的,imwrite确实支持动画GIF。与AVI视频一样,您可以依次通过getframe抓取帧。然后将它们传递给imwrite但是对于GIF,您必须先将它们从RGB转换为256色图。像这样:

for i = 1:nFrames

    % draw stuff

    frame = getframe(gcf);
    img =  frame2im(frame);
    [img,cmap] = rgb2ind(img,256);
    if i == 1
        imwrite(img,cmap,'animation.gif','gif','LoopCount',Inf,'DelayTime',1);
    else
        imwrite(img,cmap,'animation.gif','gif','WriteMode','append','DelayTime',1);
    end
end

请查看openExample('matlab/WriteAnimatedGIFExample')doc imwrite以获取更多信息。