2

How do I get scores for all classes? For example, there is a dog object, with score 0.9. However I also want the cat score for the same object (0.1). How do I get them?

4

1 回答 1

0

当您尝试通过 YOLOv3 获取图片中的对象时,YOLOv3 会为您提供由边界框坐标和每个类别分数组成的数组。

例如,在 COCO 数据集中,它们有狗(第 17 类)、猫(第 16 类)等 80 个对象。

数组会保留所有对象的分数,但通常无法获得所有分数,因为开源代码只会为您提供得分最高的对象。

只需在返回得分最高的对象结果之前检查您的部分代码。

您会在其中找到所有对象分数。

于 2020-01-21T05:39:49.627 回答