我有以下Python代码,该代码在检测到的段周围添加了一个边框
%matplotlib qt
fig, ax = plt.subplots(figsize=(10, 6))
ax.imshow(image_label_overlay)
for region in regions:
# take regions with large enough areas
if region.area >= 100:
# draw rectangle around segmented coins
minr, minc, maxr, maxc = region.bbox
rect = mpatches.Rectangle((minc, minr), maxc - minc, maxr - minr,
fill=False, edgecolor='red', linewidth=2)
ax.add_patch(rect)
ax.set_axis_off()
plt.tight_layout()
plt.show()
我不想绘制边界框,而是要对段进行编号。即我想在每个分段的中心添加一个数字。我该怎么办?
答案 0 :(得分:0)
plt.text(x, y, s, bbox=dict(fill=False, edgecolor='red', linewidth=2))
,其中x
是x轴的坐标,而y
是y轴的坐标。 s
是您要写入情节的字符串。
bbox让我们同时拥有一个文本和一个矩形。 bbox
需要一个具有Rectangle属性(https://matplotlib.org/api/_as_gen/matplotlib.patches.Rectangle.html#matplotlib.patches.Rectangle)的字典,您已经在代码中使用了它。