-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckinsystem.py
More file actions
435 lines (342 loc) · 15.7 KB
/
Copy pathCheckinsystem.py
File metadata and controls
435 lines (342 loc) · 15.7 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
from __future__ import print_function
import cv2
# from imutils.video import VideoStream
from pyzbar import pyzbar
import gspread
from oauth2client.service_account import ServiceAccountCredentials
import datetime
import time
today = time.strftime("%b %d %Y")
now = datetime.datetime.now()
LARGE_FONT = ("Verdana", 12)
import tkinter as tk
from tkinter import ttk,Entry,StringVar, Tk,Label,Button,Entry,IntVar,W,END,Toplevel,LEFT,RIGHT,BOTTOM,TOP
import os
# import argparse
# import datetime
# import imutils
# import time
##########GOOGLE SHEETS SETUP ##############################################################
scope = ['https://spreadsheets.google.com/feeds',
'https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name(r'C:\Users\Isamu Naets\Downloads\Checkout-7aea39f71095.json', scope)
client = gspread.authorize(creds)
# Find a workbook by name and open the first sheet
# Make sure you use the right name here.
sheet = client.open("Laptops").sheet1
##########################################################################################################################
def cardreader2():
# construct the argument parser and parse the arguments
# load the input image
image = cv2.imread('qr.png')
# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.decode(image)
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)
# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type
name = barcode.data.decode("utf-8")
# draw the barcode data and barcode type on the image
text = "{}".format(barcodeData)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)
# print the barcode type and data to the terminal
print("[INFO] Found {} barcode: {}".format(barcodeType, barcodeData))
if name == 'S16950636':
print('hello Isamu')
else:
print('notfound')
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)
return name
def scanner_id():
cam = cv2.VideoCapture(0)
cv2.namedWindow("ID Scan")
img_counter = 0
x = 1
while x == 1:
ret, frame = cam.read()
cv2.imshow("test", frame)
if not ret:
break
k = cv2.waitKey(1)
if k%256 == 27:
# ESC pressed
print("Escape hit, closing...")
break
elif k%256 == 32:
# SPACE pressed
img_name = "ID.png"
y = cv2.imwrite(img_name, frame)
x = 2
def scanner_qr():
cam = cv2.VideoCapture(0)
cv2.namedWindow("QR Scan")
img_counter = 0
x = 1
while x == 1:
ret, frame = cam.read()
cv2.imshow("test", frame)
if not ret:
break
k = cv2.waitKey(1)
if k % 256 == 27:
# ESC pressed
print("Escape hit, closing...")
break
elif k % 256 == 32:
# SPACE pressed
img_name = "qr.png"
y = cv2.imwrite(img_name, frame)
x = 2
# scanner()
# name = cardreader()
class Mainpage(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
top = tk.Frame(self)
bottom = tk.Frame(self)
top.pack(side=TOP)
bottom.pack(side=BOTTOM)
container = tk.Frame(self)
container.pack(side="top", fill="both", expand=True)
container.grid_rowconfigure(2, weight=10)
container.grid_columnconfigure(2, weight=10)
self.frames = {}
for F in (StartPage, CheckIn, checkout):
frame = F(container, self)
self.frames[F] = frame
frame.grid(row=5, column=5, sticky="nsew")
self.show_frame(StartPage)
def show_frame(self, cont):
frame = self.frames[cont]
frame.tkraise()
class StartPage(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
label = tk.Label(self, text="What would you like to do ? ", font=LARGE_FONT)
label.pack(pady=10, padx=100,)
Cin = ttk.Button(self, text="Return a laptop",
command=lambda: controller.show_frame(CheckIn))
Cin.pack(pady=1, padx=10,side=TOP)
Cout = ttk.Button(self, text="Check-Out a laptop",
command=lambda: controller.show_frame(checkout))
Cout.pack(pady=1, padx=10,side=TOP)
closebutton = ttk.Button(self,text="Close",command = controller.destroy)
closebutton.pack(pady=50,side=BOTTOM)
class checkout(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
global id, name_id
##############################################################################################################
def cardreader():
scanner_id()
# construct the argument parser and parse the arguments
# load the input image
global name , name_id
image = cv2.imread('ID.png')
# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.decode(image)
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)
# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type
name = barcode.data.decode("utf-8")
# draw the barcode data and barcode type on the image
text = "{}".format(barcodeData)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)
# print the barcode type and data to the terminal
print("[INFO] Found {} barcode: {}".format(barcodeType, barcodeData))
if name == 'S16950636':
name = 'Isamu Naets'
else:
print('notfound')
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
id = ttk.Entry(self)
id.insert(END,name)
id.pack()
print(name)
scanPC = ttk.Button(self, text="Scan Laptop")
scanPC.configure(command=lambda: qrin2())
scanPC.pack()
############################################################################################################
def qrin2():
scanner_qr()
# construct the argument parser and parse the arguments
# load the input image
global laptop,name_id
image = cv2.imread('qr.png')
# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.decode(image)
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)
# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type
laptop = barcode.data.decode("utf-8")
# draw the barcode data and barcode type on the image
text = "{}".format(barcodeData)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)
# print the barcode type and data to the terminal
print("[INFO] Found {} barcode: {}".format(barcodeType, barcodeData))
if laptop == 'S16950636':
print('hello Isamu')
else:
print('notfound')
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
idl = ttk.Entry(self)
idl.insert(END, laptop)
idl.pack()
name_id = id.get()
# print("laptop is %r" %name_id)
def apply():
x = sheet.find(laptop)
sheet.update_cell(x._row,3,name_id)
print(today)
sheet.update_cell(x._row,5,today)
sheet.update_cell(x.row,4,'')
os.remove("ID.png")
os.remove("qr.png")
controller.destroy()
label = tk.Label(self, text="Check out a laptop", font=LARGE_FONT)
label.pack(pady=10, padx=10)
scanID = ttk.Button(self,text="ScanID")
scanID.configure(command = lambda: cardreader())
scanID.pack()
# applybutton = ttk.Button(self,text"Apply",command= submit)
# applybutton.pack(side=BOTTOM)
closebutton = ttk.Button(self,text="Close",command = controller.destroy)
closebutton.pack(side = BOTTOM)
button = ttk.Button(self, text="Back",
command=lambda: controller.show_frame(StartPage))
button.pack(side=BOTTOM)
apply = ttk.Button(self,text="Apply" ,command = apply)
apply.pack(side= BOTTOM)
class CheckIn(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
global id ,name_idin
##############################################################################################################
def cardreader():
scanner_id()
# construct the argument parser and parse the arguments
# load the input image
global name ,name_idin
image = cv2.imread('ID.png')
# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.decode(image)
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)
# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type
name = barcode.data.decode("utf-8")
# draw the barcode data and barcode type on the image
text = "{}".format(barcodeData)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)
# print the barcode type and data to the terminal
print("[INFO] Found {} barcode: {}".format(barcodeType, barcodeData))
if name == 'S16950636':
name = 'Isamu Naets'
else:
print('notfound')
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
id = ttk.Entry(self)
id.insert(END,name)
id.pack()
print(name)
scanPC = ttk.Button(self, text="Scan Laptop")
scanPC.configure(command=lambda: qrin2())
scanPC.pack()
############################################################################################################
def qrin2():
scanner_qr()
# construct the argument parser and parse the arguments
# load the input image
global laptop ,name_idin
image = cv2.imread('qr.png')
# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.decode(image)
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)
# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type
laptop = barcode.data.decode("utf-8")
# draw the barcode data and barcode type on the image
text = "{}".format(barcodeData)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)
# print the barcode type and data to the terminal
print("[INFO] Found {} barcode: {}".format(barcodeType, barcodeData))
if laptop == 'S16950636':
print('hello Isamu')
else:
print('notfound')
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
idl = ttk.Entry(self)
idl.insert(END, laptop)
idl.pack()
name_idin = id.get()
def apply():
x = sheet.find(laptop)
sheet.update_cell(x._row,3,name_idin +'(returned)')
print(today)
sheet.update_cell(x._row,4,today)
os.remove("ID.png")
os.remove("qr.png")
controller.destroy()
label = tk.Label(self, text="Return a laptop", font=LARGE_FONT)
label.pack(pady=10, padx=10)
scanID = ttk.Button(self,text="ScanID")
scanID.configure(command = lambda: cardreader())
scanID.pack()
# applybutton = ttk.Button(self,text"Apply",command= submit)
# applybutton.pack(side=BOTTOM)
closebutton = ttk.Button(self,text="Close",command = controller.destroy)
closebutton.pack(side = BOTTOM)
button = ttk.Button(self, text="Back",
command=lambda: controller.show_frame(StartPage))
button.pack(side=BOTTOM)
apply = ttk.Button(self,text="Apply" ,command = apply)
apply.pack(side= BOTTOM)
app = Mainpage()
app.mainloop()