-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata_window.py
472 lines (391 loc) · 18.3 KB
/
metadata_window.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
import sys
import platform
import wmi
import screeninfo
import cv2
from datetime import datetime
from PyQt5.QtWidgets import (QMainWindow, QWidget, QVBoxLayout, QHBoxLayout,
QLineEdit, QComboBox, QPushButton, QFormLayout, QMessageBox,
QSpinBox, QGroupBox, QTextEdit, QApplication)
from PyQt5.QtCore import QThread, pyqtSignal
from setup_window import SetupWindow
class SystemInfoCollector:
"""Utility class to collect system information automatically."""
@staticmethod
def get_laptop_info():
"""Collect laptop specifications."""
try:
w = wmi.WMI()
system_info = w.Win32_ComputerSystem()[0]
os_info = w.Win32_OperatingSystem()[0]
cpu_info = w.Win32_Processor()[0]
return {
"manufacturer": system_info.Manufacturer,
"model": system_info.Model,
"os": f"{os_info.Caption} {os_info.OSArchitecture}",
"processor": cpu_info.Name,
"ram_gb": round(float(system_info.TotalPhysicalMemory) / (1024**3), 2),
"hostname": platform.node()
}
except Exception as e:
print(f"Error collecting laptop info: {str(e)}")
return {}
@staticmethod
def get_camera_info():
"""Collect webcam specifications."""
try:
camera_info = {}
cap = cv2.VideoCapture(0)
if cap.isOpened():
camera_info = {
"resolution": f"{int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))}x{int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))}",
"fps": int(cap.get(cv2.CAP_PROP_FPS))
}
cap.release()
return camera_info
except Exception as e:
print(f"Error collecting camera info: {str(e)}")
return {}
@staticmethod
def get_screen_info():
"""Collect screen specifications."""
try:
monitors = screeninfo.get_monitors()
if not monitors:
return {}
primary_monitor = next((m for m in monitors if m.is_primary), monitors[0])
return {
"resolution": f"{primary_monitor.width}x{primary_monitor.height}",
"size_mm": f"{primary_monitor.width_mm}x{primary_monitor.height_mm}",
"refresh_rate": getattr(primary_monitor, 'refresh_rate', 'Unknown'),
"scale_factor": getattr(primary_monitor, 'scale_factor', 1.0)
}
except Exception as e:
print(f"Error collecting screen info: {str(e)}")
return {}
class MetadataCollector(QThread):
"""Background thread for collecting system metadata."""
finished = pyqtSignal(dict)
def run(self):
"""Collect system metadata in background."""
system_info = {
"laptop": SystemInfoCollector.get_laptop_info(),
"camera": SystemInfoCollector.get_camera_info(),
"screen": SystemInfoCollector.get_screen_info()
}
self.finished.emit(system_info)
class MainWindow(QMainWindow):
"""Main window for collecting metadata and starting the experiment."""
def __init__(self, data_manager):
super().__init__()
self.data_manager = data_manager
self.metadata = {}
self.notes = []
self.system_info = {}
self.consent_given = False
# Start metadata collection in background
self.metadata_thread = MetadataCollector()
self.metadata_thread.finished.connect(self.on_metadata_collected)
self.metadata_thread.start()
self.setup_ui()
self.center_on_screen()
# Show consent while metadata is being collected
self.show_consent_form()
# Only proceed if consent was given
if not self.consent_given:
self.close()
def on_metadata_collected(self, system_info):
"""Handle completed metadata collection."""
self.system_info = system_info
self.update_system_info_preview()
self.validate_required_fields()
def validate_required_fields(self):
"""Check if all required fields are filled."""
is_valid = (
self.subject_id.text().strip() != "" and # Subject ID is required
self.experimenter_id.text().strip() != "" and # Experimenter ID is required
self.consent_given and # Consent must be given
bool(self.system_info) # System info must be collected
)
self.next_btn.setEnabled(is_valid)
def setup_ui(self):
"""Initialize the main UI components."""
self.setWindowTitle("Gaze Estimation Data Collection")
self.setMinimumSize(800, 800)
central_widget = QWidget()
self.setCentralWidget(central_widget)
layout = QVBoxLayout(central_widget)
# Experimenter information group
experimenter_group = QGroupBox("Experimenter Information")
experimenter_layout = QFormLayout()
self.experimenter_id = QLineEdit()
self.experimenter_id.textChanged.connect(self.validate_required_fields)
experimenter_layout.addRow("Experimenter ID:", self.experimenter_id)
experimenter_group.setLayout(experimenter_layout)
layout.addWidget(experimenter_group)
# Subject information group
subject_group = QGroupBox("Subject Information")
subject_layout = QFormLayout()
self.subject_id = QLineEdit()
subject_layout.addRow("Subject ID:", self.subject_id)
self.subject_id.textChanged.connect(self.validate_required_fields)
self.subject_age = QSpinBox()
self.subject_age.setRange(18, 100)
subject_layout.addRow("Age:", self.subject_age)
self.subject_gender = QComboBox()
self.subject_gender.addItems(["Male", "Female", "Other", "Prefer not to say"])
subject_layout.addRow("Gender:", self.subject_gender)
self.vision_correction = QComboBox()
self.vision_correction.addItems(["None", "Glasses", "Contact lenses"])
subject_layout.addRow("Vision Correction:", self.vision_correction)
self.dominant_eye = QComboBox()
self.dominant_eye.addItems(["Left", "Right", "Unknown"])
subject_layout.addRow("Dominant Eye:", self.dominant_eye)
subject_group.setLayout(subject_layout)
layout.addWidget(subject_group)
# System Information Preview
system_group = QGroupBox("System Information (Auto-detected)")
system_layout = QVBoxLayout()
self.system_info_text = QTextEdit()
self.system_info_text.setReadOnly(True)
system_layout.addWidget(self.system_info_text)
# collect_metadata_btn = QPushButton("Collect System Metadata")
# collect_metadata_btn.clicked.connect(self.collect_metadata)
# system_layout.addWidget(collect_metadata_btn)
system_group.setLayout(system_layout)
layout.addWidget(system_group)
# Notes section
notes_group = QGroupBox("Experiment Notes")
notes_layout = QVBoxLayout()
self.notes_input = QTextEdit()
self.notes_input.setPlaceholderText("Enter experiment notes here...")
notes_layout.addWidget(self.notes_input)
add_note_btn = QPushButton("Add Note")
add_note_btn.clicked.connect(self.add_note)
notes_layout.addWidget(add_note_btn)
notes_group.setLayout(notes_layout)
layout.addWidget(notes_group)
# Add buttons
button_layout = QHBoxLayout()
self.next_btn = QPushButton("Next")
self.next_btn.clicked.connect(self.proceed_to_setup)
self.next_btn.setEnabled(False) # Disable until metadata is collected
button_layout.addWidget(self.next_btn)
layout.addLayout(button_layout)
# Automatically collect system metadata on startup
QApplication.processEvents()
def format_system_info(self):
"""Format the system information for display."""
preview_text = "Detected System Information:\n\n"
if self.system_info.get("laptop"):
laptop = self.system_info["laptop"]
preview_text += "Laptop:\n"
preview_text += f"- Model: {laptop.get('manufacturer', 'Unknown')} {laptop.get('model', 'Unknown')}\n"
preview_text += f"- OS: {laptop.get('os', 'Unknown')}\n"
preview_text += f"- CPU: {laptop.get('processor', 'Unknown')}\n"
preview_text += f"- RAM: {laptop.get('ram_gb', 'Unknown')} GB\n\n"
if self.system_info.get("camera"):
camera = self.system_info["camera"]
preview_text += "Camera:\n"
preview_text += f"- Model: {camera.get('model', 'Unknown')}\n"
preview_text += f"- Resolution: {camera.get('resolution', 'Unknown')}\n"
preview_text += f"- FPS: {camera.get('fps', 'Unknown')}\n\n"
if self.system_info.get("screen"):
screen = self.system_info["screen"]
preview_text += "Screen:\n"
preview_text += f"- Resolution: {screen.get('resolution', 'Unknown')}\n"
preview_text += f"- Physical Size: {screen.get('size_mm', 'Unknown')} mm\n"
preview_text += f"- Refresh Rate: {screen.get('refresh_rate', 'Unknown')} Hz\n"
return preview_text
def show_consent_dialog(self, title, message):
"""
Display a wide consent dialog with proper formatting.
Args:
parent: Parent widget
title: Dialog title
message: Consent message text
Returns:
bool: True if user accepted, False otherwise
"""
msg = QMessageBox(self)
msg.setWindowTitle(title)
msg.setText(message)
# msg.setIcon(QMessageBox.Question)
# Set minimum width for the message box
msg.setStyleSheet("""
QMessageBox {
min-width: 1400px;
font-size: 14pt;
}
QMessageBox QLabel {
min-width: 1400px;
min-height: 400px;
font-size: 14pt;
}
QMessageBox QPushButton {
font-size: 14pt;
padding: 5px 20px;
min-width: 120px;
}
""")
# Add custom buttons
accept_button = msg.addButton("I Consent", QMessageBox.AcceptRole)
decline_button = msg.addButton("I Do Not Consent", QMessageBox.RejectRole)
# Format the message text with line breaks
formatted_message = message.replace(". ", ".\n\n")
msg.setText(formatted_message)
msg.exec_()
return msg.clickedButton() == accept_button
def show_consent_form(self):
"""Display informed consent form and get user response."""
consent_text = """
Purpose:
This study collects data about eye movements and facial landmarks to improve human-robot interaction.
Procedure:
- You will look at dots appearing on the screen while a camera tracks your face
- Multiple short trials (2 minutes each) with different camera angles
- Regular breaks between trials
- Total session time: approximately 10-20 minutes
_ Minimal participation age: 16 years
Data Collection:
- We collect facial landmark coordinates and eye movement data
- No actual images or video of your face are stored
- All data is anonymized and stored securely
- Data will be used for research purposes only
Your Rights:
- Participation is voluntary
- You can take breaks whenever needed
- You may stop participating at any time
- You can request your data to be deleted
Risks & Benefits:
- Minimal risk: possible mild eye fatigue
- Regular breaks are provided
- Your participation helps improve human-machine interaction technology
Do you consent to participate in this study?"""
reply = self.show_consent_dialog("INFORMED CONSENT FOR GAZE TRACKING STUDY", consent_text)
# reply = QMessageBox.question(self, 'Informed Consent',
# consent_text,
# QMessageBox.Yes | QMessageBox.No,
# QMessageBox.No)
if reply: #== QMessageBox.Yes:
self.consent_given = True
# Add consent to metadata
self.metadata['consent'] = {
'given': True,
'timestamp': datetime.now().strftime("%Y-%m-%d %H:%M:%S")
}
else:
self.consent_given = False
QMessageBox.information(self, "Study Ended",
"Thank you for your consideration. The study will now close.")
def update_system_info_preview(self):
"""Update the system information preview text."""
preview_text = "Detected System Information:\n\n"
if self.system_info.get("laptop"):
laptop = self.system_info["laptop"]
preview_text += "Laptop:\n"
preview_text += f"- Model: {laptop.get('manufacturer', 'Unknown')} {laptop.get('model', 'Unknown')}\n"
preview_text += f"- OS: {laptop.get('os', 'Unknown')}\n"
preview_text += f"- CPU: {laptop.get('processor', 'Unknown')}\n"
preview_text += f"- RAM: {laptop.get('ram_gb', 'Unknown')} GB\n\n"
if self.system_info.get("camera"):
camera = self.system_info["camera"]
preview_text += "Camera:\n"
preview_text += f"- Model: {camera.get('model', 'Unknown')}\n"
preview_text += f"- Resolution: {camera.get('resolution', 'Unknown')}\n"
preview_text += f"- FPS: {camera.get('fps', 'Unknown')}\n\n"
if self.system_info.get("screen"):
screen = self.system_info["screen"]
preview_text += "Screen:\n"
preview_text += f"- Resolution: {screen.get('resolution', 'Unknown')}\n"
preview_text += f"- Physical Size: {screen.get('size_mm', 'Unknown')} mm\n"
preview_text += f"- Refresh Rate: {screen.get('refresh_rate', 'Unknown')} Hz\n"
self.system_info_text.setText(preview_text)
def add_note(self):
"""Add a timestamped note to the notes list."""
note_text = self.notes_input.toPlainText().strip()
if note_text:
timestamp = datetime.now().strftime("%H:%M:%S")
self.notes.append({
"timestamp": timestamp,
"note": note_text
})
self.notes_input.clear()
QMessageBox.information(self, "Success", "Note added successfully!")
def validate_metadata(self, subject_data):
"""Validate the collected metadata."""
if not subject_data["id"]:
QMessageBox.warning(self, "Validation Error", "Subject ID is required!")
return False
if not self.experimenter_id.text():
QMessageBox.warning(self, "Validation Error", "Experimenter ID is required!")
return False
return True
def center_on_screen(self):
"""Center the window on the screen."""
# Get the screen's geometry
screen = QApplication.primaryScreen().geometry()
# Get the window's geometry
window = self.geometry()
# Calculate the center point
center_point = screen.center()
# Move the window
self.move(center_point.x() - window.width()//2,
center_point.y() - window.height()//2)
def proceed_to_setup(self):
"""Save metadata and proceed to experiment setup."""
if not hasattr(self, 'metadata') or not self.metadata:
QMessageBox.warning(self, "Warning", "Please wait for metadata collection to complete!")
return
try:
# Validate required fields again
if not self.subject_id.text().strip():
QMessageBox.warning(self, "Error", "Subject ID is required!")
return
if not self.experimenter_id.text().strip():
QMessageBox.warning(self, "Error", "Experimenter ID is required!")
return
if not self.consent_given:
QMessageBox.warning(self, "Error", "Informed consent is required!")
return
# Collect user input
subject_data = {
"id": self.subject_id.text().strip(),
"age": self.subject_age.value(),
"gender": self.subject_gender.currentText(),
"vision_correction": self.vision_correction.currentText(),
"dominant_eye": self.dominant_eye.currentText()
}
# Update metadata with all information
self.metadata.update({
"subject": subject_data,
"session": {
"date": datetime.now().strftime("%Y-%m-%d"),
"start_time": datetime.now().strftime("%H:%M:%S"),
"experimenter": self.experimenter_id.text().strip()
},
"equipment": {
"laptop": self.system_info.get("laptop", {}),
"camera": self.system_info.get("camera", {}),
"screen": self.system_info.get("screen", {})
}
})
# Create subject directory and save metadata
subject_dir = self.data_manager.create_subject_directory(self.metadata["subject"]["id"])
self.data_manager.save_metadata(subject_dir, self.metadata)
# Launch setup window
self.setup_window = SetupWindow(self.data_manager, subject_dir)
self.setup_window.show()
self.hide()
except Exception as e:
QMessageBox.critical(self, "Error", f"Failed to proceed: {str(e)}")
def main():
"""Main function for testing the metadata window independently."""
app = QApplication(sys.argv)
from data_manager import DataManager
dm = DataManager()
window = MainWindow(dm)
window.show()
return app.exec_()
if __name__ == "__main__":
sys.exit(main())