File tree Expand file tree Collapse file tree 2 files changed +81
-0
lines changed
Expand file tree Collapse file tree 2 files changed +81
-0
lines changed Original file line number Diff line number Diff line change 1+ # -*- mode: python -*-
2+
3+ block_cipher = None
4+
5+
6+ a = Analysis (['Ocr_inbuild.py' ],
7+ pathex = ['H:\\ Github\\ PythonScripts\\ PyQtDesigner\\ OCR' ],
8+ binaries = [],
9+ datas = [],
10+ hiddenimports = [],
11+ hookspath = [],
12+ runtime_hooks = [],
13+ excludes = [],
14+ win_no_prefer_redirects = False ,
15+ win_private_assemblies = False ,
16+ cipher = block_cipher ,
17+ noarchive = False )
18+ pyz = PYZ (a .pure , a .zipped_data ,
19+ cipher = block_cipher )
20+ exe = EXE (pyz ,
21+ a .scripts ,
22+ [],
23+ exclude_binaries = True ,
24+ name = 'Ocr_inbuild' ,
25+ debug = False ,
26+ bootloader_ignore_signals = False ,
27+ strip = False ,
28+ upx = True ,
29+ console = True )
30+ coll = COLLECT (exe ,
31+ a .binaries ,
32+ a .zipfiles ,
33+ a .datas ,
34+ strip = False ,
35+ upx = True ,
36+ name = 'Ocr_inbuild' )
Original file line number Diff line number Diff line change 1+ # Optical Character Recognition
2+
3+
4+ ### Installation
5+
6+
7+
8+ Install the dependencies for python 3.+ x64
9+
10+ ``` sh
11+ $ pip install pytesseract
12+ $ pip install opencv-contrib-python
13+ $ pip install PyQt5
14+ $ pip install PyQt5-tools
15+ $ pip install pywin32
16+ $ pip install pyinstaller
17+ ```
18+
19+
20+ ### Download tesseract:
21+
22+ To support pytesseract download and install below file
23+
24+ | Platform | URL |
25+ | ------ | ------ |
26+ | Windows | [ https://github.com/UB-Mannheim/tesseract/wiki ] |
27+
28+ ### Todos
29+
30+ - Create windows .exe file
31+
32+
33+ License
34+ ----
35+
36+ MIT
37+
38+
39+ ** Free Software, Hell Yeah!**
40+
41+
42+
43+
44+
45+
You can’t perform that action at this time.
0 commit comments