Skip to content

Commit ca3652d

Browse files
committed
Adding EyePather
1 parent 841ae9d commit ca3652d

13 files changed

+3867
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ __pycache__/*
55
venv/*
66
build/*
77
dist/*
8+
data_*/

app_tracker/app_win.spec

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
a = Analysis(
4+
['main.py'],
5+
pathex=[],
6+
binaries=[],
7+
datas=[
8+
('icon.png','icon.png'),
9+
('../venv/Lib/site-packages/mediapipe/modules', 'mediapipe/modules'),
10+
],
11+
hiddenimports=['pkg_resources', 'pkg_resources.extern', 'pkg_resources.py2_warn'], # Add hidden imports
12+
hookspath=['.'],
13+
hooksconfig={},
14+
runtime_hooks=[],
15+
excludes=[],
16+
noarchive=False,
17+
)
18+
pyz = PYZ(a.pure, a.zipped_data)
19+
exe = EXE(
20+
pyz,
21+
a.scripts,
22+
a.binaries,
23+
a.datas,
24+
[],
25+
name='EyePather_0_0_2_alpha',
26+
debug=False,
27+
bootloader_ignore_signals=False,
28+
strip=False,
29+
upx=False,
30+
upx_exclude=[],
31+
runtime_tmpdir=None,
32+
console=False,
33+
disable_windowed_traceback=False,
34+
argv_emulation=False,
35+
target_arch=None,
36+
codesign_identity=None,
37+
entitlements_file=None,
38+
icon='icon.png'
39+
)

app_tracker/calibration.py

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
import sys
2+
from PySide2.QtWidgets import QApplication, QWidget, QHBoxLayout
3+
from PySide2.QtCore import Qt, QTimer
4+
5+
from BlurWindow.blurWindow import GlobalBlur
6+
from components import EyePilotButton
7+
from dot import CircleWidget
8+
9+
import random
10+
11+
class Calibration(QWidget):
12+
def __init__(self):
13+
super().__init__()
14+
self.onQuit = None
15+
16+
# Set the window title
17+
self.setWindowTitle("Full Screen Widget")
18+
self.setAttribute(Qt.WA_TranslucentBackground)
19+
self.setGeometry(100, 100, 800, 600)
20+
21+
main_layout = QHBoxLayout()
22+
main_layout.setAlignment(Qt.AlignCenter) # Center align the items
23+
self.setLayout(main_layout)
24+
25+
# Apply stylesheet to mimic system colors for title bar
26+
27+
GlobalBlur(self.winId(),Dark=True,QWidget=self)
28+
29+
main_layout.addWidget(EyePilotButton("Quit", signal = self.quit))
30+
self.setFullScreen()
31+
32+
self.calibration_point = CircleWidget()
33+
self.calibration_point.setColor(255,0,0)
34+
self.calibration_point.show()
35+
self.calibration_point.setParent(self)
36+
37+
self.point = CircleWidget()
38+
self.point.setColor(120,60,0)
39+
self.point.show()
40+
self.point.setParent(self)
41+
# main_layout.addWidget(self.calibration_point)
42+
# Set the window size to full screen
43+
44+
self.max_points = 10
45+
self.point_counter = 0
46+
self.prev_x = 0
47+
self.prev_y = 0
48+
49+
def reset(self):
50+
self.point_counter = 0
51+
52+
def setFullScreen(self):
53+
# Get the primary screen
54+
screen = QApplication.primaryScreen()
55+
56+
# Get the geometry of the screen
57+
screen_geometry = screen.geometry()
58+
59+
# Set the size of the widget to match the screen size
60+
self.setGeometry(screen_geometry)
61+
62+
def setPositionFit(self,x,y):
63+
self.calibration_point.setPosition(x,y)
64+
65+
def setRadiusFit(self,r):
66+
self.calibration_point.setRadius(r)
67+
68+
def setPosition(self,x,y):
69+
if x != self.prev_x or y != self.prev_y:
70+
self.prev_y = y
71+
self.prev_x = x
72+
self.point_counter += 1
73+
if self.point_counter > self.max_points:
74+
self.quit()
75+
self.point.setPosition(x,y)
76+
77+
def setRadius(self,r):
78+
self.point.setRadius(r)
79+
80+
def quit(self):
81+
if self.onQuit:
82+
self.onQuit()
83+
self.close()
84+
85+
def setOnQuit(self,signal):
86+
self.onQuit = signal
87+
88+
if __name__ == "__main__":
89+
# Create the application
90+
app = QApplication(sys.argv)
91+
92+
# Create and show the full screen widget
93+
widget = Calibration()
94+
widget.show()
95+
96+
# Start the event loop
97+
sys.exit(app.exec_())

app_tracker/components.py

+226
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
from PySide2.QtWidgets import QApplication, QPushButton, QWidget, QHBoxLayout, QVBoxLayout, QLabel, QSizePolicy, QScrollBar
2+
from PySide2.QtGui import QPainter
3+
from PySide2.QtCore import Qt
4+
5+
from dot import CircleWidget
6+
7+
class EyePilotComponent():
8+
9+
def __init__(self, text, id = None):
10+
self.text = text
11+
if id is None:
12+
self.id = text
13+
else:
14+
self.id = id
15+
self.signal = None
16+
17+
def addSignal(self,signal):
18+
self.signal = signal
19+
20+
def getText(self):
21+
return self.text
22+
23+
def getID(self):
24+
return self.id
25+
26+
class EyePilotButtonComponent(EyePilotComponent,QPushButton):
27+
28+
def __init__(self, text, id = None, parent=None):
29+
super().__init__(text, id)
30+
super(EyePilotComponent, self).__init__(text, parent)
31+
32+
class ScrollBarWithText(QScrollBar):
33+
def __init__(self, text, *args, **kwargs):
34+
super().__init__(*args, **kwargs)
35+
self.text = text
36+
37+
def update_text(self,text):
38+
self.text = text
39+
40+
def paintEvent(self, event):
41+
super().paintEvent(event)
42+
43+
painter = QPainter(self)
44+
font_metrics = painter.fontMetrics()
45+
text_width = font_metrics.width(self.text)
46+
text_height = font_metrics.height()
47+
48+
# Calculate position to center the text
49+
x = (self.width() - text_width) // 2
50+
y = (self.height() + text_height) // 2
51+
52+
# Draw the text
53+
painter.drawText(x, y, self.text)
54+
55+
class EyePilotScrollComponent(EyePilotComponent,QWidget):
56+
57+
def __init__(self, text, id = None, parent=None):
58+
super().__init__(text, id)
59+
super(EyePilotComponent, self).__init__()
60+
61+
62+
class EyePilotButton(EyePilotButtonComponent):
63+
def __init__(self, text, id = None, signal=None, parent=None):
64+
super().__init__(text, id, parent)
65+
66+
# Set the style
67+
button_style = """
68+
QPushButton {
69+
color: white;
70+
font-size: 25px;
71+
background-color: rgba(255, 255, 255, 0.0);
72+
width: 200px;
73+
height: 45px;
74+
max-width: 200px;
75+
margin-left: auto;
76+
margin-right: auto;
77+
}
78+
79+
QPushButton:hover {
80+
background: qradialgradient(cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0 rgba(56, 60, 79, 0.5), stop:1 rgba(56, 60, 79, 0.3));
81+
border-radius: 5px;
82+
}
83+
"""
84+
85+
self.setStyleSheet(button_style)
86+
self.signal = signal
87+
self.clicked.connect(self.click)
88+
89+
def click(self):
90+
91+
if self.signal:
92+
self.signal()
93+
94+
class EyePilotButtonColorChoice(EyePilotButtonComponent):
95+
def __init__(self, text, id = None, signal=None, color = (45,45,45), parent=None):
96+
super().__init__(text,id,parent)
97+
98+
# Set the style
99+
button_style = """
100+
QPushButton {
101+
color: white;
102+
font-size: 25px;
103+
background-color: rgba(255, 255, 255, 0.0);
104+
width: 300px;
105+
height: 100px;
106+
min-height: 100px;
107+
padding-left: 50px;
108+
}
109+
110+
QPushButton:hover {
111+
background: qradialgradient(cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0 rgba(56, 60, 79, 0.5), stop:1 rgba(56, 60, 79, 0.3));
112+
border-radius: 5px;
113+
}
114+
115+
"""
116+
117+
self.setStyleSheet(button_style)
118+
self.signal = signal
119+
self.color = color
120+
121+
self.model_dot = CircleWidget()
122+
layout_center = self.geometry().center()
123+
self.model_dot.setPosition(50,50)
124+
self.model_dot.setColor(color[0],color[1],color[2])
125+
self.model_dot.setParent(self)
126+
self.clicked.connect(self.click)
127+
128+
def click(self):
129+
if self.signal:
130+
self.signal(self.color)
131+
132+
133+
class EyePilotScroll(EyePilotScrollComponent):
134+
def __init__(self, text, id = None, signal=None, start=1, init=1, end=10, parent=None):
135+
super().__init__(text,id,parent)
136+
137+
# Set the style
138+
scroll_styele = """
139+
QScrollBar {
140+
color: black;
141+
font-size: 25px;
142+
min-height: 60px;
143+
background-color: rgba(255, 255, 255, 0.0);
144+
145+
}
146+
147+
QScrollBar:horizontal {
148+
background: white;
149+
height: 15px;
150+
margin: 0px 40px 0 40px;
151+
}
152+
153+
QScrollBar::add-line:horizontal {
154+
background: white;
155+
width: 40px;
156+
border-top-right-radius: 10px;
157+
border-bottom-right-radius: 10px;
158+
subcontrol-position: right;
159+
subcontrol-origin: margin;
160+
}
161+
162+
QScrollBar::sub-line:horizontal {
163+
background: white;
164+
width: 40px;
165+
border-top-left-radius: 10px;
166+
border-bottom-left-radius: 10px;
167+
subcontrol-position: left;
168+
subcontrol-origin: margin;
169+
}
170+
171+
QScrollBar::handle:horizontal {
172+
background: rgba(56, 60, 79, 0.5);
173+
min-width: 20px;
174+
}
175+
QScrollBar::left-arrow:horizontal {
176+
min-width: 40px;
177+
border-top-left-radius: 10px;
178+
border-bottom-left-radius: 10px;
179+
background: rgba(150,10,10, 0.2);
180+
}
181+
QScrollBar::right-arrow:horizontal {
182+
min-width: 40px;
183+
border-top-right-radius: 10px;
184+
border-bottom-right-radius: 10px;
185+
background: rgba(10,50,150, 0.2);
186+
}
187+
188+
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
189+
background: none;
190+
}
191+
"""
192+
label_style = """
193+
QLabel {
194+
color: white;
195+
font-size: 25px;
196+
margin-left: auto;
197+
margin-right: auto;
198+
}
199+
"""
200+
main_layout = QHBoxLayout(self)
201+
v_container = QWidget()
202+
self.layout = QVBoxLayout(v_container)
203+
204+
self.label = QLabel(self.text)
205+
self.label.setStyleSheet(label_style)
206+
207+
self.scrollbar = ScrollBarWithText(f"{init}")
208+
self.scrollbar.setMinimum(start)
209+
self.scrollbar.setMaximum(end)
210+
self.scrollbar.setValue(init)
211+
self.scrollbar.setOrientation(Qt.Horizontal) # Vertical orientation
212+
self.scrollbar.valueChanged.connect(self.on_change)
213+
214+
self.scrollbar.setStyleSheet(scroll_styele)
215+
216+
217+
self.layout.addWidget(self.label)
218+
self.layout.addWidget(self.scrollbar)
219+
# self.setLayout(self.layout)
220+
main_layout.addWidget(v_container)
221+
222+
223+
def on_change(self,value):
224+
if self.signal:
225+
self.signal(value)
226+
self.scrollbar.update_text(f"{value}")

0 commit comments

Comments
 (0)