参见英文答案 >
Can I generate and show a different image during each loop with Matplotlib?1个
我想在Matplotlib中显示多个图形.这是我的代码:
我想在Matplotlib中显示多个图形.这是我的代码:
for i in range(8): a = sitk.ReadImage("000%d.IMA"%(i+1)) ... plt.figure(i+1) plt.imshow(a_np,cmap=plt.cm.gray)
但是,图(1)至图(7)将在过程中显示,但只有图(8)保持在最后.我怎样才能同时看到所有数字?
当我将环境改为spyder时,我的环境是Ipython笔记本,这让我很困惑.