Click to expand
Receipt Scanner is a Web GUI that runs on top of a Flask Web Server. The following features are implemented.
Frontend:
- File Upload
- Image Preview
- Text Preview (Tabular Style)
- Text Preview (OCR TEXT)
- Text Preview (RAW JSON)
Server
There is neither an OCR library nor an Information Extraction library included. Feel free to add your preferenced services. This project is meant for mostly kickstart purposes only.
Make sure to have Python 3.6 or newer installed.
$ pip3 install virtualenv
Make sure to create a Python3 instead of Python2 enviroment by refrencing its binaries.
$ which python3
/usr/bin/python3
You can use any name you want, we will use "venv".
$ virtualenv -p /usr/bin/python3 venv
$ . venv/bin/activate
Now you have activated your virual enviroment and your teminal should display its name as so:
$(venv)
$(venv) pip install -r requirements.txt
$(venv) python server.py
You’ll see output similar to this:
Serving Flask app "server"
Environment: development
Debug mode: on
Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
- Egill Anton Hlöðversson - MSc. Language Technology Student
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.
🌟 PLEASE STAR THIS REPO IF YOU FOUND SOMETHING INTERESTING 🌟