我有一个代码可以在图像上绘制数百个小矩形:
矩形是
的实例 matplotlib.patches.Rectangle
我想在这些矩形中添加一个文本(实际上是一个数字),我不知道如何做到这一点。 matplotlib.text.Text似乎允许插入一个矩形包围的文本但是我希望矩形处于一个精确的位置并具有精确的大小,我不认为可以用text()来完成。< / p>
答案 0 :(得分:23)
我认为您需要使用轴对象的annotate方法。
您可以使用矩形的属性来了解它。这是一个玩具示例:
import matplotlib.pyplot as plt
import matplotlib.patches as mpatch
fig, ax = plt.subplots()
rectangles = {'skinny' : mpatch.Rectangle((2,2), 8, 2),
'square' : mpatch.Rectangle((4,6), 6, 6)}
for r in rectangles:
ax.add_artist(rectangles[r])
rx, ry = rectangles[r].get_xy()
cx = rx + rectangles[r].get_width()/2.0
cy = ry + rectangles[r].get_height()/2.0
ax.annotate(r, (cx, cy), color='w', weight='bold',
fontsize=6, ha='center', va='center')
ax.set_xlim((0, 15))
ax.set_ylim((0, 15))
ax.set_aspect('equal')
plt.show()