I want to plot multiple images on the same graph in python using FigureCanvasTkAgg.When using matplotlib I could use {import matplotlib.pyplot as plt} plt.imshow(image1) ; plt.pause(0.6) ; plt.imshow(image2)
Since I use Tkinter,I make use of FigureCanvasTkAgg to do the same
`f = Figure(figsize=(6,6))
a = f.add_subplot(111)
image = np.array(np.random.random((1024,1024))*100,dtype=int)
a.imshow(image)
canvas = FigureCanvasTkAgg(f, self)
canvas.show()
canvas.get_tk_widget().pack(side=tk.BOTTOM, fill=tk.BOTH, expand=True)`
Could anyone please help me in how to achieve pause effect of matplotlib in FigureCanvasTkAgg.