├── .gitignore ├── README.md ├── app.py ├── cfg └── yolov3.cfg ├── darknet.py ├── data └── coco.names ├── images ├── bar.jpeg ├── city_scene.jpg ├── class.jpg ├── dog.jpg ├── home.jpeg ├── meeting.jpeg └── snack.jpg ├── instance └── README.md ├── iti ├── Title Background.gif ├── image └── postman.png ├── requirements.txt ├── sample_output ├── 20200521_233133_570.jpg ├── 20200521_233208_33.jpg ├── 20200521_233222_914.jpg └── 20200521_233233_695.jpg ├── utils.py ├── weights └── README.md └── yolo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/app.py -------------------------------------------------------------------------------- /cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/cfg/yolov3.cfg -------------------------------------------------------------------------------- /darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/darknet.py -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/data/coco.names -------------------------------------------------------------------------------- /images/bar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/bar.jpeg -------------------------------------------------------------------------------- /images/city_scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/city_scene.jpg -------------------------------------------------------------------------------- /images/class.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/class.jpg -------------------------------------------------------------------------------- /images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/dog.jpg -------------------------------------------------------------------------------- /images/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/home.jpeg -------------------------------------------------------------------------------- /images/meeting.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/meeting.jpeg -------------------------------------------------------------------------------- /images/snack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/images/snack.jpg -------------------------------------------------------------------------------- /instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/instance/README.md -------------------------------------------------------------------------------- /iti/Title Background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/iti/Title Background.gif -------------------------------------------------------------------------------- /iti/image: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iti/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/iti/postman.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_output/20200521_233133_570.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/sample_output/20200521_233133_570.jpg -------------------------------------------------------------------------------- /sample_output/20200521_233208_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/sample_output/20200521_233208_33.jpg -------------------------------------------------------------------------------- /sample_output/20200521_233222_914.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/sample_output/20200521_233222_914.jpg -------------------------------------------------------------------------------- /sample_output/20200521_233233_695.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/sample_output/20200521_233233_695.jpg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/utils.py -------------------------------------------------------------------------------- /weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/weights/README.md -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankai364/Object-Detection-Flask-API/HEAD/yolo.py --------------------------------------------------------------------------------