REVIEW 3 major objections 5 minor 1 cited by
An Event-Based Perception Pipeline for a Table Tennis Robot
T0 review · 3 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read An event-camera-only perception pipeline can track a table tennis ball at roughly 28 times the update rate of a frame-based system while matching its pixel accuracy.
desk verdict Solid event-only perception pipeline with a well-supported 28x update-rate advantage; the trajectory-prediction benefit is confounded by camera placement and in-sample EM fitting. 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 load-bearing object is the EROS (Exponential Reduced Ordinal Surface) event representation, a decaying gray-level surface that is updated incrementally with each incoming event, so the latest state of the scene is always available without recomputing from scratch. The pipeline runs two threads: one updates EROS event-by-event, and the other samples the surface and runs a fast C++ Hough circle detector, first at full resolution for initialization and then within a region of interest centered on the previous detection. EROS makes the representation velocity-independent, so a fast-moving ball appears as a compact circle rather than a blurred trail, and its cheap per-event update lets the pipeline keep up with event streams of roughly 10 million events per second.
What would settle it
Rerun the experiment with the two event cameras placed at the same four ceiling-corner positions used by the frame-based cameras, keeping all other settings identical; if the event-based pipeline's lower trajectory uncertainty disappears, the reported advantage is caused by camera placement rather than by the higher update rate.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that a perception pipeline built entirely on event-based cameras—two synchronized Prophesee EVK4 sensors whose asynchronous event stream updates an EROS surface event-by-event—can replace a frame-based pipeline in a table tennis robot. In their measurements, the proposed pipeline reaches (4.14 ± 0.10) × $10^{3}$ position updates per second with a mean pixel error of 1.34 ± 0.79, compared with 149 Hz and 1.32 pixels for the frame-based baseline from [3]. When the resulting 3D positions are fed into an extended Kalman filter, the event-based pipeline yields lower positional error and lower uncertainty in position, velocity, and spin throughout most of the flight. The authors conclude that the update rate of an event-based pipeline is no longer bounded by the sensor but by the detection algorithm, and that the higher rate is directly useful for robot control in the 0.1–1 s available before the robot must hit the ball.
Load-bearing premise
The comparison assumes that the event cameras and the frame-based cameras are placed so similarly that the event pipeline's lower errors and uncertainties come from its higher update rate, not from its more favorable camera positions; the paper itself notes that the two setups differ, with event cameras on the side and frame cameras on the ceiling.
Editorial extensions
If this is right
- An event-based-only pipeline can match a frame-based pipeline's pixel accuracy while delivering roughly 28 times more position updates per second, so frame rate is no longer the bottleneck for high-speed ball perception.
- Feeding these frequent updates into an extended Kalman filter reduces the uncertainty of the ball's position, velocity, and spin earlier in the flight, giving the robot controller a better basis for planning a return stroke within the 0.1–1 s flight time.
- The pipeline's update rate is set by the detection algorithm's runtime (about 91 µs in ROI mode), not by the camera's frame rate, so faster detection algorithms would directly translate into even more frequent updates.
- Since EROS is updated event-by-event, the representation always reflects the latest events, avoiding the motion blur that degrades frame-based detection of fast balls.
- The full pipeline, including source code, is released, so other groups can integrate event-only perception into their table tennis robots without building the representation and detector from scratch.
Reading between the lines
- It is a plausible extension that the same event-by-event EROS plus Hough circle design would transfer to other fast ball sports (tennis, cricket, badminton) or to evasive robotics, wherever the limiting factor is how often the sensor can report position.
- The paper's comparison is not fully controlled: the event cameras sit on the side while the frame-based cameras hang from four ceiling corners, and the ground-truth 2D positions come from e2vid reconstructions that were manually cleaned; a controlled side-by-side with co-located cameras and an independent high-speed ground truth would isolate the contribution of update rate from the contribution o
- Because the EROS update cost scales with the number of events, the pipeline's advantage may shrink in low-contrast or slow-motion scenes where the ball generates few events; an event-based pipeline shines when motion is fast and high-rate updates are needed.
- A testable next step is to replace the Hough circle detector with a learned detector operating on EROS surfaces; since the ROI detection already runs in about 91 µs, a learned detector of similar speed could raise accuracy while preserving the update-rate advantage.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes what it claims to be the first real-time perception pipeline for a table tennis robot that uses only event-based cameras. The pipeline combines an EROS event surface, updated event-by-event, with a fast Hough-based circle detector running as-fast-as-possible in a separate thread. The experiments compare this pipeline with a frame-based baseline and two event-based baselines on 2D detection accuracy, runtime, update rate, and EKF-based trajectory prediction. The headline results are an update rate of (4.14 ± 0.10) × 10^3 updates/s with a pixel error of 1.34 ± 0.79 pixels, versus 149 Hz and 1.32 pixels for the frame-based baseline, and lower position, velocity, and spin uncertainties in the trajectory-prediction experiment. The code is publicly released.
Significance. The update-rate and runtime measurements are direct and clean, and they support the paper's central quantitative claim that an event-based pipeline can provide roughly 28 times more ball-position updates per second than a frame-based pipeline while retaining comparable 2D accuracy. This is a useful and creditable contribution, and the release of the pipeline is a practical benefit to the community. However, the more ambitious claim that the higher update rate 'results in lower mean errors and uncertainties' for position, velocity, and spin rests on a trajectory-prediction comparison that is confounded by different camera geometries and by in-sample EM fitting of the EKF parameters. The accuracy comparison also uses ground truth derived from reconstructed event frames with manual cleaning. If the trajectory-prediction claim is either supported by a controlled comparison or appropriately softened, the paper would be a solid and useful systems contribution.
major comments (3)
- [Section IV-E] The trajectory-prediction comparison, which grounds the conclusion that the higher update rate leads to lower mean errors and uncertainties, is confounded by different camera geometries. The event cameras are mounted on the side of the robot while the frame-based cameras are placed on the four ceiling corners, as shown in Fig. 2, and the paper itself states in Section IV-E that the difference in positional error 'is partially influenced by the different camera setups.' With different baselines, resolutions, and viewing angles, the lower positional errors and uncertainties in Figs. 7 and 8 cannot be attributed to the update rate. Please either compare both pipelines using the same camera geometry (for example, frame-based detections derived from the same views, or event-based detections from the ceiling-mounted setup), or explicitly limit the paper's claim to update rate and 2D accuracy and remove the trajectory-prediction benefit claim.
- [Section IV-E] The EKF transition covariance, observation covariance, and initial-state statistics are fitted via EM on the same data used for the predictions shown in Figs. 7 and 8, and the text does not describe any held-out trajectory. In-sample EM fitting can artificially reduce both the errors and the reported uncertainties, so the comparison does not demonstrate that the event-based update rate itself improves prediction. Please add a train/test split or cross-validation, report the number of trajectories used, and show the variability across trajectories or folds rather than plotting a single trajectory.
- [Section IV-B] The ground-truth 2D positions for the accuracy comparison in Table I are obtained by running a circle detector on e2vid-reconstructed frames from the same event streams and then manually removing inaccurate detections. This ground truth is not independent of the event-based methods being evaluated, and the manual cleaning is not quantified. Please validate the pixel-error comparison against an independent source, such as a high-speed frame camera or motion capture, or report the sensitivity of the results to the reconstruction parameters and cleaning decisions.
minor comments (5)
- [Section II-C] The placeholder citation '[ ?]' in the discussion of speed-invariant time surfaces must be resolved before publication; a missing reference is not acceptable in the final version.
- [Table I] The entry for the event-based median-filter baseline ('0.000 08(1.1)') mixes the update runtime and the initialization runtime in an unclear way; please use a consistent notation for runtime columns and define what the parenthetical values represent.
- [Section IV-D] The trajectory durations used to compute update rates are measured manually in Metavision Studio; since update rate is one of the paper's headline results, please state the uncertainty of this manual measurement or replace it with an automatic timestamp-based duration.
- [Figure 2] The caption states that the camera setup has 'baselines of 3m to 5m'; please clarify whether this refers to the baseline distance between cameras or to the distance from the table/setup, as the schematic alone is ambiguous.
- [Algorithm 1] The 'Require:' line contains 'd = 0.31.0/kEROS', which appears to be a typographical error; should it read 'd = 0.31/kEROS' or 'd = 1.0/kEROS'? Please correct the notation.
Circularity Check
No significant circularity: the reported update-rate, accuracy, and uncertainty results are empirical measurements against external baselines and not derived from fitted inputs.
full rationale
The paper's central claims rest on direct measurements. The update rate in Table I is computed as the number of position updates divided by the measured trajectory duration and is compared against the frame-based baseline (149 Hz) and two event-based baselines; the pixel error is measured against ground-truth 2D positions obtained from e2vid-reconstructed frames with manual cleaning (Section IV-B). The trajectory-prediction comparison in Section IV-E uses the EKF from [3] with EM-tuned transition and observation covariances; while the EM fit is performed on the evaluated data and the camera geometries differ between the event-based and frame-based systems, this is a statistical and experimental-design limitation rather than a circular derivation, because the reported lower uncertainties are not equal by construction to the fitted parameters or to the update rate. EROS is adopted from prior published work by a co-author, but it is used as a component of the pipeline and is not invoked as an unverified premise to force the paper's conclusions. No step reduces to its own input by definition, so no circularity is found.
Assumptions & free parameters
free parameters (5)
- kEROS =
10
- EKF noise covariances and initial state =
Not reported in paper; optimized via EM on the same trajectories used for evaluation
- Hough circle detector parameters =
Not specified
- Event camera bias and STC/Trail filter settings =
Not quantified
- ROI size =
Not specified
assumptions (4)
- domain assumption EROS with kEROS=10 is velocity-independent enough for the Hough circle detector to work on the surface.
- domain assumption The mid-air ball trajectory physics model used in the EKF is accurate.
- ad hoc to paper Ground truth 2D positions from e2vid reconstructed frames are reliable after manual cleaning.
- domain assumption The wand-based calibration of the event camera rig is accurate.
Cite this review
Pith. "Pith review of An Event-Based Perception Pipeline for a Table Tennis Robot." pith.science (2026). https://pith.science/paper/M57Y6R7G
@misc{pith2026250200749,
author = {Pith},
title = {Pith review of: An Event-Based Perception Pipeline for a Table Tennis Robot},
year = {2026},
howpublished = {\url{https://pith.science/paper/M57Y6R7G}},
note = {Machine review of arXiv:2502.00749}
}
read the original abstract
Table tennis robots gained traction over the last years and have become a popular research challenge for control and perception algorithms. Fast and accurate ball detection is crucial for enabling a robotic arm to rally the ball back successfully. So far, most table tennis robots use conventional, frame-based cameras for the perception pipeline. However, frame-based cameras suffer from motion blur if the frame rate is not high enough for fast-moving objects. Event-based cameras, on the other hand, do not have this drawback since pixels report changes in intensity asynchronously and independently, leading to an event stream with a temporal resolution on the order of us. To the best of our knowledge, we present the first real-time perception pipeline for a table tennis robot that uses only event-based cameras. We show that compared to a frame-based pipeline, event-based perception pipelines have an update rate which is an order of magnitude higher. This is beneficial for the estimation and prediction of the ball's position, velocity, and spin, resulting in lower mean errors and uncertainties. These improvements are an advantage for the robot control, which has to be fast, given the short time a table tennis ball is flying until the robot has to hit back.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 1 Pith paper
-
Egocentric Event-Based Vision for Ping Pong Ball Trajectory Prediction
An event-camera and eye-tracking system on smart glasses detects a ping-pong ball and predicts its landing point from the player's viewpoint at 200 Hz with a reported 4.5 ms total latency.
Reference graph
Works this paper leans on
-
[1]
A multi-modal table tennis robot system
A. Ziegler, T. Gossard, K. Vetter, J. Tebbe, and A. Zell, “A multi-modal table tennis robot system,” in RoboLetics: Workshop on Robot Learning in Athletics @CoRL 2023 , 2023. [Online]. Available: https://arxiv.org/abs/2310.19062
work page Pith review arXiv 2023
-
[2]
Achieving human level competitive robot table tennis,
D. B. D’Ambrosio, S. Abeyruwan, L. Graesser, A. Iscen, H. B. Amor, A. Bewley, B. J. Reed, K. Reymann, L. Takayama, Y . Tassa, K. Choromanski, E. Coumans, D. Jain, N. Jaitly, N. Jaques, S. Kataoka, Y . Kuang, N. Lazic, R. Mahjourian, S. Moore, K. Oslund, A. Shankar, V . Sindhwani, V . Vanhoucke, G. Vesom, P. Xu, and P. R. Sanketi, “Achieving human level co...
arXiv 2024
-
[3]
A table tennis robot system using an industrial KUKA robot arm,
J. Tebbe, Y . Gao, M. Sastre-Rienietz, and A. Zell, “A table tennis robot system using an industrial KUKA robot arm,” in Lecture Notes in Computer Science. Springer International Publishing, 2019, pp. 33–45. [Online]. Available: https://doi.org/10.1007/978-3-030-12939-2 3
-
[4]
Robotic table tennis: A case study into a high speed learning system,
D. D'Ambrosio, N. Jaitly, V . Sindhwani, K. Oslund, P. Xu, N. Lazic, A. Shankar, T. Ding, J. Abelian, E. Coumans, G. Kouretas, T. Nguyen, J. Boyd, A. Iscen, R. Mahjourian, V . Vanhoucke, A. Bewley, Y . Kuang, M. Ahn, D. Jain, S. Kataoka, O. Cortes, P. Sermanet, C. Lynch, P. Sanketi, K. Choromanski, W. Gao, J. Kangaspunta, K. Reymann, G. Vesom, S. Moore, A...
work page 2023
-
[5]
Reliable real-time ball tracking for robot table tennis,
S. Gomez-Gonzalez, Y . Nemmour, B. Sch ¨olkopf, and J. Peters, “Reliable real-time ball tracking for robot table tennis,” Robotics, vol. 8, no. 4, p. 90, Oct. 2019. [Online]. Available: https: //doi.org/10.3390/robotics8040090
-
[6]
Learning high speed precision table tennis on a physical robot,
T. Ding, L. Graesser, S. Abeyruwan, D. B. D'Ambrosio, A. Shankar, P. Sermanet, P. R. Sanketi, and C. Lynch, “Learning high speed precision table tennis on a physical robot,” in 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, Oct. 2022. [Online]. Available: https://doi.org/10.1109/iros47612.2022.9982205
arXiv 2022
-
[7]
G. Gallego, T. Delbr ¨uck, G. Orchard, C. Bartolozzi, B. Taba, A. Censi, S. Leutenegger, A. J. Davison, J. Conradt, K. Daniilidis, and D. Scara- muzza, “Event-based vision: A survey,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 44, no. 1, pp. 154–180, 2022
work page 2022
-
[8]
Exploiting event cameras for spatio-temporal prediction of fast- changing trajectories,
M. Monforte, A. Arriandiaga, A. Glover, and C. Bartolozzi, “Exploiting event cameras for spatio-temporal prediction of fast- changing trajectories,” in 2020 2nd IEEE International Conference on Artificial Intelligence Circuits and Systems (AICAS) . IEEE, Aug
work page 2020
Show all 44 references
-
[9]
Event-based moving object detection and tracking,
A. Mitrokhin, C. Fermuller, C. Parameshwara, and Y . Aloimonos, “Event-based moving object detection and tracking,” in 2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, Oct. 2018. [Online]. Available: http://dx.doi.org/10.1109/IROS. 2018.8593805
2018
-
[10]
Event-based agile object catching with a quadrupedal robot,
B. Forrai, T. Miki, D. Gehrig, M. Hutter, and D. Scaramuzza, “Event-based agile object catching with a quadrupedal robot,” in 2023 IEEE International Conference on Robotics and Automation (ICRA). IEEE, May 2023. [Online]. Available: http://dx.doi.org/10. 1109/ICRA48891.2023.10161392
2023
-
[11]
Learning to detect objects with a 1 megapixel event camera,
E. Perot, P. de Tournemire, D. Nitti, J. Masci, and A. Sironi, “Learning to detect objects with a 1 megapixel event camera,” in Advances in Neural Information Processing Systems, H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin, Eds., vol. 33. Curran Associates,...
2020
-
[12]
Stoffregen, C
T. Stoffregen, C. Scheerlinck, D. Scaramuzza, T. Drummond, N. Barnes, L. Kleeman, and R. Mahony, Reducing the Sim-to-Real Gap for Event Cameras. Springer International Publishing, 2020, p. 534–549. [Online]. Available: http://dx.doi.org/10.1007/978-3-030-58583-9 32
2020 doi
-
[13]
luvharris: A practical corner detector for event-cameras,
A. Glover, A. Dinale, L. D. S. Rosa, S. Bamford, and C. Bartolozzi, “luvharris: A practical corner detector for event-cameras,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 44, no. 12, p. 10087–10098, Dec. 2022. [Online]. Available: http: //dx.doi.org/...
2022
-
[14]
Edopt: Event-camera 6-dof dynamic object pose tracking,
A. Glover, L. Gava, Z. Li, and C. Bartolozzi, “Edopt: Event-camera 6-dof dynamic object pose tracking,” in 2024 IEEE International Conference on Robotics and Automation (ICRA) . IEEE, May 2024, p. 18200–18206. [Online]. Available: http://dx.doi.org/10.1109/ ICRA57147.2024.10611511
2024
-
[15]
Robot ping pong,
J. Billingsley, “Robot ping pong,” Practical Computing , vol. 6, no. 5, 1983
1983
-
[16]
Learning to play table tennis from scratch using muscular robots,
D. Buchler, S. Guist, R. Calandra, V . Berenz, B. Scholkopf, and J. Peters, “Learning to play table tennis from scratch using muscular robots,” IEEE Transactions on Robotics , vol. 38, no. 6, pp. 3850–3860, Dec
-
[17]
Model-based trajectory prediction and hitting velocity control for a new table tennis robot,
Y . Ji, X. Hu, Y . Chen, Y . Mao, G. Wang, Q. Li, and J. Zhang, “Model-based trajectory prediction and hitting velocity control for a new table tennis robot,” in 2021 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, Sep. 2021. [Online]. Availa...
2021
-
[18]
Ball motion control in the table tennis robot system using time-series deep reinforcement learning,
L. Yang, H. Zhang, X. Zhu, and X. Sheng, “Ball motion control in the table tennis robot system using time-series deep reinforcement learning,” IEEE Access , vol. 9, p. 99816–99827, 2021. [Online]. Available: http://dx.doi.org/10.1109/ACCESS.2021.3093340
2021
-
[19]
Robotic table tennis with model-free reinforcement learning,
W. Gao, L. Graesser, K. Choromanski, X. Song, N. Lazic, P. Sanketi, V . Sindhwani, and N. Jaitly, “Robotic table tennis with model-free reinforcement learning,” in 2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, Oct. 2020. [Online]. Avai...
2020
-
[20]
A model-free approach to stroke learning for robotic table tennis,
Y . Gao, J. Tebbe, and A. Zell, “A model-free approach to stroke learning for robotic table tennis,” in 2022 International Joint Conference on Neural Networks (IJCNN) . IEEE, Jul. 2022. [Online]. Available: https://doi.org/10.1109/ijcnn55064.2022.9892776
2022
-
[21]
Black-box vs. gray-box: A case study on learning table tennis ball trajectory prediction with spin and impacts,
J. Achterhold, P. Tobuschat, H. Ma, D. B ¨uchler, M. Muehlebach, and J. Stueckler, “Black-box vs. gray-box: A case study on learning table tennis ball trajectory prediction with spin and impacts,” in Proceedings of the Learning for Dynamics and Control Conference (L4DC) , 2023
2023
-
[22]
Asynchronous convolutional networks for object detection in neuromorphic cameras,
M. Cannici, M. Ciccone, A. Romanoni, and M. Matteucci, “Asynchronous convolutional networks for object detection in neuromorphic cameras,” in 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW) . IEEE, Jun
2019
-
[23]
AEGNN: Asynchronous event-based graph neural networks,
S. Schaefer, D. Gehrig, and D. Scaramuzza, “AEGNN: Asynchronous event-based graph neural networks,” in 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) . IEEE, Jun. 2022. [Online]. Available: https://doi.org/10.1109/cvpr52688.2022.01205
2022
-
[24]
Revisiting token pruning for object detection and instance segmentation,
Y . Liu, M. Gehrig, N. Messikommer, M. Cannici, and D. Scara- muzza, “Revisiting token pruning for object detection and instance segmentation,” in Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV) , 2024
2024
-
[25]
Event-driven ball detection and gaze fixation in clutter,
A. Glover and C. Bartolozzi, “Event-driven ball detection and gaze fixation in clutter,” in 2016 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, Oct. 2016. [Online]. Available: https://doi.org/10.1109/iros.2016.7759345
2016
-
[26]
Robust visual tracking with a freely-moving event camera,
——, “Robust visual tracking with a freely-moving event camera,” in 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, Sep. 2017. [Online]. Available: http: //dx.doi.org/10.1109/iros.2017.8206226
2017
-
[27]
Dynamic obstacle avoidance for quadrotors with event cameras,
D. Falanga, K. Kleber, and D. Scaramuzza, “Dynamic obstacle avoidance for quadrotors with event cameras,” Science Robotics , vol. 5, no. 40, Mar. 2020. [Online]. Available: http://dx.doi.org/10. 1126/scirobotics.aaz9712
2020
-
[28]
Scheerlinck, N
C. Scheerlinck, N. Barnes, and R. Mahony, Continuous-Time Intensity Estimation Using Event Cameras . Springer International Publishing, 2019, p. 308–324. [Online]. Available: http://dx.doi.org/10.1007/ 978-3-030-20873-8 20
2019
-
[29]
Event-based hough transform in a spiking neural network for multiple line detection and tracking using a dynamic vision sensor,
S. Seifozzakerini, W.-Y . Yau, B. Zhao, and K. Mao, “Event-based hough transform in a spiking neural network for multiple line detection and tracking using a dynamic vision sensor,” in Procedings of the British Machine Vision Conference 2016 , ser. BMVC 2016. British Machine V...
2016 doi
-
[30]
Hots: A hierarchy of event-based time-surfaces for pattern recognition,
X. Lagorce, G. Orchard, F. Galluppi, B. E. Shi, and R. B. Benosman, “Hots: A hierarchy of event-based time-surfaces for pattern recognition,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 39, no. 7, p. 1346–1359, Jul. 2017. [Online]. Available: http://dx...
2017
-
[31]
Hats: Histograms of averaged time surfaces for robust event-based object classification,
A. Sironi, M. Brambilla, N. Bourdis, X. Lagorce, and R. Benosman, “Hats: Histograms of averaged time surfaces for robust event-based object classification,” in 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition. IEEE, Jun. 2018. [Online]. Available: http://dx....
2018
-
[32]
End-to- end learning of representations for asynchronous event-based data,
D. Gehrig, A. Loquercio, K. Derpanis, and D. Scaramuzza, “End-to- end learning of representations for asynchronous event-based data,” in 2019 IEEE/CVF International Conference on Computer Vision 9 (ICCV). IEEE, Oct. 2019, p. 5632–5642. [Online]. Available: http://dx.doi.org/10...
2019
-
[33]
ewand: A calibration framework for wide baseline frame-based and event-based camera systems,
T. Gossard, A. Ziegler, L. Kolmar, J. Tebbe, and A. Zell, “ewand: A calibration framework for wide baseline frame-based and event-based camera systems,” in 2024 International Conference on Robotics and Automation (ICRA) . IEEE, 2024. [Online]. Available: https://arxiv.org/pdf/...
2024 arXiv
-
[34]
Robot operating system 2: Design, architecture, and uses in the wild,
S. Macenski, T. Foote, B. Gerkey, C. Lalancette, and W. Woodall, “Robot operating system 2: Design, architecture, and uses in the wild,” Science Robotics, vol. 7, no. 66, p. eabm6074, 2022. [Online]. Available: https://www.science.org/doi/abs/10.1126/scirobotics.abm6074
2022 doi
-
[35]
The OpenCV Library,
G. Bradski, “The OpenCV Library,” Dr. Dobb’s Journal of Software Tools, 2000
2000
-
[36]
Robotic goalie with 3 ms reaction time at 4% cpu load using event-based dynamic vision sensor,
T. Delbruck and M. Lang, “Robotic goalie with 3 ms reaction time at 4% cpu load using event-based dynamic vision sensor,” Frontiers in Neuroscience , vol. 7, 2013. [Online]. Available: http: //dx.doi.org/10.3389/fnins.2013.00223
2013
-
[37]
High speed and high dynamic range video with an event camera,
H. Rebecq, R. Ranftl, V . Koltun, and D. Scaramuzza, “High speed and high dynamic range video with an event camera,” IEEE Trans. Pattern Anal. Mach. Intell. (T-PAMI) , 2019. [Online]. Available: http://rpg.ifi.uzh.ch/docs/TPAMI19 Rebecq.pdf
2019
-
[38]
Spindoe: A ball spin estimation method for table tennis robot,
T. Gossard, J. Tebbe, A. Ziegler, and A. Zell, “Spindoe: A ball spin estimation method for table tennis robot,” in 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, Oct. 2023. [Online]. Available: http://dx.doi.org/10. 1109/IROS55552.2023.10342178
2023
-
[39]
Table tennis ball spin estimation with an event camera,
T. Gossard, J. Krismer, A. Ziegler, J. Tebbe, and A. Zell, “Table tennis ball spin estimation with an event camera,” in 2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW). IEEE, Jun. 2024, p. 3347–3356. [Online]. Available: http://dx.doi.org/...
2024
-
[40]
Visual measurement and prediction of ball trajectory for table tennis robot,
Z. Zhang, D. Xu, and M. Tan, “Visual measurement and prediction of ball trajectory for table tennis robot,” IEEE Transactions on Instrumentation and Measurement , vol. 59, no. 12, p. 3195–3205, Dec
-
[2010]
Available: http://dx.doi.org/10.1109/TIM.2010.2047128
[Online]. Available: http://dx.doi.org/10.1109/TIM.2010.2047128
2010
-
[2019]
Available: https://doi.org/10.1109/cvprw.2019.00209
[Online]. Available: https://doi.org/10.1109/cvprw.2019.00209
2019
-
[2020]
Available: http://dx.doi.org/10.1109/AICAS48895.2020
[Online]. Available: http://dx.doi.org/10.1109/AICAS48895.2020. 9073855
2020
-
[2022]
Available: https://doi.org/10.1109/tro.2022.3176207
[Online]. Available: https://doi.org/10.1109/tro.2022.3176207
2022
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.