I have this simple python script using OpenCV to load images from a folder and display them in a loop. I want to reproduce this effect using matplotlib.
matplotlib
<
img = None for f in files: im=pl.imread(f) if img is None: img = pl.imshow(im) else: img.set_data(im) pl.pause(.1) pl.draw()