├── .gitignore ├── LICENSE ├── README.md ├── data ├── .gitignore ├── images │ ├── test │ │ ├── 10.jpg │ │ ├── 10.xml │ │ ├── 15.jpg │ │ └── 15.xml │ └── train │ │ ├── 0.jpg │ │ ├── 0.xml │ │ ├── 1.jpg │ │ ├── 1.xml │ │ ├── 11.jpg │ │ ├── 11.xml │ │ ├── 12.jpg │ │ ├── 12.xml │ │ ├── 13.jpg │ │ ├── 13.xml │ │ ├── 14.jpg │ │ ├── 14.xml │ │ ├── 16.jpg │ │ ├── 16.xml │ │ ├── 17.jpg │ │ ├── 17.xml │ │ ├── 2.jpg │ │ ├── 2.xml │ │ ├── 3.jpg │ │ ├── 3.xml │ │ ├── 4.jpg │ │ ├── 4.xml │ │ ├── 5.jpg │ │ ├── 5.xml │ │ ├── 6.jpg │ │ ├── 6.xml │ │ ├── 7.jpg │ │ ├── 7.xml │ │ ├── 8.jpg │ │ ├── 8.xml │ │ ├── 9.jpg │ │ └── 9.xml └── raw │ └── .gitignore ├── deploy ├── .gitignore ├── deploy_utils.py ├── openvino_convert_tf_object_detection.ipynb └── openvino_inference_benchmark.py ├── generate_tfrecord.py ├── local_inference_test.ipynb ├── local_inference_test.py ├── requirements.txt ├── resize_images.py ├── tensorflow_object_detection_training_colab.ipynb ├── test ├── 0.jpg ├── 10.jpg └── 15.jpg └── xml_to_csv.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | annotations/* -------------------------------------------------------------------------------- /data/images/test/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/test/10.jpg -------------------------------------------------------------------------------- /data/images/test/10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/test/10.xml -------------------------------------------------------------------------------- /data/images/test/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/test/15.jpg -------------------------------------------------------------------------------- /data/images/test/15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/test/15.xml -------------------------------------------------------------------------------- /data/images/train/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/0.jpg -------------------------------------------------------------------------------- /data/images/train/0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/0.xml -------------------------------------------------------------------------------- /data/images/train/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/1.jpg -------------------------------------------------------------------------------- /data/images/train/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/1.xml -------------------------------------------------------------------------------- /data/images/train/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/11.jpg -------------------------------------------------------------------------------- /data/images/train/11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/11.xml -------------------------------------------------------------------------------- /data/images/train/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/12.jpg -------------------------------------------------------------------------------- /data/images/train/12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/12.xml -------------------------------------------------------------------------------- /data/images/train/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/13.jpg -------------------------------------------------------------------------------- /data/images/train/13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/13.xml -------------------------------------------------------------------------------- /data/images/train/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/14.jpg -------------------------------------------------------------------------------- /data/images/train/14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/14.xml -------------------------------------------------------------------------------- /data/images/train/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/16.jpg -------------------------------------------------------------------------------- /data/images/train/16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/16.xml -------------------------------------------------------------------------------- /data/images/train/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/17.jpg -------------------------------------------------------------------------------- /data/images/train/17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/17.xml -------------------------------------------------------------------------------- /data/images/train/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/2.jpg -------------------------------------------------------------------------------- /data/images/train/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/2.xml -------------------------------------------------------------------------------- /data/images/train/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/3.jpg -------------------------------------------------------------------------------- /data/images/train/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/3.xml -------------------------------------------------------------------------------- /data/images/train/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/4.jpg -------------------------------------------------------------------------------- /data/images/train/4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/4.xml -------------------------------------------------------------------------------- /data/images/train/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/5.jpg -------------------------------------------------------------------------------- /data/images/train/5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/5.xml -------------------------------------------------------------------------------- /data/images/train/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/6.jpg -------------------------------------------------------------------------------- /data/images/train/6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/6.xml -------------------------------------------------------------------------------- /data/images/train/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/7.jpg -------------------------------------------------------------------------------- /data/images/train/7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/7.xml -------------------------------------------------------------------------------- /data/images/train/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/8.jpg -------------------------------------------------------------------------------- /data/images/train/8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/8.xml -------------------------------------------------------------------------------- /data/images/train/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/9.jpg -------------------------------------------------------------------------------- /data/images/train/9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/images/train/9.xml -------------------------------------------------------------------------------- /data/raw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/data/raw/.gitignore -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/deploy/.gitignore -------------------------------------------------------------------------------- /deploy/deploy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/deploy/deploy_utils.py -------------------------------------------------------------------------------- /deploy/openvino_convert_tf_object_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/deploy/openvino_convert_tf_object_detection.ipynb -------------------------------------------------------------------------------- /deploy/openvino_inference_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/deploy/openvino_inference_benchmark.py -------------------------------------------------------------------------------- /generate_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/generate_tfrecord.py -------------------------------------------------------------------------------- /local_inference_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/local_inference_test.ipynb -------------------------------------------------------------------------------- /local_inference_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/local_inference_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tensorflow 3 | matplotlib -------------------------------------------------------------------------------- /resize_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/resize_images.py -------------------------------------------------------------------------------- /tensorflow_object_detection_training_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/tensorflow_object_detection_training_colab.ipynb -------------------------------------------------------------------------------- /test/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/test/0.jpg -------------------------------------------------------------------------------- /test/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/test/10.jpg -------------------------------------------------------------------------------- /test/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/test/15.jpg -------------------------------------------------------------------------------- /xml_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/object_detection_demo/HEAD/xml_to_csv.py --------------------------------------------------------------------------------