gpt4 book ai didi

python - 保存 mayavi 动画

转载 作者:太空宇宙 更新时间:2023-11-03 11:04:04 24 4
gpt4 key购买 nike

我目前正在尝试保存由我的模拟生成的 mayavi 动画,因此我不必每次都重新运行代码来查看它。

plt = points3d(x_coord, y_coord, z_coord)

msplt = plt.mlab_source
@mlab.animate(delay=100)
def anim():
f = mlab.gcf()
while True:
#animation updates here
msplt.set(x = x_coord, y = y_coord, z = z_coord)

yield


anim()
mlab.savefig(filename = 'ani.mp4')
mlab.show()

我已经尝试通过流水线编辑器保存它,只得到它所在帧的静止图像,而 mlab.savefig 不会生成文件。任何帮助表示赞赏。

最佳答案

以下将适用于查看动画、将每一帧保存为“png”,然后将它们转换为电影,但在这种情况下,放弃播放动画并循环播放动画可能是最快的数据保存图形,然后使用此方法制作视频。

from mayavi import mlab
import numpy as np
import os

# Output path for you animation images
out_path = './'
out_path = os.path.abspath(out_path)
fps = 20
prefix = 'ani'
ext = '.png'

# Produce some nice data.
n_mer, n_long = 6, 11
pi = np.pi
dphi = pi/1000.0
phi = np.arange(0.0, 2*pi + 0.5*dphi, dphi, 'd')
mu = phi*n_mer
x = np.cos(mu)*(1+np.cos(n_long*mu/n_mer)*0.5)
y = np.sin(mu)*(1+np.cos(n_long*mu/n_mer)*0.5)
z = np.sin(n_long*mu/n_mer)*0.5

# Init plot
plt = mlab.points3d(x[0], y[0], z[0])

padding = len(str(len(x)))

# Define data source and update routine
msplt = plt.mlab_source
@mlab.animate(delay=10)
def anim():
f = mlab.gcf()
for i in range(len(x)):
#animation updates here
msplt.set(x=x[i], y=y[i], z=z[i])

# create zeros for padding index positions for organization
zeros = '0'*(padding - len(str(i)))

# concate filename with zero padded index number as suffix
filename = os.path.join(out_path, '{}_{}{}{}'.format(prefix, zeros, i, ext))

mlab.savefig(filename=filename)

yield

anim()
mlab.view(distance=15)
mlab.show()

import subprocess
ffmpeg_fname = os.path.join(out_path, '{}_%0{}d{}'.format(prefix, padding, ext))
cmd = 'ffmpeg -f image2 -r {} -i {} -vcodec mpeg4 -y {}.mp4'.format(fps,
ffmpeg_fname,
prefix)
print cmd
subprocess.check_output(['bash','-c', cmd])

# Remove temp image files with extension
[os.remove(f) for f in os.listdir(out_path) if f.endswith(ext)]

关于python - 保存 mayavi 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24958669/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com