Object Detection Realtime Using Tensorflow
Im trying to detect objects in realtime using tensorflow. . I ran jupyter notebook in object_detection directory. then I opened the notebook file. It is firing the following error
Solution 1:
A little google search would already help or just reading the Readme...
You forgot to run this:
#From tensorflow/models/
protoc object_detection/protos/*.proto --python_out=.
Solution 2:
follow readme in g3doc named as installation.md.
export your path by running command
"export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/slim"by being in research folder
# From tensorflow/models/research/
OPTIONALLY: after running the above command you can try to run notebook from different folder by copying it to right directory such that its pointing correctly to utils folder
Post a Comment for "Object Detection Realtime Using Tensorflow"