在Jupyter笔记本之外显示绘图图像有几种常见的方法:
savefig
函数将图像保存为PNG、JPEG、PDF等格式,然后使用其他图像查看器打开。以下是一个示例代码:import matplotlib.pyplot as plt
# 绘制图像
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
# 保存图像
plt.savefig('plot.png')
from PIL import Image
import numpy as np
# 创建图像数据
data = np.random.randint(0, 255, (100, 100), dtype=np.uint8)
image = Image.fromarray(data)
# 保存图像
image.save('image.png')
import cv2
import numpy as np
# 创建图像数据
data = np.random.randint(0, 255, (100, 100), dtype=np.uint8)
# 保存图像
cv2.imwrite('image.png', data)
以上是几种常见的在Jupyter笔记本之外显示绘图图像的方法。根据具体需求和使用场景,可以选择适合的方法来保存和查看图像。
领取专属 10元无门槛券
手把手带您无忧上云