欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python: matplotlib的使用

程序员文章站 2024-03-26 12:46:35
...

1.如何在已有的图像上绘点

# img是PIL.Image或者np.array都可以
plt.imshow(img)
# 一些点
x = [box[0][0],box[1][0],box[2][0],box[3][0],]
y = [box[0][1],box[1][1],box[2][1],box[3][1],]
# 使用红色星状标记绘制点
plt.plot(x,y,'r*')
# 绘制连接前两个点的线
plt.plot(x[:2],y[:2])
plt.axis('off')
plt.savefig(img_pth, bbox_inches='tight')
plt.close()