显示已加载图像文件的x,y坐标

时间:2017-03-29 13:21:45

标签: python matplotlib

我需要使用matplotlib加载图像文件并查看其中的点坐标,就像它是一个简单的x,y散点图一样。

enter image description here

我可以假设x轴扩展为[0, 1],y轴遵循相同的缩放。我可以用

加载上面的图像文件
from PIL import Image
im = Image.open("del.png")
im.show()

但是这使用ImageMagick(我在Linux系统上)来显示图像,并且在绘图窗口的左下角没有显示坐标,就像简单的数据图一样:

enter image description here

1 个答案:

答案 0 :(得分:2)

使用pyplot:

from matplotlib import pyplot as plt
plt.imshow(plt.imread('del.png'))