我有我的形象 如何使用MATPLOTLIB設置標籤?
然後我嘗試這種
#!/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,然後新的圖像保存爲一個文件?
Ovren是的,工作正常! –