-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui2.py
1204 lines (1047 loc) · 30.5 KB
/
gui2.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
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import cv2
import webbrowser
from kivy.app import App
from kivy.lang import Builder
from kivy.graphics import Color, Rectangle
from kivy.uix.screenmanager import ScreenManager, Screen
from kivy.uix.dropdown import DropDown
from kivy.uix.button import Button
from kivy.uix.image import Image
from kivy.uix.label import Label
from kivy.base import runTouchApp
from imutils.video import VideoStream
from imutils.video import FPS
from kivy.properties import StringProperty
import numpy as np
import argparse
import imutils
import time
from datetime import datetime
import sqlite3
from kivy.uix.textinput import TextInput
import os
import subprocess
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from kivy.uix.boxlayout import BoxLayout
import sys
from kivy.uix.popup import Popup
import pyttsx3
# Defines paths to file dependencies
PATH_TO_OBJ_REC = './crystal-clear/object_detection/classify_image.py'
PATH_TO_IMG = './crystal-clear/object_detection/tests/'
IMG_NAME = 'IMG.jpg'
PATH_TO_MODEL = './crystal-clear/object_detection/tmp/imagenet'
GUESS_COUNT = '1'
PATH_TO_LANGFUNCTIONS = './crystal-clear/language_translation/'
PATH_TO_TRANSLATION = './crystal-clear/language_translation/data/translated_Definitions.txt'
PATH_TO_DEFINITION = './crystal-clear/language_translation/data/spanish/definition.pkl'
PATH_TO_USECASE = './crystal-clear/language_translation/data/spanish/use_case.pkl'
PATH_TO_AUDIO = './crystal-clear/language_translation/data/spanish/audio.pkl'
chosenPictureInHistory = ""
import classify_image as cl
#global variable for the selected native language
native = "english"
target = "spanish"
Builder.load_string('''
<MenuScreen>:
FloatLayout:
AnchorLayout:
anchor_x: 'right'
anchor_y: 'bottom'
Button:
text: 'Settings'
size: 150, 60
size_hint: None, None
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'settings'
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
Button:
text: 'History'
size: 150, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.current = 'hist'
AnchorLayout:
anchor_x:'center'
anchor_y:'bottom'
Button:
text: 'Test Cam'
size: 150, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'cam'
AnchorLayout:
anchor_x: 'right'
anchor_y: 'top'
Button:
text: 'Exit'
size: 80, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press: app.get_running_app().stop()
<CameraScreen>:
AnchorLayout:
AnchorLayout:
anchor_x: 'right'
anchor_y: 'top'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press: root.playSound()
Image:
source: 'speaker.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'menu'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
AnchorLayout:
anchor_x: 'center'
anchor_y: 'bottom'
Button:
text: 'Capture'
size: 100, 60
size_hint: None, None
on_press: root.takePicture(), root.runScript(), root.updateText()
Camera:
id: camera
resolution: (640,480)
play: True
AnchorLayout:
anchor_x: 'center'
anchor_y: 'top'
Label:
text: root.objectLabel
size: 600, 200
size_hint: None, None
text_size: self.size
<SettingsScreen>:
RelativeLayout:
Label:
text: 'Settings'
font_size: '25sp'
bold: True
halign: 'center'
valign: 'top'
text_size: self.size
Button:
text: 'Language Settings'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 2 * self.height
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'langs'
Button:
text: 'Power Settings'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 4 * self.height
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'power'
Button:
text: 'Report an Issue'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 6 * self.height
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'report'
AnchorLayout:
anchor_x:'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'menu'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
<HistoryScreen>:
on_enter: root.clearGrid(), root.load_content()
FloatLayout:
BoxLayout:
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'menu'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
GridLayout:
cols: 2
# just add a id that can be accessed later on
id: content
#Delete button
Button:
text: 'Clear History'
size: 110, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.deleteHistory()
root.manager.current = 'hist'
root.clearGrid()
root.load_content()
<ImageScreen>:
on_enter: root.setPicture()
AnchorLayout:
AnchorLayout:
anchor_x: 'center'
anchor_y: 'bottom'
Image:
source: ""
y: self.parent.y
x: self.parent.x
size: 150, 60
id: image
AnchorLayout:
anchor_x: 'right'
anchor_y: 'top'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press: root.playSound()
Image:
source: 'speaker.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
AnchorLayout:
anchor_x: 'center'
anchor_y: 'top'
Label:
text: root.objectInformation
size: 600, 60
size_hint: None, None
text_size: self.size
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'hist'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
AnchorLayout:
anchor_x: 'right'
anchor_y: 'bottom'
#Delete button
Button:
text: 'Delete from History'
size: 150, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.deleteObject()
root.manager.current = 'hist'
<LanguagesScreen>:
RelativeLayout:
Label:
text: 'Language Settings'
font_size: '26sp'
bold: True
halign: 'center'
valign: 'top'
text_size: self.size
Button:
text: root.button_text
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 2 * self.height
opacity: 1 if self.state == 'normal' else .5
on_release: root.open_drop_down(self)
Button:
text: root.button_text2
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 4 * self.height
opacity: 1 if self.state == 'normal' else .5
on_release: root.open_2(self)
Button:
text: 'Download Languages'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 6 * self.height
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'left'
root.manager.current = 'download'
AnchorLayout:
anchor_x:'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'settings'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
<CustomDropDown1>:
padding: [0,0,0,0]
Button:
text: 'English'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release:
root.select(self.text)
root.setNative("english")
Button:
text: 'Spanish'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release:
root.select(self.text)
root.setNative("spanish")
Button:
text: 'Pig Latin'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release: root.select(self.text)
<CustomDropDown2>:
padding: [0,0,0,0]
Button:
text: 'English'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release:
root.select(self.text)
root.setTarget("english")
Button:
text: 'Spanish'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release:
root.select(self.text)
root.setTarget("spanish")
Button:
text: 'Pig Latin'
size:(200,50)
size_hint:(None,None)
text_size: self.size
valign: 'center'
padding: (10,0)
on_release: root.select(self.text)
<PowerScreen>:
on_enter: root.start()
RelativeLayout:
Label:
text: 'Power Settings'
font_size: '26sp'
bold: True
halign: 'center'
valign: 'top'
text_size: self.size
Button:
id: lp
background_normal: ''
text: 'Low Power Mode'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 6 * self.height
opacity: 1 if self.state == 'normal' else .5
on_release: root.loww()
Button:
id: hp
background_normal: ''
text: 'High Power Mode'
size: 150, 60
size_hint: None, None
pos: root.width/2 - self.width/2, root.height - 4 * self.height
opacity: 1 if self.state == 'normal' else .5
on_release: root.highh()
AnchorLayout:
anchor_x:'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'settings'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
<DownloadScreen>:
RelativeLayout:
Label:
text: 'Downloaded Languages'
font_size: '26sp'
bold: True
halign: 'center'
valign: 'top'
text_size: self.size
AnchorLayout:
anchor_x: 'center'
anchor_y: 'bottom'
Button:
text: 'Download Packs'
multiline: True
size: 150, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press: root.website()
AnchorLayout:
anchor_x:'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'settings'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
<IssueScreen>:
email: email_in
sub: sub_in
rep: report_in
RelativeLayout:
Label:
text: 'Report an Issue'
font_size: '25sp'
bold: True
halign: 'center'
valign: 'top'
text_size: self.size
Label:
text: 'Email Address:'
font_size: '16sp'
bold: True
pos_hint: {'center_x' : .35, 'center_y' : .85}
Label:
text: 'Subject Line:'
font_size: '16sp'
bold: True
pos_hint: {'center_x': .34, 'center_y' : .69}
Label:
text: 'Body:'
font_size: '16sp'
bold: True
pos_hint: {'center_x' : .31, 'center_y' : .54}
AnchorLayout:
anchor_x:'left'
anchor_y: 'bottom'
Button:
text: ''
size: 90, 60
size_hint: None, None
opacity: 1 if self.state == 'normal' else .5
on_press:
root.manager.transition.direction = 'right'
root.manager.current = 'settings'
Image:
source: 'kivy.png'
y: self.parent.y
x: self.parent.x
size: 90, 60
#allow_stretch: True
BoxLayout:
orientation: 'vertical'
spacing: 50
padding: [50, 40, 60, 20]
Label:
text: '---'
font_size: '16sp'
bold: True
pos_hint: {'center_x' : .5}
size_hint: [.01, .01]
TextInput:
id: email_in
multiline: False
text: ''
pos_hint: {'center_x' : .5 , 'y' : .3}
size_hint: [.5, .05]
TextInput:
id: sub_in
multiline: False
text: ''
pos_hint: {'center_x' : .5, 'y' : .3}
size_hint: [.5, .05]
TextInput:
id: report_in
auto_indent: True
multiline: True
text: ''
pos_hint: {'center_x' : .5, 'y' : .5}
size_hint: [.5, .2]
Button:
text: 'Submit'
size: 80, 20
pos_hint: {'center_x' : .5, 'center_y' : .1}
size_hint: [.5, .08]
on_press: app.save(email_in.text, sub_in.text, report_in.text)
''')
class MenuScreen(Screen):
pass
class SettingsScreen(Screen):
pass
class HistoryScreen(Screen):
#Variable to hold main ID(time stamp) that will be insert into the currentImage table
pictureID = 0.0
#Variables to hold the ID(time stamp) for each button
pictureID0 = 0.0
pictureID1 = 0.0
pictureID2 = 0.0
pictureID3 = 0.0
pictureID4 = 0.0
pictureID5 = 0.0
pictureID6 = 0.0
pictureID7 = 0.0
pictureID8 = 0.0
pictureID9 = 0.0
def selectImage(self):
#Connect to DB
conn = sqlite3.connect('sqlitedb.db')
#Cursor for DB object
c = conn.cursor()
#Delete contents of table currentImage
c.execute("delete from currentImage")
#Insert selected picture time stamp into currentImage table
c.execute("insert into currentImage (tStamp) values (?)", (float(self.pictureID),))
#Commit changes
conn.commit()
#Close connection to DB
conn.close()
return
#Function to clear all widgets attached to grid layout
def clearGrid(self):
self.ids.content.clear_widgets()
return
#Function to change to ImageScreen and load first image in grid layout to that screen
def viewImage0(self):
self.pictureID = self.pictureID0
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load second image in grid layout to that screen
def viewImage1(self):
self.pictureID = self.pictureID1
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load third image in grid layout to that screen
def viewImage2(self):
self.pictureID = self.pictureID2
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load fourth image in grid layout to that screen
def viewImage3(self):
self.pictureID = self.pictureID3
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load fifth image in grid layout to that screen
def viewImage4(self):
self.pictureID = self.pictureID4
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load sixth image in grid layout to that screen
def viewImage5(self):
self.pictureID = self.pictureID5
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load seventh image in grid layout to that screen
def viewImage6(self):
self.pictureID = self.pictureID6
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load eighth image in grid layout to that screen
def viewImage7(self):
self.pictureID = self.pictureID7
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load ninth image in grid layout to that screen
def viewImage8(self):
self.pictureID = self.pictureID8
self.selectImage()
sm.current = 'img'
return
#Function to change to ImageScreen and load tenth image in grid layout to that screen
def viewImage9(self):
self.pictureID = self.pictureID9
self.selectImage()
sm.current = 'img'
return
#Function to load images as buttons into the grid layout
def load_content(self):
imageIndex = 0
#Connect to DB
conn = sqlite3.connect('sqlitedb.db')
#Cursor for DB object
c = conn.cursor()
#Get all time stamps from history table
c.execute('SELECT timeStamp FROM history')
#Put all data fetched into python variable
all_rows = c.fetchall()
result = []
#Fill result array with time stamps fetched from history table
result = [object[0] for object in all_rows]
#Iterate through result, assign each image to a button, add corresponding function to each button, add each button to grid layout
for image in result:
imageSource = PATH_TO_IMG + str(image) + ".jpg"
print ("debug code: " + imageSource)
imageButton = Button(background_normal = imageSource)
if imageIndex == 0:
imageButton.on_press = self.viewImage0
self.pictureID0 = image
elif imageIndex == 1:
imageButton.on_press = self.viewImage1
self.pictureID1 = image
elif imageIndex == 2:
imageButton.on_press = self.viewImage2
self.pictureID2 = image
elif imageIndex == 3:
imageButton.on_press = self.viewImage3
self.pictureID3 = image
elif imageIndex == 4:
imageButton.on_press = self.viewImage4
self.pictureID4 = image
elif imageIndex == 5:
imageButton.on_press = self.viewImage5
self.pictureID5 = image
elif imageIndex == 6:
imageButton.on_press = self.viewImage6
self.pictureID6 = image
elif imageIndex == 7:
imageButton.on_press = self.viewImage7
self.pictureID7 = image
elif imageIndex == 8:
imageButton.on_press = self.viewImage8
self.pictureID8 = image
elif imageIndex == 9:
imageButton.on_press = self.viewImage9
self.pictureID9 = image
self.ids.content.add_widget(imageButton)
imageIndex += 1
conn.close()
return
#Function to delete history from the DB and the stored images
def deleteHistory(self):
#Connect to DB
conn = sqlite3.connect('sqlitedb.db')
#Cursor for DB object
c = conn.cursor()
#Delete all contents of history table from db
c.execute('delete from history')
#Commit changes to DB
conn.commit()
#Close connection to DB
conn.close()
#Fill fileList with all file names in image directory
fileList = os.listdir(PATH_TO_IMG)
#Iterate through each file name and delete it from the directory
for fileName in fileList:
os.remove(PATH_TO_IMG+fileName)
return
pass
class ImageScreen(Screen):
#Variable to hold information in label
objectInformation = StringProperty()
#Values to be set on db query
word = ""
clevel = 0.0
translatedWord = ""
timeStamp = 0.0
definition = ""
def playSound(self):
global target
if self.translatedWord == "":
engine = pyttsx3.init()
engine.say("No translation available")
engine.runAndWait()
else:
engine = pyttsx3.init()
voices = engine.getProperty('voices')
if target == 'spanish':
for voice in voices:
if voice.name == "Microsoft Sabina Desktop - Spanish (Mexico)":
engine.setProperty('voice',voice.id)
break
elif target == 'english':
for voice in voices:
if voice.name != "Microsoft Sabina Desktop - Spanish (Mexico)":
engine.setProperty('voice', voice.id)
break
engine.say(self.translatedWord)
engine.runAndWait()
#Function to delete an object from db as well as the .jpg file associated with that image
def deleteObject(self):
#Connect to DB
conn = sqlite3.connect('sqlitedb.db')
#Cursor for DB object
c = conn.cursor()
#Delete row from table history for object currently being viewed
c.execute('delete from history where timeStamp = ?', (float(self.timeStamp),))
#commit the changes to the db
conn.commit()
#close the connection to the db
conn.close()
#remove the image associated with the object being viewed from the image storage folder
os.remove(PATH_TO_IMG + str(self.timeStamp) + ".jpg")
print ("test")
return
def setPicture(self):
global native
#Connect to DB
conn = sqlite3.connect('sqlitedb.db')
#Cursor for DB object
c = conn.cursor()
c.execute("select * from currentImage")
#c.execute('select h.word, h.clevel, h.translatedWord, h.timeStamp from history h, currentImage c where h.timeStamp = c.tStamp')
c.execute('select h.word, h.clevel, h.translatedWord, h.timeStamp, t.definition from history h LEFT JOIN translation t ON h.word = t.englishW WHERE h.timeStamp IN (SELECT tStamp FROM currentImage)')
for tuple2 in c.fetchall():
self.word = tuple2[0]
self.clevel = tuple2[1]
self.translatedWord = tuple2[2]
self.timeStamp = tuple2[3]
self.definition = tuple2[4]
print("DEBUG word display: " + self.word)
imageValue = str(self.timeStamp) + ".jpg"
#print (imageValue)
#wimg = Image(source = PATH_TO_IMG + imageValue)
#self.add_widget(wimg)
self.ids.image.source = PATH_TO_IMG + imageValue
#self.objectInformation = "test"
if native == "english":
self.objectInformation = self.word + "\nTranslation of: \'" + self.word + "\': " + self.translatedWord + "\nDefinition: " + str(self.definition)
elif native == "spanish":
self.objectInformation = self.translatedWord + "\nTraducción de: \'" + self.translatedWord + "\': " + self.word
return
pass
class LanguagesScreen(Screen) :
button_text = StringProperty('English')
button_text2 = StringProperty('Spanish')
def __init__(self, **kwargs):
super(LanguagesScreen, self).__init__(**kwargs)
self.dropdown = CustomDropDown1(self)
self.dropdown2 = CustomDropDown2(self)
def open_drop_down(self, widget):
self.dropdown.open(widget)
def open_2(self, widget):
self.dropdown2.open(widget)
pass
class PowerScreen(Screen) :
pressed = True
np = False
def start(self):
self.pressed = True
self.np = False
self.ids.hp.background_color = 1, .3, .4, .85
self.ids.lp.background_color = .18, .843, .227, 1
def highh(self):
if not self.np:
self.ids.hp.background_color = 0.18, 0.843, 0.227, 1
self.ids.lp.background_color = 1, .3, .4, .85
self.np = True
self.pressed = False
pop = Popup(title='', content=Label(text='High Power Mode activated'), size_hint=(.5, .5))
pop.open()
elif self.np:
# background_color: 1, .3, .4, .85
# self.np = True
# self.pressed = False
poppp = Popup(title='', content=Label(text='High Power mode already on'), size_hint=(.5, .5))
poppp.open()
def loww(self):
if self.pressed:
# self.pressed = True
# self.np = False
popp = Popup(title='', content=Label(text='Low Power mode already on'), size_hint=(.5, .5))
popp.open()
elif not self.pressed:
self.ids.lp.background_color = 0.18, 0.843, 0.227, 1
self.ids.hp.background_color = 1, .3, .4, .85
self.pressed = True
self.np = False
poppi = Popup(title='', content=Label(text='Low Power Mode Activated'), size_hint=(.5, .5))
poppi.open()
class IssueScreen(Screen) :
pass
class CustomDropDown(DropDown):
pass
class ReportScreen(Screen) :
pass
class DownloadScreen(Screen) :
def website(instance):
webbrowser.open('http://www.cs.odu.edu/~411crystal/')
pass
class CameraScreen(Screen):
objectLabel = StringProperty()
timeStamp = 0
translatedWord = ""
def playSound(self):
global target
if self.translatedWord == "":