ocr_utility is a ocr comparision utility.
.
├── ocr_app
│ ├── __init__.py
│ ├── main.py
│ ├── core
│ │ ├── __init__.py
│ │ ├── configurations.py
│ │ └── data
│ │ └── config.ini
│ ├── models
│ │ ├── Schemas.py
│ │ └── __init__.py
│ ├── routers
│ │ ├── __init__.py
│ │ └── tesseract.py
│ └── utils
│ ├── Helper.py
│ ├── tesseract.py
│ └── __init__.py
├── README.md
└── requirement.txt
- Tested on Python 3.10.2
- Toggle the PRODUCTION_MODE variable in config before pushing to production.
pip install -r .\requirements.txt
python ./ocr_app/main.py
docker build -t ocr_utility .
docker run -p 8000:8000 ocr_utility
heroku container:push web -a ocr_utility
heroku container:release web -a ocr_utility