├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── application.py ├── camera_settings.py ├── models ├── coco.names └── yolov3.cfg ├── object_detection.py ├── requirements.txt ├── static ├── detect.png ├── github.png ├── object.png ├── script.js └── style.css └── templates └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/application.py -------------------------------------------------------------------------------- /camera_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/camera_settings.py -------------------------------------------------------------------------------- /models/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/models/coco.names -------------------------------------------------------------------------------- /models/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/models/yolov3.cfg -------------------------------------------------------------------------------- /object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/object_detection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/static/detect.png -------------------------------------------------------------------------------- /static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/static/github.png -------------------------------------------------------------------------------- /static/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/static/object.png -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolodavid/Real-time-Object-Detection-Flask-OpenCV-YoloV3/HEAD/templates/index.html --------------------------------------------------------------------------------