Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 954 Bytes

File metadata and controls

42 lines (35 loc) · 954 Bytes

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

Getting Started (using Python virtualenv)

You need to have Python installed in your computer.

  1. Install virtualenv:

    pip install virtualenv
    
  2. Create a Python virtual environment:

    virtualenv venv
    
  3. Activate virtual environment:

    1. Windows:
    cd venv\Scripts
    activate
    cd ..\..
    
    1. Lunix / Mac:
    source venv/bin/activate
    
  4. Install libraries:

    pip install -r requirements.txt
    

Run the code

  • Run the app:
    flask run
    
  • Run on a specific port:
    flask run -p <port>