├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app_ic.py ├── config ├── __init__.py └── config.py ├── data ├── label.pbtxt └── synset.txt ├── lib ├── __init__.py ├── label_map_util.py └── string_int_label_map_pb2.py ├── models ├── __init__.py ├── object_detection.py └── vgg16.py ├── services ├── __init__.py └── data.py ├── setup.sh └── test_images ├── 1.jpg └── 2.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/app.py -------------------------------------------------------------------------------- /app_ic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/app_ic.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/config/config.py -------------------------------------------------------------------------------- /data/label.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/data/label.pbtxt -------------------------------------------------------------------------------- /data/synset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/data/synset.txt -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/label_map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/lib/label_map_util.py -------------------------------------------------------------------------------- /lib/string_int_label_map_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/lib/string_int_label_map_pb2.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/models/object_detection.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/services/data.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/setup.sh -------------------------------------------------------------------------------- /test_images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/test_images/1.jpg -------------------------------------------------------------------------------- /test_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-object-detection/HEAD/test_images/2.jpg --------------------------------------------------------------------------------