Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 431 Bytes

File metadata and controls

18 lines (17 loc) · 431 Bytes

Recognize Text From Image.

LIBRARIES USED:

 pytesseract
 cv2
 os
 PIL

Installing tesseract

You can download .exe file from here

Then you can provide the path 
# path to the Tessaract
pytesseract.pytesseract.tesseract_cmd = r"C:\Program Files\Tesseract-OCR\tesseract.exe"

Installing cv2 module

pip install opencv-python