https://github.com/lucadibello/imagereader
Using Flask and Tesseract this website is able to read all the text written in an image using OCR (Optical Character Recognition).
https://github.com/lucadibello/imagereader
flask jinja2-templates ocr ocr-recognition python3 tesseract-ocr tesseract-ocr-api
Last synced: 4 months ago
JSON representation
Using Flask and Tesseract this website is able to read all the text written in an image using OCR (Optical Character Recognition).
- Host: GitHub
- URL: https://github.com/lucadibello/imagereader
- Owner: lucadibello
- Created: 2019-07-25T08:42:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:14:43.000Z (about 2 years ago)
- Last Synced: 2025-03-02T00:01:49.443Z (4 months ago)
- Topics: flask, jinja2-templates, ocr, ocr-recognition, python3, tesseract-ocr, tesseract-ocr-api
- Language: JavaScript
- Homepage:
- Size: 2.15 MB
- Stars: 21
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ImageReader
This website is able to read all the text written in an image using OCR (Optical Character Recognition).
It uses Flask (back-end) and as front-end framework Material Design Bootstrap (jQuery edition).## Homepage
## Scan results
# Setup
## Install requirements
### UNIX
```bash
pip3 install -r requirements.txt
```### Windows
```bash
pip install -r requirements.txt
```## Setup Tesseract path
Insert Tesseract file path in main.py (line 54):```python
# Example: r'D:\TesseractOCR\tesseract'
pytesseract.pytesseract.tesseract_cmd = r''
```# Start Flask webserver
## UNIX
```'bash
python3 main.py
```## Windows
```bash
python main.py
```PS: The webserver will start on the port 5000