├── .gitignore ├── Aptfile ├── LICENSE ├── Procfile ├── README.md ├── cfg └── yolov3.cfg ├── data └── coco.names ├── db.sqlite3 ├── detect_image ├── __init__.py ├── apps.py ├── darknet │ ├── __init__.py │ └── darknet.py ├── migrations │ └── __init__.py ├── static │ ├── css │ │ └── main.css │ └── js │ │ └── main.js ├── templates │ └── index.html ├── urls.py ├── utils │ ├── __init__.py │ └── utils.py └── views.py ├── manage.py ├── requirements.txt ├── result.png ├── runtime.txt ├── temp.png ├── website ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── weights └── w /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.pyc 3 | yolov3.weights 4 | staticfiles -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/Aptfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn website.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/README.md -------------------------------------------------------------------------------- /cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/cfg/yolov3.cfg -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/data/coco.names -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /detect_image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detect_image/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/apps.py -------------------------------------------------------------------------------- /detect_image/darknet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/darknet/__init__.py -------------------------------------------------------------------------------- /detect_image/darknet/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/darknet/darknet.py -------------------------------------------------------------------------------- /detect_image/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detect_image/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/static/css/main.css -------------------------------------------------------------------------------- /detect_image/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/static/js/main.js -------------------------------------------------------------------------------- /detect_image/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/templates/index.html -------------------------------------------------------------------------------- /detect_image/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/urls.py -------------------------------------------------------------------------------- /detect_image/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * -------------------------------------------------------------------------------- /detect_image/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/utils/utils.py -------------------------------------------------------------------------------- /detect_image/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/detect_image/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/result.png -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.3 -------------------------------------------------------------------------------- /temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/temp.png -------------------------------------------------------------------------------- /website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/website/settings.py -------------------------------------------------------------------------------- /website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/website/urls.py -------------------------------------------------------------------------------- /website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharva-18/Object-Detection-API/HEAD/website/wsgi.py -------------------------------------------------------------------------------- /weights/w: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------