Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 678 Bytes

README.md

File metadata and controls

53 lines (40 loc) · 678 Bytes

caMicroscopeGSoCTask

Created a server which returns red, green, and blue channels of an image separately, and a client which recombines them into the original image.

Run on your machine

# git clone https://github.com/chinmay81098/caMicroscope
cd caMicroscope

Start Flask Server

cd caMicroscope/server
python script.py

Start Vue development Server

cd caMicroscope/client
npm run serve

Requirements

flask server

cd caMicroscope/server
create a virtual enivronment and install
Flask
Flask-CORS
opencv
PIL

pip install -r requirements.txt 

Vue

Follow the readme.md in client folder