是否有可能将标签位置从上到下移动?

问题描述 投票:0回答:1

我正在使用tensorflow对象检测api来查找某些图像中的一些对象。这个对象彼此非常接近。

有没有可能移动班级的标签并从盒子顶部到底部?我无法清楚地看到分数,我总是需要在日志文件中检查它们。

这是我正在谈论的检测盒,你可以看到标签在顶部。

Link to image

tensorflow label object-detection-api
1个回答
1
投票

是的,只需修改绘图功能即可将标签移到底部。

具体来说,您需要修改的功能就是这个one

if top > total_display_str_height:
    text_bottom = top
else:
    text_bottom = bottom + total_display_str_height

将上面的行修改为

text_bottom = bottom + total_display_str_height

您将看到标签打印在边界框的底部。

我自己尝试过,这是结果。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.