Image augmentation and OCR using Django
- Install virtualenv by executing
pip3 install virutalenv
- Install Google Tesseract OCR by refering
Tesseract installation.txt
- Clone this repository and make it your cuurent working directory
- Create a virtual environment
virtualenv venv
and activate itsource venv/bin/activate
- Install all the required libraries by executing
pip3 install -r requirements.txt
- Run the project server by executing
python3 manage.py runserver
- Open a browser and visit
localhost:8000/image
- Upload images for Augmentation and OCR.
- You can download the augmented images.
- You can download text file or a searchable pdf after OCR.