我正在尝试为导入的图像添加比例。我已经得到了定义图像范围(我想要比例表示)。当我运行下面的代码时,x轴的刻度从0,20,-20,-40,40开始。我希望刻度表示x轴的完整范围。我是否需要单独导入另一个库才能实现这一目标?
from PIL import Image
import matplotlib.pyplot as plt
img= Image.open("image.png")
plt.imshow(img, extent=(-55.0,55.0,0,5));
axes = plt.gca()
axes.set_xlim([-55.0,55.0])
axes.get_yaxis().set_visible(False)
plt.xlabel('Vs - Vs_mean (m/s)', size=8)
另外,我仍然是python的新手,我仍在尝试找出库。我已经阅读了matplotlib.ticker,这可能是一个诽谤,但我不确定matplotlib.ticker和matplotlib.pyplot如何相互作用。在转到matplotlib.ticker之前,我是否需要在定义范围后将图像保存为不同的图像?
感谢您的时间,非常感谢。