├── .gitignore ├── README.md ├── SmartApi ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── YoloObjectDetectionAPI ├── __init__.py ├── admin.py ├── apps.py ├── detection_models │ ├── __pycache__ │ │ └── yolov8.cpython-311.pyc │ └── yolov8.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_detections_object_detection_and_more.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-311.pyc │ │ ├── 0002_alter_detections_object_detection_and_more.cpython-311.pyc │ │ └── __init__.cpython-311.pyc ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── examples ├── example_1_webcam.py ├── example_2_images.py └── example_images │ ├── pexels-arnie-chou-1877271.jpg │ ├── pexels-charlotte-may-5824498.jpg │ ├── pexels-cowomen-2041627.jpg │ ├── pexels-fauxels-3184435.jpg │ ├── pexels-jane-doan-1132040.jpg │ ├── pexels-joey-lu-186537.jpg │ ├── pexels-jonathan-borba-3316924.jpg │ ├── pexels-julie-aagaard-2294477.jpg │ ├── pexels-oleksandr-p-1031698.jpg │ ├── pexels-pixabay-161164.jpg │ ├── pexels-pixabay-38631.jpg │ ├── pexels-sergio-souza-2293649.jpg │ ├── pexels-terry-magallanes-3623785.jpg │ └── pexels-vecislavas-popa-1668860.jpg ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/README.md -------------------------------------------------------------------------------- /SmartApi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartApi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/SmartApi/asgi.py -------------------------------------------------------------------------------- /SmartApi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/SmartApi/settings.py -------------------------------------------------------------------------------- /SmartApi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/SmartApi/urls.py -------------------------------------------------------------------------------- /SmartApi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/SmartApi/wsgi.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/admin.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/apps.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/detection_models/__pycache__/yolov8.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/detection_models/__pycache__/yolov8.cpython-311.pyc -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/detection_models/yolov8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/detection_models/yolov8.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/migrations/0001_initial.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/0002_alter_detections_object_detection_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/migrations/0002_alter_detections_object_detection_and_more.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/__pycache__/0002_alter_detections_object_detection_and_more.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/migrations/__pycache__/0002_alter_detections_object_detection_and_more.cpython-311.pyc -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/models.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/serializers.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/tests.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/urls.py -------------------------------------------------------------------------------- /YoloObjectDetectionAPI/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/YoloObjectDetectionAPI/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /examples/example_1_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_1_webcam.py -------------------------------------------------------------------------------- /examples/example_2_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_2_images.py -------------------------------------------------------------------------------- /examples/example_images/pexels-arnie-chou-1877271.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-arnie-chou-1877271.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-charlotte-may-5824498.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-charlotte-may-5824498.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-cowomen-2041627.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-cowomen-2041627.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-fauxels-3184435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-fauxels-3184435.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-jane-doan-1132040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-jane-doan-1132040.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-joey-lu-186537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-joey-lu-186537.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-jonathan-borba-3316924.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-jonathan-borba-3316924.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-julie-aagaard-2294477.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-julie-aagaard-2294477.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-oleksandr-p-1031698.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-oleksandr-p-1031698.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-pixabay-161164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-pixabay-161164.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-pixabay-38631.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-pixabay-38631.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-sergio-souza-2293649.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-sergio-souza-2293649.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-terry-magallanes-3623785.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-terry-magallanes-3623785.jpg -------------------------------------------------------------------------------- /examples/example_images/pexels-vecislavas-popa-1668860.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/examples/example_images/pexels-vecislavas-popa-1668860.jpg -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezer-muhammed/Django-Yolov8-API-App/HEAD/requirements.txt --------------------------------------------------------------------------------