forked from nicluo/slouchy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slouchy.py
executable file
·129 lines (94 loc) · 3.92 KB
/
slouchy.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import signal
import time
from PyQt5 import QtCore, QtGui, QtWidgets
# Local imports
import config
from main import take_picture, determine_posture
# This fixes an UnboundLocalError / referenced before assignment error...
# Directly importing slouching_results doesn't work?
from main import slouching_results as slouching_results_what
# Qt4 threading advice from here: https://joplaete.wordpress.com/2010/07/21/threading-with-pyqt4/
check_frequency = config.poll_rate
# Set initial values to slouchy.ini
def setup():
maybe_image = take_picture(config.video_device)
maybe_current_posture = determine_posture(maybe_image)
if maybe_current_posture.success:
distance_reference = str(maybe_current_posture.result.get('distance'))
config.config_file['MAIN']['distance_reference'] = distance_reference
print("Reference value detected as:", maybe_current_posture.result)
else:
print("Error:", maybe_current_posture.result)
return maybe_current_posture
config.config_file.write()
class TrayIcon(QtWidgets.QSystemTrayIcon):
def __init__(self, icon, parent=None):
QtWidgets.QSystemTrayIcon.__init__(self, icon, parent)
self.workThread = SlouchingThread()
menu = QtWidgets.QMenu(parent)
setupAction = menu.addAction("Setup")
exitAction = menu.addAction("Quit")
self.setContextMenu(menu)
exitAction.triggered.connect(sys.exit)
setupAction.triggered.connect(setup)
def __del__(self):
QtWidgets.QSystemTrayIcon.__del__(self)
self.workThread.terminate()
def alert(self):
# Alerting by receiving signal
self.workThread.slouching_alert.connect(self.showMessage)
self.workThread.start()
class WrapperWidget(QtWidgets.QWidget):
def __init__(self, parent=None):
QtWidgets.QWidget.__init__(self, parent)
self.setGeometry(100, 100, 100, 100)
self.setWindowTitle('threads')
# self.show()
class SlouchingThread(QtCore.QThread):
slouching_alert = QtCore.pyqtSignal(str, str, name="slouching_alert")
def __init__(self):
QtCore.QThread.__init__(self)
self.run_loop = True
# Helps ensure that the thread quits before it's destroyed.
def __del__(self):
self.wait()
# I can't get the timing right but I think having this
# will help kill our while loop in run()
# This hopefully avoids a race condition where the camera is stuck active
# if we quit while it's taking a picture.
# I could be entirely wrong though...
def terminate(self):
self.run_loop = False
# Called run but start() actually runs this
def run(self):
while self.run_loop:
# TODO: Possibly collect a certain number of readings and then only bother people if all or most of the readings indicate slouching. Best 2 out of 3?
maybe_slouching = slouching_results_what()
if maybe_slouching.success:
slouching_results = maybe_slouching.result
slouching_messages = str('')
body_slouching = slouching_results.get('body_slouching')
head_tilting = slouching_results.get('head_tilting')
if body_slouching:
slouching_messages = slouching_messages + "Your body is slouched!"
if head_tilting:
if len(slouching_messages) > 0:
slouching_messages = slouching_messages + '\n'
slouching_messages = slouching_messages + "Your head is tilted!"
if body_slouching or head_tilting:
print("your posture is off!")
self.slouching_alert.emit("Your posture is off!", str(slouching_messages))
else:
print("Error encountered")
self.slouching_alert.emit("Error encountered", str(maybe_slouching.result))
time.sleep(float(check_frequency))
app = QtWidgets.QApplication(sys.argv)
signal.signal(signal.SIGINT, signal.SIG_DFL) #Force PYQT to handle SIGINT (CTRL+C)
w = WrapperWidget()
tray = TrayIcon(QtGui.QIcon('slouchy_icon.png'), w)
tray.show()
tray.alert()
sys.exit(app.exec_())