OCR with Python and EasyOCR
Create a basic application using EasyOCR and Flask that uses Machine Learning to Parse Text from an Image
Updated: 03 September 2023
A simple application to use EasyOCR and Flask to create a WebApp that is able to process images and return the relevant text
Requirements/Dependencies
The application has the following dependencies which should be in a requirements.txt
file:
requirements.txt
Application Code
The application configures a Flask
app with the EasyOCR
library and a simple HTML form with a file upload:
app.py
Run the Application
The application can be run with the flask run
command from the application directory (the directory with the app.py
file)