├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── conda-cpu.yml ├── conda-gpu.yml ├── data ├── fonts │ └── futur.ttf ├── helpers │ ├── app_running.PNG │ ├── custom_app.PNG │ ├── detections_api_config.PNG │ ├── detections_api_response.PNG │ ├── image_api_config.PNG │ ├── image_api_response.PNG │ └── model_config.PNG ├── images │ ├── dog.jpg │ ├── meme.jpg │ └── office.jpg ├── labels │ └── coco.names └── video │ ├── paris.mp4 │ └── video.mp4 ├── detect.py ├── detect_video.py ├── detections ├── detection.jpg ├── detection1.jpg ├── detection2.jpg └── detection3.jpg ├── load_weights.py ├── requirements-gpu.txt ├── requirements.txt ├── weights └── .gitkeep └── yolov3_tf2 ├── batch_norm.py ├── dataset.py ├── models.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/app.py -------------------------------------------------------------------------------- /conda-cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/conda-cpu.yml -------------------------------------------------------------------------------- /conda-gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/conda-gpu.yml -------------------------------------------------------------------------------- /data/fonts/futur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/fonts/futur.ttf -------------------------------------------------------------------------------- /data/helpers/app_running.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/app_running.PNG -------------------------------------------------------------------------------- /data/helpers/custom_app.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/custom_app.PNG -------------------------------------------------------------------------------- /data/helpers/detections_api_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/detections_api_config.PNG -------------------------------------------------------------------------------- /data/helpers/detections_api_response.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/detections_api_response.PNG -------------------------------------------------------------------------------- /data/helpers/image_api_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/image_api_config.PNG -------------------------------------------------------------------------------- /data/helpers/image_api_response.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/image_api_response.PNG -------------------------------------------------------------------------------- /data/helpers/model_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/helpers/model_config.PNG -------------------------------------------------------------------------------- /data/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/images/dog.jpg -------------------------------------------------------------------------------- /data/images/meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/images/meme.jpg -------------------------------------------------------------------------------- /data/images/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/images/office.jpg -------------------------------------------------------------------------------- /data/labels/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/labels/coco.names -------------------------------------------------------------------------------- /data/video/paris.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/video/paris.mp4 -------------------------------------------------------------------------------- /data/video/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/data/video/video.mp4 -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detect.py -------------------------------------------------------------------------------- /detect_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detect_video.py -------------------------------------------------------------------------------- /detections/detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detections/detection.jpg -------------------------------------------------------------------------------- /detections/detection1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detections/detection1.jpg -------------------------------------------------------------------------------- /detections/detection2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detections/detection2.jpg -------------------------------------------------------------------------------- /detections/detection3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/detections/detection3.jpg -------------------------------------------------------------------------------- /load_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/load_weights.py -------------------------------------------------------------------------------- /requirements-gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/requirements-gpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /yolov3_tf2/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/yolov3_tf2/batch_norm.py -------------------------------------------------------------------------------- /yolov3_tf2/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/yolov3_tf2/dataset.py -------------------------------------------------------------------------------- /yolov3_tf2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/yolov3_tf2/models.py -------------------------------------------------------------------------------- /yolov3_tf2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/Object-Detection-API/HEAD/yolov3_tf2/utils.py --------------------------------------------------------------------------------