← Selected publications

Beyond subjectivity: Continuous cybersickness detection using eeg-based multitaper spectrum estimation

Demirel, B. U., Dogan, A. H., Rossie, J., Möbus M., Holz, C. · IEEE Transactions on Visualization and Computer Graphics · 2025
Beyond subjectivity: Continuous cybersickness detection using eeg-based multitaper spectrum estimation

Problem

Cybersickness (dizziness, nausea) is dynamic, but it is usually scored only once, after immersion, with subjective questionnaires (SSQ) in motion-restricted setups. Those labels are coarse and retrospective and cannot follow how sickness rises during free interaction.

Signals and setup

16 participants cycled through a Unity VR environment (Quest 2) for about two hours while two streams were recorded passively: dry-electrode EEG (DSI-24) and the headset's head-motion / inertial signals. Continuous ground-truth sickness was logged by each participant on a joystick and verified against the post-session SSQ; the peak sickness level reached ranged from 0.1 to 0.85 across people.

Multitaper spectral features

EEG is split into 3-second windows and its power spectrum is estimated with a multitaper method over \(K\) orthogonal Slepian sequences \(g_k\), which trades a little bias for much lower variance than a single periodogram: \[ S(f) = \frac{1}{K} \sum_{k=0}^{K-1} \left| \Delta t \sum_{n=0}^{N-1} g_k(n)\, x(n)\, e^{-i 2\pi f n \Delta t} \right|^2. \] A "temporal-relative" PSD (TR-PSD) then subtracts the average of the first three windows, so the model learns changes over time rather than absolute levels. The EEG 1/f spectral slope correlates with sickness (\(r = 0.75 \pm 0.10\)).

Model and results

A ConvLSTM with one encoder per modality (EEG TR-PSD and kinematic features) predicts a continuous sickness level, trained leave-one-subject-out so the numbers reflect unseen users. EEG with TR-PSD is the strongest single modality, and adding kinematics gives the best overall model:

InputPre-processingMAEMSEAcc
Frames3D ConvNet0.8901.04214.9%
IMUkinematic0.8570.16227.1%
EEGfiltering0.8410.18244.3%
EEGfiltering + PSD0.7510.14359.0%
EEGfiltering + TR-PSD0.6200.10969.4%
EEG + IMUTR-PSD + IMU0.6380.09276.8%

TR-PSD adds over 12% accuracy versus a plain multitaper PSD, and a 3-second window is optimal (76.8%, vs 57% at 1s and 62% at 10s). The pipeline is light enough to run on an ARM Cortex-M microcontroller (about 246 ms, 3.4 mJ, under 512 KB flash and 128 KB RAM per segment). The dataset and code are released. Published in IEEE TVCG, 2025; with ETH Zürich's Sensing, Interaction & Perception Lab.