摘要: 如果遇到问题: __main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 解决方案: 在程序中增加一条语句: import ma 阅读全文
posted @ 2020-01-21 12:29 重大的小鸿 阅读(4797) 评论(0) 推荐(1) 编辑
摘要: 将多张图显示在一张图像上 import matplotlib.pyplot as plt images.shape [20,512,512] for i in range(20): plt.subplot(4 , 5 , i+1) plt.imshow(images[i, :, :] # 通过for 阅读全文
posted @ 2020-01-21 11:19 重大的小鸿 阅读(6258) 评论(0) 推荐(0) 编辑