Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:14:43.000Z (over 1 year ago)
- Last Synced: 2024-10-11T10:21:33.939Z (3 months ago)
- Topics: flask, jinja2-templates, ocr, ocr-recognition, python3, tesseract-ocr, tesseract-ocr-api
- Language: JavaScript
- Homepage:
- Size: 2.15 MB
- Stars: 19
- 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
![Home page](static/img/readme/home.PNG)## Scan results
![Scan result](static/img/readme/result.PNG)# 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