考虑以下函数绘制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?
提前谢谢!
答案 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
以获取更多信息。