computer vision project using yolo
The files/directories which you will need to edit are bolded, and the files you may need to edit are italicized. DO NOT TOUCH OTHER FILES.
.gitignore
Dockerfile
READMD.md
app/
ai.py
main.py
requirements.txt utils.py
uwsgi.ini images/ static/ images/ Home.css Results.css jquery.js nicepage.css nicepage.js templates/ home.html results.html yolo/ weights_location yolo.cfg yolo.names yolo.weights <- you will need to upload this yourself after cloning the repo when testing locally ai.py
Contains functions used by main.py for working with opencv and running the model on uploaded images.
main.py
Contains the main flask app itself.
requirements.txt
Contains list of packages and modules required to run the flask app. Edit only if you are using additional packages that need to be pip installed in order to run the project.
static/
Contains the static images, CSS, & JS files used by the flask app for the webpage. Home.css is for the landing page, Results.css is for the landing page. Place all your images used for your website in static/images/.
templates/
Contains the HTML pages used for the webpage. Edit these to fit your project. home.html is the landing page, results.html is the result page after uploading the image.
yolo/
Contains info for yolo.