type
Post
status
Published
date
Mar 12, 2023 02:34 AM
slug
summary
tags
图像编程
category
工作学习
icon
fas fa-trophy-alt
password
一直在pycharm中用jupyter 正常跑的code如下, 但在pycharm用py格式跑, 就无法出图.
最后发现最后一行要加一句
plt.show
import matplotlib.pyplot as plt from wand.image import Image original = Image(filename='images/lena.jpg') plt.imshow(original) # plt.show()