-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGUI.py
112 lines (81 loc) · 2.92 KB
/
GUI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
"""
pack manger parameters: -after, -anchor, -before, -expand, -fill, -in, -ipadx, -ipady, -padx, -pady, or -side
anchor params: n, ne, e, se, s, sw, w, nw, or center
grid param: -column, -columnspan, -in, -ipadx, -ipady, -padx, -pady, -row, -rowspan, or -sticky
"""
from tkinter import *
from tkinter.filedialog import askopenfilename
from tkinter import ttk
from threading import Thread
from Combined import perform_ocr
import time
def fileopen(master):
# withdraws the master window
# master.withdraw()
filename = askopenfilename()
print(filename)
# Entry(master, text="Test").grid(padx=0, pady=55, row=2)
def menu_bar(master):
menubar = Menu(master)
master.config(menu=menubar)
fileMenu = Menu(menubar)
menubar.add_cascade(label="Menu", menu=fileMenu)
fileMenu.add_command(label="Exit", command=master.quit)
def submit(var_list):
# list is [pdf, ocr, psm mode]
# for i in check_list:
# print(i.get())
print("Submit waala: ", filename)
psm_mode = "--psm " + str(var_list[2])
# PDF Conversion
if var_list[0] is True:
pass
# HOCR Conversion
if var_list[1] is True:
pass
def add_bar(master):
var = IntVar()
var.set(0)
progessbar = ttk.Progressbar(master, variable=var, orient=HORIZONTAL, length=200).grid()
for x in range(10):
time.sleep(2.0)
var.set(x)
def start_thread(master):
t = Thread(target=lambda: add_bar(master))
t.start()
def window(master):
""" Main Window """
var_list = []
menu_bar(master)
Label(master, text="Tesseract Powered OCR", bg="white", height=2, width=40) \
.grid(row=0, sticky=NW, padx=10, pady=5)
select_pdf = BooleanVar()
pdf = Checkbutton(master, text=" PDF", variable=select_pdf) \
.grid(sticky=NW, padx=15)
select_hocr = BooleanVar()
hocr = Checkbutton(master, text=" hOCR", variable=select_hocr) \
.grid(sticky=NE, padx=15, row=1)
var_list.append(select_pdf)
var_list.append(select_hocr)
combo = ttk.Combobox(master)
combo["values"] = ("Select PSM mode", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)
combo.current(0)
combo.grid(sticky=NW, padx=15, pady=5)
var_list.append(combo)
# Button for opening files
file_open = Button(master, text="Select File Location", command=lambda: fileopen(master)) \
.grid(sticky=NW, padx=15, pady=5)
# Button for submitting options
submit_button = Button(master, text="Submit", command=lambda: submit(var_list)) \
.grid(sticky=NW, padx=15, pady=5)
# Button which activates the progress bar
add_bar = Button(master, text="Add Bar", command=lambda: start_thread(master), bd=1, relief=SOLID) \
.grid()
if __name__ == '__main__':
filename = ""
root_app = Tk()
root_app.title("Tesseract powered OCR")
# Set constant app size
# root_app.geometry("1280x720")
window(root_app)
root_app.mainloop()