保存mayavi动画

2024-05-17 02:53:52 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试保存一个由我的模拟生成的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()

我试着通过pipleline编辑器保存它,只是得到了它所在帧的一个静止状态,然后mlab.savefig公司不会生成文件。感谢任何帮助。在


Tags: 代码sourcedef动画pltgcfmayavidelay
1条回答
网友
1楼 · 发布于 2024-05-17 02:53:52

以下两种方法都适用于观看动画,将每一帧保存为“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)]

相关问题 更多 >