Windows python GUI for Google's Tesseract OCR engine
pip install mss
for screen capturepip install Pillow
for image file readingpip install PyQt5
for GUIpip install pytesseract
for tesseract interfacing (this will be removed in future versions as it does hardly anything)
You must download tesseract from https://github.com/UB-Mannheim/tesseract/wiki
After installiation, move around the files so that it matches this:
.
├── TESSDATA # tessdata folder (comes with installed tesseract)
│ ├── script
│ │ ├── Cyrillic.traineddata
│ │ ├── Arabic.traineddata
│ │ ├── ...
│ ├── chi_sim.traineddata
│ ├── eng.traineddata
│ ├── ...
├── TESSERACT # Main installed tesseract engine
│ ├── tesseract.exe
│ ├── text2image.exe
│ ├── libtesseract-5.dll
│ ├── ... # And lots of other dll's/exe's
└── ScreenSnip.py # Main python script from this repo