I have the following code snippet:
X=[]
for val in range(64):
ap_pix=amp_phas[:,val]
im=plt.imshow(ap_pix.reshape(50,50),cmap=plt.get_cmap('plasma'))
X.append(im)
amp_phas is a (2500 x 64) array so that each step of the loop creates a 50 x 50 image that is stored into the array X. I am using Python 3 in Jupyter notebook.
How can I create a movie or a slide show from the array X?
I was able to resolve this using imageio and mimsave.
Here is my final code:
The frame rate of the gif can be adjusted in the following way: