张量流对象检测限

时间:2018-01-19 04:15:42

标签: object tensorflow limit detection

按照此处的代码:https://github.com/tensorflow/models/blob/master/research/object_detection/object_detection_tutorial.ipynb

无论输入的图像如何,都会检测到20个物体的硬限制。例如:enter image description here

在这篇文章中也可以看到问题:TensorFlow Object Detection API Weird Behavior

是否有一些配置或参数可以更改以提高检测到的对象数量?

编辑:我可以确认检测到超过20个对象,但最终输出中最多显示20个。有没有办法增加这个限制?

enter image description here

1 个答案:

答案 0 :(得分:6)

可以在配置文件中设置最大检测数。默认情况下它通常是300,所以你应该没问题。

此处的问题是显示的检测数。在代码的末尾,您可以拨打vis_util.visualize_boxes_and_labels_on_image_array。只需将max_boxes_to_draw=None添加到其参数中即可显示所有检测项(或根据需要选择更大的数字)。