Official codebase for the CVPR 2025 workshop paper:
Making Every Event Count: Balancing Data Efficiency and Accuracy in Event Camera Subsampling
Hesam Araghi, Jan van Gemert, Nergis Tomen
Delft University of Technology
Paper PDF | Project Page
Event cameras offer high temporal resolution and power efficiency, but their high event rates can overload processing systems. We explore six hardware-friendly event subsampling methods and assess their impact on event-based video classification.
- 📊 Systematic evaluation of 6 causal, hardware-friendly subsampling methods.
- 🧠 Proposal of a causal density-based subsampling technique to test the hypothesis that dense regions contain more information.
- 📉 Analysis of accuracy–efficiency trade-offs across three benchmark datasets.
| Type | Description |
|---|---|
| Spatial | Keep every n-th row and m-th column |
| Temporal | Keep the events in every t-th time interval |
| Random | Keep each event with probability p |
| Event Count 1 | Spatially subsample based on event counts within fixed-size windows |
| Corner-based 2 | Keep the events in the corners using the Harris corner detector |
| Causal Density-based | Causally filter and keep events more in spatiotemporally dense regions |
Visualization of six different subsampling methods applied to the same input from an event camera. All variants retain approximately the same number of events.
We evaluate our methods on:
- N-Caltech101: Object classification with camera motion.
- DVS-Gesture: Human gesture recognition with real motion.
- N-Cars: Binary classification (car vs. background) in urban driving.
uv is a fast Python package manager and virtual environment tool.
If you don't have uv, install it with:
curl -Ls https://astral.sh/uv/install.sh | shOr follow the instructions at uv's GitHub.
uv venv .venv
source .venv/bin/activateuv pip install -r requirements.txtpython train.py --cfg_path path/to/config.yamlIf you use this code or find our work helpful, please cite:
@inproceedings{araghi2025EvSubsampling,
title={Making Every Event Count: Balancing Data Efficiency and Accuracy in Event Camera Subsampling},
author={Araghi, Hesam and van Gemert, Jan and Tomen, Nergis},
booktitle={CVPR Workshop},
year={2025}
}For questions, feedback, or collaborations, feel free to reach out via:
- 📧 Email: [email protected]
- 🐛 Issues: Open an issue
We welcome contributions and discussions from the community!
