Tensorflow-Object-Detection

Tensorflow object detection tutorial
Ubuntu18.04 / Python3.6.7
https://github.com/tensorflow/models/tree/master/research/object_detection

1. Install Dependencies

Tensorflow Object Detection API depends on the following libraries:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1. Protobuf 3.0.0 - refer to: https://askubuntu.com/questions/1072683/how-can-i-install-protoc-on-ubuntu-16-04
OR ---- sudo apt install protobuf-compiler

2. Python-tk
sudo apt-get install python-tk

3. Pillow 1.0
pip3 install Pillow

4. lxml
sudo apt install python-lxml

5. tf Slim (which is included in the "tensorflow/models/research/" checkout)

6.Jupyter notebook
pip3 install jupyter

7. Matplotlib
pip3 install matplotlib

8. Tensorflow (>=1.12.0)
pip3 install tensorflow

9. Cython
pip3 install cython

10. contextlib2
pip3 install tox`

11. cocoapi
https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md

2. git clone https://github.com/tensorflow/models into your tensorflow install location

3. Protobuf Compilation

4. kupyter notebook and run