This App main purpose is just to make the work we have done on our computer vision module looks more useful. Being able to see result of the implementation of one of the most popular papers in biomedical image segmentation on the blood cells just by few clicks is one of the things we aim for to deliver a high quality project
You need to have Python installed in your computer.
-
Install
virtualenv
:pip install virtualenv
-
Create a Python virtual environment:
virtualenv venv
-
Activate virtual environment:
- Windows:
cd venv\Scripts activate cd ..\..
- Lunix / Mac:
source venv/bin/activate
-
Install libraries:
pip install -r requirements.txt
- Run the app:
flask run
- Run on a specific port:
flask run -p <port>