我有一个numpy矩阵,每行都是一张图片。我可以重塑行并使用matplotlib.pyplot显示图像。问题是:我不想单独显示图像,我想像视频一样在彼此之后显示它们。
在python中怎么可能?
答案 0 :(得分:4)
好吧,我不知道这是不是最好的方法,但我用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()