Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 716 Bytes

README.md

File metadata and controls

44 lines (37 loc) · 716 Bytes

Project Setup Guide

Clone the Repository

git clone <repository_url>
cd <repository_name>

Create a Virtual Environment

# On Windows use python instead of python3
python3 -m venv venv

Activate the Virtual Environment

# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activate

Install Dependencies

pip install -r requirements.txt

Running the Application

Start the Flask server:

# On Windows use python instead of python3

# OCR model
python3 ocr_app.py

# Image Classification model
python3 app.py

Open the client script:

# On Windows use python instead of python3

python3 webcam_client.py