如何在张量流中访问检测到的对象的名称?

时间:2018-09-28 05:11:08

标签: python tensorflow

我正在尝试通过此代码在实时流中访问检测到的对象名称,

https://github.com/datitran/object_detector_app/blob/master/object_detection_app.py

我尝试了以下代码

print [category_index.get(value) for index,value in enumerate(classes[0]) if scores[0,index] > 0.5]

输出如下:

enter image description here

如何访问人员数据?

1 个答案:

答案 0 :(得分:1)

从visualisation_utils.py文件获取类名,然后可以轻松获取数据。