gpt4 book ai didi

python - 将 Numpy 矩阵显示为视频

转载 作者:行者123 更新时间:2023-11-28 22:54:51 27 4
gpt4 key购买 nike

我有一个 numpy 矩阵,其中每一行都是一张图片。我可以使用 matplotlib.pyplot reshape 行并显示图像。问题是:我不想单独显示图像,我想像视频一样依次显示它们。

这在 python 中怎么可能?

最佳答案

好吧,我不知道这是否是最好的方法,但我已经使用 matplotlib.pyplot 来解决我的问题。将其导入为“plt”并执行以下操作:

matrix=numpy.genfromtxt(path,delimiter=',') # Read the numpy matrix with images in the rows
c=matrix[0]
c=c.reshape(120, 165) # this is the size of my pictures
im=plt.imshow(c)
for row in matrix:
row=row.reshape(120, 165) # this is the size of my pictures
im.set_data(row)
plt.pause(0.02)
plt.show()

关于python - 将 Numpy 矩阵显示为视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17541449/

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