REVIEW 2 major objections 7 minor 51 references
Event-Based Eye Tracking. 2025 Event-based Vision Workshop
T0 review · 2 major / 7 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read Event-based pupil tracking reaches 1.14-pixel error on a public benchmark, the paper reports.
desk verdict The 2025 leaderboard numbers are a useful descriptive snapshot, but the year-over-year improvement claim is not supported because the metric and label frequency changed; the paper is worth publishing with modest revisions. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central objects are the event stream as spatiotemporal tuples $(x, y, t, p)$, the binned event-frame representation, the pixel-error metric defined as Euclidean distance between predicted and ground-truth pupil coordinates, and a set of network designs that combine spatial encoders with temporal sequence models. The winning architecture uses a bidirectional relative-positional attention bias that linearly down-weights attention with temporal distance, separately for forward and backward directions. The post-processing mechanism computes local motion variance to set an adaptive median-filter window and aggregates event flow in a region of interest to shift predictions. These components together carry the argument that sparse event data plus explicit temporal modeling can reach sub-1.7-pixel accuracy at 100 Hz.
What would settle it
Rerun this year's top models on the 2024 evaluation protocol (p-accuracy at a 10-pixel threshold with 20 Hz labels) and compute their p-10 scores; if they do not exceed last year's best p-10 on the same protocol, the claimed improvement is an artifact of the metric and label-rate change.
Extended reading notes
Core claim
The survey reports that event-based pupil tracking has crossed a practical accuracy threshold: four independent methods localize the pupil center with 1.14 to 1.61 pixel error at 100 Hz on the 3ET+ benchmark while keeping model sizes between 0.8 and 7.1 million parameters. The winning approach combines a convolutional spatial encoder with a bidirectional gated recurrent unit and a self-attention module whose relative position bias is split into forward and backward temporal components. Other top solutions use a 3D CNN cascaded with GRU and Mamba modules to capture implicit short-term and explicit long-term dynamics, or apply inference-time post-processing—motion-aware median filtering and optical-flow-based local refinement—to an existing lightweight spatiotemporal network. The paper further reports that data augmentation such as temporal shifting, spatial flipping, and random event deletion improves accuracy from 1.70 to 1.61 pixel error on the same network, and it frames these results as evidence that event-based eye tracking is viable for low-power, high-speed wearable systems.
Load-bearing premise
The headline 'better than last year' assumes that this year's pixel-error scores at 100 Hz labels are directly comparable with last year's p-accuracy scores at 20 Hz labels, even though the survey states both changed.
Editorial extensions
If this is right
- At 1.14 to 1.61 pixel error, event-based trackers are within the range needed for gaze-based interaction in head-mounted displays, where sub-2-pixel errors are considered usable.
- Model-agnostic post-processing that adds only about 512 floating-point operations per prediction can improve any base tracker without retraining, which is a practical recipe for edge deployment.
- Sub-million-parameter models reach 1.42 to 1.61 pixel error, suggesting that event-based eye tracking is feasible for the power and memory budgets of wearable devices.
- The shift from p-accuracy to raw pixel error exposes headroom that near-perfect p-10 scores hid, making further algorithmic improvement visible and measurable.
- Explicitly modeling short-term motion (with recurrent or 3D convolutional layers) and long-term dependencies (with attention or state-space models) is a workable template for event-sequence regression.
Reading between the lines
- Editorial inference: the year-over-year comparison is not like-for-like because both the label rate (20 Hz to 100 Hz) and the metric (p-accuracy to pixel error) changed; the real gain may be in temporal resolution rather than in spatial accuracy.
- Editorial inference: reporting only point estimates of pixel error without variance, confidence intervals, or per-subject breakdowns makes differences among the four top teams (1.14 vs 1.61) hard to interpret; a repeated-seed evaluation could establish whether the ordering is stable.
- Editorial inference: a natural follow-up is an end-to-end event-driven implementation, since several components (attention, GRU, Mamba) are sequential and the paper's own hardware section names latency, sparsity, and burst handling as the open constraints.
- Editorial inference: the augmentation recipe (temporal shift, spatial flip, event deletion) is tested on only one base network; applying it across the other top architectures would tell whether the gain is general or architecture-specific.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper is a workshop survey of the 2025 Event-Based Eye Tracking Challenge held at CVPR 2025. It introduces the 3ET+ dataset and the pupil-center regression task, describes the evaluation metric (pixel error) and challenge organization, summarizes the top four team solutions (BRAT, EyeTracking@SMU post-processing, TDTracker, and CherryChums data augmentation), and closes with a hardware-oriented discussion. The central claim is that four teams achieved pixel errors below 1.7, outperforming the best results from the previous year's challenge.
Significance. If taken as reported, the challenge results are a useful descriptive record: compact models (0.8–7.1M parameters) reportedly achieve pixel errors of 1.14–1.61 at 100 Hz on 3ET+. The survey has concrete strengths: it documents the challenge protocol, reports parameter counts and MACs, and mandates source-code submission for reproducibility. However, the headline claim of year-over-year improvement is not supported because the 2025 and 2024 evaluation protocols are not comparable. The survey therefore is a useful archive of the 2025 competition but does not, as written, establish that event-based eye tracking has advanced beyond the previous edition.
major comments (2)
- [Section 2.5] The claim that 'four participating teams achieved a pixel error below 1.7, outperforming the best results from the previous year' is not supported by the evidence presented. The manuscript itself states that both the label frequency (20 Hz to 100 Hz) and the evaluation metric (p-accuracy to pixel error) changed. A high p@10 score from 2024 (e.g., 99.37% for CherryChums in Table 7) is not equivalent to a pixel error below or above 1.7, and the 5x increase in label frequency changes the task. No 2024 model was re-evaluated under the 2025 protocol, so the improvement claim is not a like-for-like comparison. This claim is load-bearing for the paper's narrative and should be either removed or supported by a re-evaluation of 2024 baselines under the 2025 metric.
- [Table 1 and Section 3] The top-team pixel errors (1.14, 1.42, 1.50, 1.61) are reported as single point values without error bars, standard deviations, or multiple runs. The differences between adjacent ranks are less than half a pixel, which may be within the noise of manual pupil-center annotation or run-to-run variation. Without variance estimates, the ranking itself and the 'notable improvement' claim are not statistically grounded. The survey should report repeated evaluations or at least discuss the expected annotation noise level.
minor comments (7)
- [Algorithm 2, line 26] The update for the y-coordinate uses dx in the numerator: 'y_(R,f,pred) <- y_(f,pred) + dx / ||dx,dy||'. This appears to be a typographical error; it should use dy. As written, the pseudocode does not implement the described optical-flow refinement.
- [Section 5.1, Eq. (4)] The loss formula is written as (1/T) * sqrt( sum_{t=1}^T (pred - label)^2 ). This is not the standard RMSE, which would be sqrt( (1/T) * sum ). The current expression scales the error down by an additional factor of sqrt(T), which may unintentionally alter the training objective. Please clarify.
- [Table 1 and Tables 4, 6] It is not stated whether the 'pixel error' column in Table 1 refers to the private or public leaderboard scores. Teams report both in their own tables; the survey should specify which value is used for the final ranking.
- [Section 5.3, Results] The sentence 'After post-processing, the MSE is optimized to 1.4936 on the interpolation ground truth from 3ET+ 2024' is confusing, as the paper elsewhere uses pixel error, and the relationship between this value and the private/public scores is not explained.
- [Abstract] The phrase 'methods from teams rank the top' is ungrammatical; it should be 'methods from the top-ranked teams.' Also, 'In each method, accuracy, model size, and number of operations are reported' is awkward and could be rephrased.
- [Section 3.2] The statement 'There were, in total, 22 user accounts registered and participated the challenge' is ambiguous: does it mean 22 unique teams or 22 accounts? It should be clarified.
- [Section 6] The hardware discussion is general and not tightly connected to the challenge results presented earlier; consider linking it to the specific efficiency figures reported by the teams.
Circularity Check
No circular derivation; the survey reports an externally run leaderboard. The year-over-year improvement claim is unsupported because the metric and label frequency changed, but that is a correctness/fairness gap, not a reduction of the claim to its inputs.
full rationale
This paper is a challenge survey, not a derivation chain. There is no equation that is fitted to data and then renamed as a prediction, no ansatz imported through self-citation as an external theorem, and no uniqueness claim used to force a choice. The top-team pixel errors in Table 1 are measured Kaggle leaderboard scores, not quantities constructed from the organizers' inputs. The only potentially load-bearing assertion is in Section 2.5: 'four participating teams achieved a pixel error below 1.7, outperforming the best results from the previous year.' That claim is not circular. The paper itself states that both the label frequency (20 Hz to 100 Hz) and the metric (p-accuracy to pixel error) changed, so the comparison is not like-for-like; no re-evaluation of 2024 models under the 2025 protocol is reported, and no variance or annotation-noise estimate is given. These are evidentiary limitations, but the assertion is not equivalent to its own inputs by construction. The self-citations to the organizers' own 3ET+ dataset [11,47] and to baselines such as [10,37] are normal for a challenge summary and are not load-bearing: the leaderboard results are externally generated by participant submissions. The HKUSTGZ report's phrase 'interpolation ground truth from 3ET+ 2024' may indicate that the 100 Hz labels were interpolated rather than independently annotated, which would be a benchmark-validity concern rather than a circularity step. No circular step meeting the evidentiary bar is present, so the analysis is an honest non-finding.
Assumptions & free parameters
free parameters (1)
- Blink ratio threshold (HKUSTGZ) =
0.09
assumptions (3)
- domain assumption 3ET+ ground-truth labels and the pixel-error metric are accurate enough to rank methods.
- domain assumption Team-reported parameters, errors, and MAC counts are honest and verified by the mandated code submission.
- domain assumption Event-based eye tracking can be evaluated year-over-year despite metric and label-rate changes.
Cite this review
Pith. "Pith review of Event-Based Eye Tracking. 2025 Event-based Vision Workshop." pith.science (2026). https://pith.science/paper/SL7UP6Q5
@misc{pith2026250418249,
author = {Pith},
title = {Pith review of: Event-Based Eye Tracking. 2025 Event-based Vision Workshop},
year = {2026},
howpublished = {\url{https://pith.science/paper/SL7UP6Q5}},
note = {Machine review of arXiv:2504.18249}
}
read the original abstract
This survey serves as a review for the 2025 Event-Based Eye Tracking Challenge organized as part of the 2025 CVPR event-based vision workshop. This challenge focuses on the task of predicting the pupil center by processing event camera recorded eye movement. We review and summarize the innovative methods from teams rank the top in the challenge to advance future event-based eye tracking research. In each method, accuracy, model size, and number of operations are reported. In this survey, we also discuss event-based eye tracking from the perspective of hardware design.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
MLflow: A Machine Learning Lifecycle Platform. https: //mlflow.org/. Accessed: 2024-04-09. 3
work page 2024
-
[2]
DVXplorer Mini User Guide. https://inivation. com / wp - content / uploads / 2023 / 03 / DVXplorer-Mini.pdf. 2
work page 2023
-
[3]
Anastasios N. Angelopoulos, Julien N.P. Martel, Amit P. Kohli, J ¨org Conradt, and Gordon Wetzstein. Event-based near-eye gaze tracking beyond 10,000 hz.IEEE Transactions on Visualization and Computer Graphics, 27(5):2577–2586,
-
[4]
Nuwan Bandara, Thivya Kandappu, Argha Sen, Ila Gokarn, and Archan Misra. EyeGraph: modularity-aware spatio tem- poral graph clustering for continuous event-based eye track- ing. Advances in Neural Information Processing Systems , 37:120366–120380, 2024. 6
work page 2024
-
[5]
Nuwan Bandara, Thivya Kandappu, and Archan Misra. Model-agnostic inference-time post-processing and local re- finement for enhanced event-based eye tracking. arXiv,
-
[6]
Retina: Low-power eye 11 tracking with event camera and spiking hardware
Pietro Bonazzi, Sizhen Bian, Giovanni Lippolis, Yawei Li, Sadique Sheik, and Michele Magno. Retina: Low-power eye 11 tracking with event camera and spiking hardware. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5684–5692, 2024. 2
work page 2024
-
[7]
Tinytl: reduce memory, not parameters for ef- ficient on-device learning
Han Cai, Chuang Gan, Ligeng Zhu Massachusetts Insti- tute of Technology, and Song Han Massachusetts Institute of Technology. Tinytl: reduce memory, not parameters for ef- ficient on-device learning. In Proceedings of the 34th Inter- national Conference on Neural Information Processing Sys- tems, Red Hook, NY , USA, 2020. Curran Associates Inc. 4
work page 2020
-
[8]
An efficient accelerator for multi- ple convolutions from the sparsity perspective
Qinyu Chen, Yan Huang, Rui Sun, Wenqing Song, Zhonghai Lu, Yuxiang Fu, and Li Li. An efficient accelerator for multi- ple convolutions from the sparsity perspective. IEEE Trans- actions on Very Large Scale Integration (VLSI) Systems , 28 (6):1540–1544, 2020. 4
work page 2020
Show all 51 references
-
[9]
Skydiver: A spiking neural network accelerator exploiting spatio-temporal workload balance
Qinyu Chen, Chang Gao, Xinyuan Fang, and Haitao Luan. Skydiver: A spiking neural network accelerator exploiting spatio-temporal workload balance. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 41(12):5732–5736, 2022. 4
2022
-
[10]
3et: Efficient event-based eye tracking using a change-based convlstm network
Qinyu Chen, Zuowen Wang, Shih-Chii Liu, and Chang Gao. 3et: Efficient event-based eye tracking using a change-based convlstm network. 2023 IEEE Biomedical Circuits and Sys- tems Conference (BioCAS), 2023. 2, 3, 5, 7
2023
-
[11]
Event-Based Eye Tracking
Qinyu Chen, Chang Gao, Min Liu, Daniele Perrone, et al. Event-Based Eye Tracking. 2025 event-based vision work- shop. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition Workshops, 2025. 2
2025
-
[12]
Deltakws: A 65nm 36nj/decision bio-inspired temporal-sparsity-aware digital keyword spotting ic with 0.6v near-threshold sram
Qinyu Chen, Kwantae Kim, Chang Gao, Sheng Zhou, Taek- wang Jang, Tobi Delbruck, and Shih-Chii Liu. Deltakws: A 65nm 36nj/decision bio-inspired temporal-sparsity-aware digital keyword spotting ic with 0.6v near-threshold sram. IEEE Transactions on Circuits and Systems for Artif...
2025
-
[13]
Empirical evaluation of gated recurrent neu- ral networks on sequence modeling
Junyoung Chung, C ¸ aglar G¨ulc ¸ehre, KyungHyun Cho, and Yoshua Bengio. Empirical evaluation of gated recurrent neu- ral networks on sequence modeling. CoRR, abs/1412.3555,
-
[14]
Facet: Fast and accurate event-based eye track- ing using ellipse modeling for extended reality
Junyuan Ding, Ziteng Wang, Chang Gao, Min Liu, and Qinyu Chen. Facet: Fast and accurate event-based eye track- ing using ellipse modeling for extended reality. 2025. 2
2025
-
[15]
A dataset of eye movements for the children with autism spectrum disorder
Huiyu Duan, Guangtao Zhai, Xiongkuo Min, Zhaohui Che, Yi Fang, Xiaokang Yang, Jes ´us Guti ´errez, and Patrick Le Callet. A dataset of eye movements for the children with autism spectrum disorder. In Proceedings of the 10th ACM Multimedia Systems Conference, pages 255–260, 2019. 1
2019
-
[16]
Bliss- cam: Boosting eye tracking efficiency with learned in-sensor sparse sampling
Yu Feng, Tianrui Ma, Yuhao Zhu, and Xuan Zhang. Bliss- cam: Boosting eye tracking efficiency with learned in-sensor sparse sampling. In 2024 ACM/IEEE 51st Annual Interna- tional Symposium on Computer Architecture (ISCA) , pages 1262–1277. IEEE, 2024. 11
2024
-
[17]
Event-based vision: A survey
Guillermo Gallego, Tobi Delbr ¨uck, Garrick Orchard, Chiara Bartolozzi, Brian Taba, Andrea Censi, Stefan Leutenegger, Andrew J Davison, J ¨org Conradt, Kostas Daniilidis, et al. Event-based vision: A survey. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(1)...
2022
-
[18]
Edgedrnn: Recurrent neural network accelerator for edge inference
Chang Gao, Antonio Rios-Navarro, Xi Chen, Shih-Chii Liu, and Tobi Delbruck. Edgedrnn: Recurrent neural network accelerator for edge inference. IEEE Journal on Emerging and Selected Topics in Circuits and Systems, 10(4):419–432,
-
[19]
Spartus: A 9.4 top/s fpga-based lstm accelerator exploiting spatio- temporal sparsity
Chang Gao, Tobi Delbruck, and Shih-Chii Liu. Spartus: A 9.4 top/s fpga-based lstm accelerator exploiting spatio- temporal sparsity. IEEE Transactions on Neural Networks and Learning Systems, 2022. 4
2022
-
[20]
Mamba: Linear-time sequence mod- eling with selective state spaces, 2023
Albert Gu and Tri Dao. Mamba: Linear-time sequence mod- eling with selective state spaces, 2023. 8
2023
-
[21]
Song Han, Jeff Pool, John Tran, and William J. Dally. Learn- ing both weights and connections for efficient neural net- works. In Proceedings of the 29th International Conference on Neural Information Processing Systems - Volume 1, page 1135–1143, Cambridge, MA, USA, 2015. MIT...
2015
-
[22]
Eie: Effi- cient inference engine on compressed deep neural network
Song Han, Xingyu Liu, Huizi Mao, Jing Pu, Ardavan Pe- dram, Mark A Horowitz, and William J Dally. Eie: Effi- cient inference engine on compressed deep neural network. ACM SIGARCH Computer Architecture News , 44(3):243– 254, 2016
2016
-
[23]
Ese: Efficient speech recognition engine with sparse lstm on fpga
Song Han, Junlong Kang, Huizi Mao, Yiming Hu, Xin Li, Yubin Li, Dongliang Xie, Hong Luo, Song Yao, Yu Wang, et al. Ese: Efficient speech recognition engine with sparse lstm on fpga. In Proceedings of the 2017 ACM/SIGDA in- ternational symposium on field-programmable gate array...
2017
-
[24]
Eye tracking: A comprehensive guide to methods and measures
Kenneth Holmqvist, Marcus Nystr ¨om, Richard Andersson, Richard Dewhurst, Halszka Jarodzka, and Joost Van de Wei- jer. Eye tracking: A comprehensive guide to methods and measures. OUP Oxford, 2011. 6
2011
-
[25]
Two sparsities are better than one: unlocking the perfor- mance benefits of sparse–sparse networks
Kevin Hunter, Lawrence Spracklen, and Subutai Ahmad. Two sparsities are better than one: unlocking the perfor- mance benefits of sparse–sparse networks. Neuromorphic Computing and Engineering, 2(3):034004, 2022. 4
2022
-
[26]
Williams
Kwang-Hyuk Lee and Leanne M. Williams. Eye movement dysfunction as a biological marker of risk for schizophre- nia. Australian & New Zealand Journal of Psychiatry , 34 (1 suppl):A91–A100, 2000. PMID: 11129321. 1
2000
-
[27]
Tonic: event- based datasets and transformations., 2021
Gregor Lenz, Kenneth Chaney, Sumit Bam Shrestha, Omar Oubari, Serge Picaud, and Guido Zarrella. Tonic: event- based datasets and transformations., 2021. Documentation available under https://tonic.readthedocs.io. 3
2021
-
[28]
De- sign of an rgbw color vga rolling and global shutter dynamic and active-pixel vision sensor
Chenghan Li, Christian Brandli, Raphael Berner, Hongjie Liu, Minhao Yang, Shih-Chii Liu, and Tobi Delbruck. De- sign of an rgbw color vga rolling and global shutter dynamic and active-pixel vision sensor. In 2015 IEEE International Symposium on Circuits and Systems (ISCAS) , p...
2015
-
[29]
E- track: Eye tracking with event camera for extended reality (xr) applications
Nealson Li, Ashwin Bhat, and Arijit Raychowdhury. E- track: Eye tracking with event camera for extended reality (xr) applications. In 2023 IEEE 5th International Confer- ence on Artificial Intelligence Circuits and Systems (AICAS), pages 1–5. IEEE, 2023. 2
2023
-
[30]
E- gaze: Gaze estimation with event camera
Nealson Li, Muya Chang, and Arijit Raychowdhury. E- gaze: Gaze estimation with event camera. IEEE Transac- tions on Pattern Analysis and Machine Intelligence , 46(7): 4796–4811, 2024. 2 12
2024
-
[31]
A 128× 128 120 db 15 µs latency asynchronous temporal con- trast vision sensor
Patrick Lichtsteiner, Christoph Posch, and Tobi Delbruck. A 128× 128 120 db 15 µs latency asynchronous temporal con- trast vision sensor. IEEE Journal of Solid-State Circuits, 43 (2):566–576, 2008. 2
2008
-
[32]
Fapnet: An effective frequency adaptive point-based eye tracker
Xiaopeng Lin, Hongwei Ren, and Bojun Cheng. Fapnet: An effective frequency adaptive point-based eye tracker. InPro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5789–5798, 2024. 2
2024
-
[33]
Energy-efficient activity-driven computing architec- tures for edge intelligence
Shih-Chii Liu, Chang Gao, Kwantae Kim, and Tobi Del- bruck. Energy-efficient activity-driven computing architec- tures for edge intelligence. In 2022 International Electron Devices Meeting (IEDM), pages 21.2.1–21.2.4, 2022. 4
2022
-
[34]
Bringing dynamic sparsity to the forefront for low-power audio edge computing: Brain- inspired approach for sparsifying network updates
Shih-Chii Liu, Sheng Zhou, Zixiao Li, Chang Gao, Kwan- tae Kim, and Tobi Delbruck. Bringing dynamic sparsity to the forefront for low-power audio edge computing: Brain- inspired approach for sparsifying network updates. IEEE Solid-State Circuits Magazine, 16(4):62–69, 2024. 4
2024
-
[35]
Fovealnet: Advancing ai-driven gaze tracking so- lutions for efficient foveated rendering in virtual reality
Wenxuan Liu, Budmonde Duinkharjav, Qi Sun, and Sai Qian Zhang. Fovealnet: Advancing ai-driven gaze tracking so- lutions for efficient foveated rendering in virtual reality. IEEE Transactions on Visualization and Computer Graph- ics, 2025. 11
2025
-
[36]
Event-based asynchronous sparse con- volutional networks
Nico Messikommer, Daniel Gehrig, Antonio Loquercio, and Davide Scaramuzza. Event-based asynchronous sparse con- volutional networks. In Computer Vision – ECCV 2020 ,
2020
-
[37]
A Lightweight Spatiotem- poral Network for Online Eye Tracking with Event Camera
Yan Ru Pei, Sasskia Br ¨uers, S ´ebastien Crouzet, Douglas McLelland, and Olivier Coenen. A Lightweight Spatiotem- poral Network for Online Eye Tracking with Event Camera. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, 2024. 2, 7, 9
2024
-
[38]
Eye movements in parkinson’s disease and inherited parkinsonian syndromes
Elena Pretegiani and Lance M Optican. Eye movements in parkinson’s disease and inherited parkinsonian syndromes. Frontiers in Neurology, 8:592, 2017. 1
2017
-
[39]
Frequency-aware event cloud network
Hongwei Ren, Fei Ma, Xiaopeng Lin, Yuetong Fang, Hongx- iang Huang, Yulong Huang, Yue Zhou, Haotian Fu, Ziyi Yang, Fei Richard Yu, et al. Frequency-aware event cloud network. arXiv preprint arXiv:2412.20803, 2024. 8
2024 arXiv
-
[40]
Exploring temporal dynamics in event- based eye tracker
Hongwei Ren, Xiaopeng Lin, Hongxiang Huang, Yue Zhou, and Bojun Cheng. Exploring temporal dynamics in event- based eye tracker. arXiv preprint arXiv:2503.23725, 2025. 8
2025 arXiv
-
[41]
Alberto Sabater, Luis Montesano, and Ana C. Murillo. Event transformer. a sparse-aware solution for efficient event data processing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Work- shops, pages 2677–2686, 2022. 2
2022
-
[42]
Sekikawa, K
Y . Sekikawa, K. Hara, and H. Saito. Eventnet: Asynchronous recursive event processing. In 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 3882–3891, Los Alamitos, CA, USA, 2019. IEEE Computer Society. 2
2019
-
[43]
A comparison of eye tracking latencies among sev- eral commercial head-mounted displays.i-Perception, 12(1): 2041669520983338, 2021
Niklas Stein, Diederick C Niehorster, Tamara Watson, Frank Steinicke, Katharina Rifai, Siegfried Wahl, and Markus Lappe. A comparison of eye tracking latencies among sev- eral commercial head-mounted displays.i-Perception, 12(1): 2041669520983338, 2021. 2
2021
-
[44]
Event-based kilohertz eye tracking using coded differential lighting
Timo Stoffregen, Hossein Daraei, Clare Robinson, and Alexander Fix. Event-based kilohertz eye tracking using coded differential lighting. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages 2515–2523, 2022. 2
2022
-
[45]
Toward efficient eye tracking in ar/vr devices: A near-eye dvs-based processor for real-time gaze estimation
Shihang Tan, Jinqiao Yang, Jiayu Huang, Ziyi Yang, Qinyu Chen, Lirong Zheng, and Zhuo Zou. Toward efficient eye tracking in ar/vr devices: A near-eye dvs-based processor for real-time gaze estimation. IEEE Transactions on Circuits and Systems I: Regular Papers, pages 1–13, 2025. 2
2025
-
[46]
Exploiting spatial sparsity for event cameras with visual transformers
Zuowen Wang, Yuhuang Hu, and Shih-Chii Liu. Exploiting spatial sparsity for event cameras with visual transformers. In 2022 IEEE International Conference on Image Processing (ICIP), pages 411–415, 2022. 2
2022
-
[47]
Conde, Radu Timofte, Shih-Chii Liu, Qinyu Chen, et al
Zuowen Wang, Chang Gao, Zongwei Wu, Marcos V . Conde, Radu Timofte, Shih-Chii Liu, Qinyu Chen, et al. Event- Based Eye Tracking. AIS 2024 Challenge Survey. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, 2024. 2, 3
2024
-
[48]
Mam- bapupil: Bidirectional selective recurrent model for event- based eye tracking
Zhong Wang, Zengyu Wan, Han Han, Bohao Liao, Yu- liang Wu, Wei Zhai, Yang Cao, and Zheng-jun Zha. Mam- bapupil: Bidirectional selective recurrent model for event- based eye tracking. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages ...
2024
-
[49]
The neurobench framework for benchmarking neuromorphic computing algorithms and systems
Jason Yik, Korneel Van den Berghe, Douwe den Blanken, Younes Bouhadjar, Maxime Fabre, Paul Hueber, Weijie Ke, Mina A Khoei, Denis Kleyko, Noah Pacik-Nelson, et al. The neurobench framework for benchmarking neuromorphic computing algorithms and systems. Nature Communica- tions,...
2025
-
[50]
Swift-Eye: to- wards anti-blink pupil tracking for precise and robust high- frequency near-eye movement analysis with event cameras
Tongyu Zhang, Yiran Shen, Guangrong Zhao, Lin Wang, Xi- aoming Chen, Lu Bai, and Yuanfeng Zhou. Swift-Eye: to- wards anti-blink pupil tracking for precise and robust high- frequency near-eye movement analysis with event cameras. IEEE Transactions on Visualization and Computer ...
2024
-
[51]
Ev-eye: Rethink- ing high-frequency eye tracking through the lenses of event cameras
Guangrong Zhao, Yurun Yang, Jingwei Liu, Ning Chen, Yi- ran Shen, Hongkai Wen, and Guohao Lan. Ev-eye: Rethink- ing high-frequency eye tracking through the lenses of event cameras. Advances in Neural Information Processing Sys- tems, 36, 2024. 2 13
2024
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.