【发布时间】:2017-12-21 18:10:51
【问题描述】:
我正在尝试使用 tensorflow 实时检测对象。 .我在object_detection 目录中运行jupyter notebook。然后我打开了笔记本文件。它正在触发以下错误
我收到以下错误
---------------------------------------------------------------------------
ImportError Traceback (most recent call last) <ipython-input-7-956de605e8fe> in <module>()
----> 1 from utils import label_map_util
2
3 from utils import visualization_utils as vis_util
C:\Users\Documents\models-master\models-master\object_detection\utils\label_map_util.py in <module>()
20 import tensorflow as tf
21 from google.protobuf import text_format
---> 22 from object_detection.protos import string_int_label_map_pb2
23
24
ImportError: cannot import name 'string_int_label_map_pb2'
如何在 windows 中使用 tensorflow 进行实时对象检测?
【问题讨论】:
标签: python tensorflow object-detection