Python matplotlib图像+点图

时间:2014-06-20 10:02:38

标签: python image matplotlib plot overlay

我想在图像上绘制一些点,并且我使用以下代码:

fig, ax = plt.subplots(1)
ax.imshow(img)
ax.plot(newModel[:, 0], newModel[:, 1])
ax.set_title("Model tooth " + str(model_number) + ": new model after " + str(it_count) + " iterations")
fig.savefig("Fit_models/" + str(file_number) + "_model_" + str(model_number) + "_newModel.png")

它有效,但结果如下:

enter image description here

我希望轴从0到图像形状而不是从-500开始。 另外,我更喜欢这个可以保存在图像的全分辨率上,而不是800x600上。

1 个答案:

答案 0 :(得分:1)

对于您可以使用的限制:

ax.set_xlim([xmin, xmax])
ax.set_ylim([ymin, ymax])

对于分辨率,您可以使用dpi关键字:

fig.savefig(fname, dpi=400)

您可以调整dpi以获得所需的分辨率。