├── .gitattributes ├── .gitignore ├── README.md ├── client.py ├── images ├── bus.jpg ├── city_street.jpg └── zidane.jpg ├── minimal_client_server_example ├── client_minimal.py └── server_minimal.py ├── requirements.txt ├── server.py └── templates ├── drag_and_drop_detect.html ├── home.html ├── layout.html └── show_results.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/client.py -------------------------------------------------------------------------------- /images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/images/bus.jpg -------------------------------------------------------------------------------- /images/city_street.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/images/city_street.jpg -------------------------------------------------------------------------------- /images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/images/zidane.jpg -------------------------------------------------------------------------------- /minimal_client_server_example/client_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/minimal_client_server_example/client_minimal.py -------------------------------------------------------------------------------- /minimal_client_server_example/server_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/minimal_client_server_example/server_minimal.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/server.py -------------------------------------------------------------------------------- /templates/drag_and_drop_detect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/templates/drag_and_drop_detect.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/show_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelkinU/yolov5-fastapi-demo/HEAD/templates/show_results.html --------------------------------------------------------------------------------