Ubuntu下使用tensorflow object-detection API
https://github.com/tensorflow/models/tree/master/object_detection
https://github.com/tensorflow/models/issues/1834
https://stackoverflow.com/questions/25340698/importerror-cannot-import-name-imaging
错误1
当运行“ protoc object_detection/protos/*.proto --python_out=.",
出现
object_detection/protos/anchor_generator.proto:11:3: Expected "required", "optio nal", or "repeated".
解决办法
You need to download protoc version 3.3 (already compiled). Used protoc inside bin directory to run this command like this:
tensorflow$ mkdir protoc_3.3
tensorflow$ cd protoc_3.3
tensorflow/protoc_3.3$ wget wget https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip
tensorflow/protoc_3.3$ chmod 775 protoc-3.3.0-linux-x86_64.zip
tensorflow/protoc_3.3$ unzip protoc-3.3.0-linux-x86_64.zip
tensorflow/protoc_3.3$ cd ../models/
tensorflow/protoc_3.3$ /home/jy/tensorflow/protoc_3.3/bin/protoc object_detection/protos/*.proto --python_out=.
错误2
from PIL import Image
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/usr/local/lib/python3/dist-packages/PIL/Image.py", line 61, in <module>
ImportError: cannot import name _imaging
在/usr/local/lib/python2.7/dist-packages/ 目录下删除 "PIL"和 Pillow .egg 重新安装 Pillow.
如果还不行
apt-get install python-imaging