gpt4 book ai didi

python - 如何使用 MATPLOTLIB 设置标签?

转载 作者:太空宇宙 更新时间:2023-11-04 03:18:00 25 4
gpt4 key购买 nike

我有我的头像 enter image description here

那我试试这个

   #!/usr/bin/python
import os,sys
import Image
import matplotlib.pyplot as plt

jpgfile = Image.open("t002.jpg")
fig = plt.imshow(jpgfile)
ax = fig.add_subplot(111)
ax.set_xlabel('normlized resistivities')
ay.set_ylabel('normlized velocities')
fig.savefig("fig.jpg")

但是我有

AttributeError: 'AxesImage' object has no attribute 'add_subplot'

如何设置 xlabel 和 ylabel,然后将新图像保存为文件?

最佳答案

简单的做就够了

plt.figure()
plt.imshow(jpgfile)
plt.xlabel('normlized resistivities')
plt.ylabel('normlized velocities')
plt.savefig('out.jpg')

您当前的错误是因为 imshow 没有返回 Figure

关于python - 如何使用 MATPLOTLIB 设置标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35605732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com