├── .gitignore ├── LICENSE ├── README.md ├── Tutorial_Faster_RCNN.ipynb ├── Tutorial_Mobilenet.ipynb ├── data ├── .gitignore └── FYI.txt ├── 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 └── xml_to_csv.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial_Faster_RCNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/Tutorial_Faster_RCNN.ipynb -------------------------------------------------------------------------------- /Tutorial_Mobilenet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/Tutorial_Mobilenet.ipynb -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | annotations/* -------------------------------------------------------------------------------- /data/FYI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/data/FYI.txt -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/deploy/.gitignore -------------------------------------------------------------------------------- /deploy/deploy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/deploy/deploy_utils.py -------------------------------------------------------------------------------- /deploy/openvino_convert_tf_object_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/deploy/openvino_convert_tf_object_detection.ipynb -------------------------------------------------------------------------------- /deploy/openvino_inference_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/deploy/openvino_inference_benchmark.py -------------------------------------------------------------------------------- /generate_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/generate_tfrecord.py -------------------------------------------------------------------------------- /local_inference_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/local_inference_test.ipynb -------------------------------------------------------------------------------- /local_inference_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/local_inference_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tensorflow 3 | matplotlib -------------------------------------------------------------------------------- /resize_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/resize_images.py -------------------------------------------------------------------------------- /tensorflow_object_detection_training_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/tensorflow_object_detection_training_colab.ipynb -------------------------------------------------------------------------------- /xml_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/tensorflow-object-detection-faster-rcnn/HEAD/xml_to_csv.py --------------------------------------------------------------------------------