Does imshow animation work with the qt-backend? The following works fine in non-qt but does not animate using qt - just shows the last frame:
img = standard_normal((40,40))
image =imshow(img,interpolation='nearest',animated=True)
for k in range(1,10):
img = standard_normal((40,40))
image.set_data(img)
draw()