Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 687 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 687 Bytes

Sandbox for image recognition tools

This repo contains code for a small application that showcases a number of image recognition technologies. The frontend is developed as a react app while the backend is handled by a flask server.

Installation

  1. Using ssh, clone repo to local enviroment

git clone [email protected]:wbglaeser/image-recognition-sandbox.git

  1. Install required packages for backend (requirements file is currently missing) and start in development mode.

cd back_end && pip install requirements.txt && python flask_app/app.py

  1. Install required packages for frontend and start react app in development mode.

cd ../front_end && npm install && npm start