我正在尝试使用 imageio 创建 GIF。这相当简单;但是,图像质量很差。它们似乎是内插的。见下图。
我正在使用下面显示的代码创建 GIF。我已经尝试跟踪源代码中图像的生成方式,问题似乎来自 PIL。
from PIL import Image
import imageio
import numpy as np
import matplotlib.pyplot as plt
outdir = r"where/you/want/it/to/go.gif"
frames = np.round(100+20*np.random.randn(10, 40, 40)).astype(np.uint8)
# Create single gif frame with PIL
im = Image.fromarray(frames[0])
im.save(outdir)
# Create gif with imageio
imageio.mimsave(outdir, frames)
我想要一个看起来像我用matplotlib
. 底部的图像是使用imageio
.