Skip to content

Pranav-Nagpure/Text-Extraction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Text Extraction

Built Using

Python html-css-js Flask Tesseract

About

Web Application to extract text from images using pytesseract.

Sample Image: https://media.geeksforgeeks.org/wp-content/cdn-uploads/20220401160946/HTML-Basic-Format-768x534.png

See the implementation details with IPython Notebook

Getting Started

This Project is Built With Anaconda VSCode Render

Installation

To use the app on local machine, open Anaconda Prompt and run the following commands:

  1. Clone the Repository
git clone https://github.com/Pranav-Nagpure/Text-Extraction.git
  1. Change Working Directory
cd Text-Extraction
  1. If needed create a Virtual Environment and activate it
conda create -n environment_name python=3.10
conda activate environment_name
  1. Install the requirements
conda install -c conda-forge tesseract
python -m pip install -r requirements.txt
  1. Run the App
python app.py
  1. Open the URL generated in a browser to use the App

  2. You can use image in the sample_images folder

(back to top)