Pith. sign in

REVIEW 3 major objections 8 minor 31 references

EI-Drive: A Platform for Cooperative Perception with Realistic Communication Models

T0 review · 3 major / 8 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read EI-Drive is a simulation platform that adds transmission latency and frame errors to cooperative perception, and its experiments show these impairments significantly degrade autonomous driving safety.

desk verdict A genuinely useful open-source cooperative-perception simulator, but the 'realistic communication' claim outruns the two-knob delay/loss model it actually ships. read the letter →

arxiv 2412.09782 v1 pith:Z6SEXTUA submitted 2024-12-13 cs.RO cs.CVcs.MA

classification cs.ROcs.CVcs.MA
keywords autonomousdrivingcooperativeperceptionvehicularcommunicationsimulationplatformtransmissionlatencyframeerrordatafusionCARLA
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Cooperative perception lets vehicles and roadside units share what they see, but real wireless links add delay and drop data; most simulation platforms that test cooperative perception pretend the shared data arrives instantly and intact. This paper introduces EI-Drive, a CARLA-based open simulation platform that adds a communication model placing transmission latency and frame-error probability on the perception results shared between agents. The authors' experiments with collision-avoidance and object-detection scenarios show that cooperative perception improves safety margins and detection counts when the network is perfect, that the added latency and errors measurably shrink those gains, and that data from elevated roadside units holds up better than data from other vehicles in heavy traffic. The point is to give the autonomous-driving community a way to evaluate and train algorithms under network conditions closer to what real vehicles face.

What carries the argument

The load-bearing component is the communication model inside the edge-AI module: a delay-and-loss filter applied to every shared perception message. It treats transmission latency as a time offset, set to be either deterministic or stochastic, and transmission error as an adjustable frame-drop probability, with data fusion then averaging overlapping bounding boxes from the messages that survive. This small mechanism is what converts a standard CARLA cooperative-driving pipeline into a tool for studying how network conditions affect perception and planning.

What would settle it

A direct comparison of EI-Drive's delivered bounding-box delays and loss patterns against a packet-level V2X simulation, such as ns-3 or Veins with a realistic 5.9 GHz channel model, or against a field-collected V2X trace, would settle whether the simple latency-plus-error model reproduces the temporal correlation and burstiness of real wireless delivery; if real delays are correlated across consecutive frames while EI-Drive treats them as independent, the platform's predictions about which algorithms are robust would likely be wrong.

Watch

Extended reading notes

Core claim

The paper claims that EI-Drive is the first open simulation platform to combine cooperative perception with an explicit model of wireless transmission latency and frame errors, and that this combination changes conclusions about autonomous driving safety. Built on CARLA, the platform intercepts the bounding-box perception results that cooperating vehicles and RSUs send to an ego vehicle, applies a configurable delay and a probability of frame loss to each message, and fuses the surviving boxes with a simple late-fusion average. In the reported experiments a 0.3 second latency and a 30% error rate significantly reduce the minimal distance maintained during collision avoidance, and scenarios without roadside units drop to success rates as low as 0% in heavy traffic, while RSU-assisted fusion keeps success near 100%. The paper's claim is not that any particular detector is better, but that network impairments are first-order factors in cooperative-driving performance and that an open platform allowing such impairments to be configured and studied is needed.

Load-bearing premise

The communication model — a fixed or randomly drawn delay plus an independent frame-drop probability — is assumed to faithfully represent real vehicular network conditions, but the paper does not validate this model against real V2X trace data or a packet-level network simulator.

Editorial extensions

If this is right

  • Cooperative perception with perfect communication improves collision-avoidance safety, shown by larger minimum distances and higher success rates in every tested scenario.
  • Imposing 0.3 s latency or a 30% frame-error rate degrades those gains, so benchmarks that omit communication effects overstate how safe a cooperative algorithm is.
  • RSUs with an elevated, unobstructed view sustain near-100% success in heavy traffic, whereas relying on a spectator vehicle alone can drop to 0% success when occlusion is severe.
  • The platform's modular design lets researchers swap in custom fusion methods, detectors, communication parameters, and scenario definitions to test robustness under network stress.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The independent per-frame error model likely understates real V2X conditions, where losses arrive in bursts and delay is correlated with congestion; coupling EI-Drive with a packet-level network simulator would reveal whether the robustness conclusions hold.
  • The 0.3 s / 30% parameter choice is a single operating point; sweeping error rate and latency continuously could expose a phase transition where cooperative perception stops beating single-vehicle perception, which would give system designers a concrete link-budget target.
  • Because the same delay-and-drop filter can be applied to the ego's own perception pipeline, the communication module doubles as a way to test robustness to sensor processing delay and sensor dropout without any network at all.
  • The reported vehicle-only failures in scenarios 7 and 8 hint that in dense traffic, cooperation from occluded participants can be misleading; testing with noisy detectors instead of the oracle might show earlier points where cooperation turns harmful.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 8 minor

Summary. This paper presents EI-Drive, an open-source simulation platform built on CARLA that integrates cooperative perception with a communication model that adds transmission latency and frame-error probability to the data exchanged between vehicles and RSUs. The paper describes the modular pipeline (sensing, perception, planning, control), the edge-AI module containing the communication model and a simple late-fusion data aggregation method, and a set of built-in scenarios. Experiments demonstrate that cooperative perception improves collision avoidance and object detection in occluded traffic scenarios, and that introducing latency and errors degrades these benefits. The stated contribution is to fill the gap left by existing cooperative-perception simulators such as OpenCDA, which do not model transmission impairments.

Significance. If the platform delivers on its claims, it would provide a useful open testbed for studying how communication impairments affect cooperative-perception algorithms, an area where the cited existing simulators are indeed lacking. The paper's strengths are its open-source release, modular architecture, built-in scenarios, and the use of oracle methods to isolate perception effects. There are no fitted parameters or derived predictions, so the work is not circular in the equation-derivation sense. However, the central novelty claim rests on the realism of the communication model, and that model is currently only a latency/error knob with no validation against real V2X conditions or packet-level simulation. The experimental sections also lack the statistical detail needed to support the word "significant." These issues are load-bearing for the paper's main contribution but appear addressable within the scope of a revision.

major comments (3)
  1. [Section III-C and Abstract] The communication model is the paper's key novelty, yet it is specified only as a latency parameter and a frame-error probability applied to perception outputs. The text does not specify the delay distribution, whether losses are independent or bursty, how timestamps are handled in the fusion module, or how the parameters relate to any vehicular channel model. No validation against real V2X traces or a packet-level simulator (e.g., ns-3, Veins) is provided. Because the abstract and Section I claim evaluation under conditions that "mirror real-world networks" and "real-world network conditions," this is load-bearing for the novelty claim. Please either add validation or a sensitivity analysis against a representative V2X model, or revise the claims to describe the platform as supporting configurable latency and error impairments rather than realistic network conditions.
  2. [Section IV-B, Tables II and III] The quantitative results report means plus/minus deviations but do not state the number of trials per condition, and several entries have zero variance (e.g., Table II YOLOv5 No Coop perception 3.32 ± 0.00; Table III Coop Scenario 5 RSU Min Distance 3.03 ± 0.03; Coop Scenario 7 Vehicle success 0.00% with no uncertainty). The text claims "significant improvements" and "significantly higher" success rates without any significance tests. Please report the number of runs for each condition, specify how the error bars were computed, and perform appropriate statistical tests, or clearly mark which comparisons are deterministic single-run demonstrations rather than statistical claims.
  3. [Section IV-B, Eq. (1)] The success rate is defined as Ncf/Ntotal, but the paper does not specify how many total attempts Ntotal were used or how the ± values in Table III were derived (e.g., across repeated episodes, bootstrap, or some other procedure). Without this information, the comparison between "Vehicle + RSU," "RSU," and "Vehicle" participation cannot be evaluated. Add the trial count and the uncertainty derivation for each entry in Table III.
minor comments (8)
  1. [Section III-B] There is a typo: "thees environmental influences" should be "these environmental influences."
  2. [Section V] The conclusion contains "an platform," which should be "a platform."
  3. [Section II-A] The phrase "EI-Drive aims to filled this gap" should be "EI-Drive aims to fill this gap."
  4. [Section III-A] "Y AML file" should be "YAML file."
  5. [Section III-C] The text says "An key data source" in the data-fusion paragraph; this should be "A key data source."
  6. [Table I] The descriptions for Coop Scenario 5&6 and Coop Scenario 7&8 are identical; please clarify the difference between these scenarios (e.g., which agents are present or what traffic conditions differ).
  7. [Figure 6] The x-axis label "Ticks" is unclear; please specify the unit (e.g., simulation time steps) and state whether the plotted curves are averages over multiple episodes with error bars.
  8. [Section III-C] The communication model description says latency can be "deterministic or stochastic" but gives no details on the stochastic distributions; a brief description of supported distributions would help users understand the model's flexibility.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: EI-Drive is a platform-construction paper; its communication model is a configurable latency/error knob, not a fitted input, and no derived prediction reduces to the model by construction.

full rationale

EI-Drive contains no derivation chain whose output is equivalent to its input. The communication model of Section III-C is a user-set latency and frame-error knob; it is not fitted to data, and the experiments in Section IV use fixed values (e.g., 0.3 s latency and 30% error) to demonstrate rather than predict. The success-rate metric in Equation (1) is a definition, not a derived claim. The self-citations that appear are to related work (CarDreamer) and to a general statement about latency/error in vehicular networks; neither is load-bearing for the platform's architecture, and there is no imported uniqueness theorem or ansatz hidden in a citation. The skeptic's concern that the simple communication model is not validated against real V2X traces is a correctness or fidelity criticism, not circularity: the paper's central contribution is the simulator integration, and the unvalidated realism claim is separate from whether any result is circular. Therefore, no significant circularity is present.

Assumptions & free parameters 2 free parameters · 3 assumptions · 0 invented entities

Everything the central claim rests on beyond the CARLA base: the communication model is a hand-set latency and error rate, the fusion method is a simple late-fusion averaging scheme, and CARLA's sensor and dynamics fidelity is inherited. These are domain assumptions rather than fitted parameters. No new physical entities are introduced.

free parameters (2)
  • Transmission latency in collision avoidance experiments = 0.3 s
    Set by hand in Section IV-B; no justification or sensitivity analysis. Central to demonstrating the impact of communication realism.
  • Transmission error rate in collision avoidance experiments = 30%
    Chosen ad hoc in Section IV-B; no reference to real vehicular network statistics or sensitivity analysis.
assumptions (3)
  • domain assumption CARLA simulator provides sufficiently realistic sensor data and vehicle dynamics for cooperative perception studies.
    The platform is built directly on CARLA (Section III-A), and all results inherit CARLA's fidelity.
  • ad hoc to paper The simplified communication model (fixed latency plus Bernoulli frame losses) captures the essential effects of real-world vehicular network conditions.
    Section III-C defines the model as only latency and error rate; no validation against real V2X traces or network simulators is provided. This is the paper's key novelty, so the assumption is load-bearing.
  • domain assumption Late fusion of 2D or 3D bounding boxes by averaging overlapping boxes is a representative cooperative perception method for evaluating platform effects.
    Data fusion module in Section III-C uses a 'simple late fusion method'; results may not generalize to early or intermediate fusion methods.

how reviews work

0 comments
Cite this review

Pith. "Pith review of EI-Drive: A Platform for Cooperative Perception with Realistic Communication Models." pith.science (2026). https://pith.science/paper/Z6SEXTUA

@misc{pith2026241209782,
  author       = {Pith},
  title        = {Pith review of: EI-Drive: A Platform for Cooperative Perception with Realistic Communication Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/Z6SEXTUA}},
  note         = {Machine review of arXiv:2412.09782}
}
read the original abstract

The growing interest in autonomous driving calls for realistic simulation platforms capable of accurately simulating cooperative perception process in realistic traffic scenarios. Existing studies for cooperative perception often have not accounted for transmission latency and errors in real-world environments. To address this gap, we introduce EI-Drive, an edge-AI based autonomous driving simulation platform that integrates advanced cooperative perception with more realistic communication models. Built on the CARLA framework, EI-Drive features new modules for cooperative perception while taking into account transmission latency and errors, providing a more realistic platform for evaluating cooperative perception algorithms. In particular, the platform enables vehicles to fuse data from multiple sources, improving situational awareness and safety in complex environments. With its modular design, EI-Drive allows for detailed exploration of sensing, perception, planning, and control in various cooperative driving scenarios. Experiments using EI-Drive demonstrate significant improvements in vehicle safety and performance, particularly in scenarios with complex traffic flow and network conditions. All code and documents are accessible on our GitHub page: \url{https://ucd-dare.github.io/eidrive.github.io/}.

Figures

Figures reproduced from arXiv: 2412.09782 by the authors.

Figure 1
Figure 1. The framework of EI-Drive, which consists of four main components: simulation environment, edge-AI module, modular [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 3
Figure 3. Various object detection methods in pipeline scenarios. [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figure 4
Figure 4. Cooperative perception in collision avoidance tasks by [PITH_FULL_IMAGE:figures/full_fig_p007_4.png] view at source ↗
Figures from the paper (1 more)
Figure 6
Figure 6. Figure 6: The number of detected object under different settings. [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

31 extracted references · 20 canonical work pages

  1. [1]

    A systematic review of perception system and simulators for autonomous vehicles research,

    F. Rosique, P. J. Navarro, C. Fern ´andez, and A. Padilla, “A systematic review of perception system and simulators for autonomous vehicles research,” Sensors, vol. 19, no. 3, p. 648, 2019

  2. [2]

    Effect of rsu placement on autonomous vehicle v2i scenarios,

    B. Kara and B. A. ¨Ozg¨ovde, “Effect of rsu placement on autonomous vehicle v2i scenarios,” Balkan Journal of Electrical and Computer Engineering, vol. 8, no. 3, pp. 272–284, 2020

  3. [3]

    Cobevt: Cooper- ative bird’s eye view semantic segmentation with sparse transformers,

    R. Xu, Z. Tu, H. Xiang, W. Shao, B. Zhou, and J. Ma, “Cobevt: Cooper- ative bird’s eye view semantic segmentation with sparse transformers,” arXiv preprint arXiv:2207.02202 , 2022

  4. [4]

    Towards low-latency and ultra-reliable vehicle-to-vehicle communication,

    M. I. Ashraf, C.-F. Liu, M. Bennis, and W. Saad, “Towards low-latency and ultra-reliable vehicle-to-vehicle communication,” in 2017 European Conference on Networks and Communications (EuCNC) . IEEE, 2017, pp. 1–5

  5. [5]

    Impact of sensing errors on headway design: From alpha-fair group safety to traffic throughput,

    W. Shao, Z. Fan, C.-J. Chen, Z. Zhang, J. Ma, and J. Zhang, “Impact of sensing errors on headway design: From alpha-fair group safety to traffic throughput,” IEEE Transactions on Mobile Computing , 2024

  6. [6]

    Carla: An open urban driving simulator,

    A. Dosovitskiy, G. Ros, F. Codevilla, A. Lopez, and V . Koltun, “Carla: An open urban driving simulator,” in Conference on robot learning . PMLR, 2017, pp. 1–16

  7. [7]

    Microscopic traffic simulation using sumo,

    P. A. Lopez, M. Behrisch, L. Bieker-Walz, J. Erdmann, Y .-P. Fl ¨otter¨od, R. Hilbrich, L. L ¨ucken, J. Rummel, P. Wagner, and E. Wießner, “Microscopic traffic simulation using sumo,” in 2018 21st international conference on intelligent transportation systems (ITSC) . IEEE, 2018, pp. 2575–2582

  8. [8]

    Flow: A modular learning framework for mixed autonomy traffic,

    C. Wu, A. R. Kreidieh, K. Parvate, E. Vinitsky, and A. M. Bayen, “Flow: A modular learning framework for mixed autonomy traffic,” IEEE Transactions on Robotics , vol. 38, no. 2, pp. 1270–1286, 2021

Show all 31 references
  1. [9]

    Cardreamer: Open-source learning platform for world model based autonomous driving,

    D. Gao, S. Cai, H. Zhou, H. Wang, I. Soltani, and J. Zhang, “Cardreamer: Open-source learning platform for world model based autonomous driving,” arXiv preprint arXiv:2405.09111 , 2024

  2. [10]

    Autoware: the world’s leading open-source software project for autonomous driving

    T. A. Foundation, “Autoware: the world’s leading open-source software project for autonomous driving.” JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2024 9 (a) Coop. scenario 3. (b) Coop. scenario 4. Fig. 5: Cooperative perception in object detection tasks by oracle method

  3. [11]

    Metadrive: Composing diverse driving scenarios for generalizable reinforcement learning,

    Q. Li, Z. Peng, L. Feng, Q. Zhang, Z. Xue, and B. Zhou, “Metadrive: Composing diverse driving scenarios for generalizable reinforcement learning,” IEEE transactions on pattern analysis and machine intelli- gence, vol. 45, no. 3, pp. 3461–3475, 2022. 0 50 100 150 200 250 300 35...

  4. [12]

    Avstack: An open-source, reconfigurable platform for autonomous vehicle development,

    R. S. Hallyburton, S. Zhang, and M. Pajic, “Avstack: An open-source, reconfigurable platform for autonomous vehicle development,” in Pro- ceedings of the ACM/IEEE 14th International Conference on Cyber- Physical Systems (with CPS-IoT Week 2023) , 2023, pp. 209–220

  5. [13]

    V2x cooperative perception for autonomous driving: Recent advances and challenges,

    T. Huang, J. Liu, X. Zhou, D. C. Nguyen, M. R. Azghadi, Y . Xia, Q.-L. Han, and S. Sun, “V2x cooperative perception for autonomous driving: Recent advances and challenges,” arXiv preprint arXiv:2310.03525 , 2023

  6. [14]

    Online v2x scheduling JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2024 10 for raw-level cooperative perception,

    Y . Jia, R. Mao, Y . Sun, S. Zhou, and Z. Niu, “Online v2x scheduling JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2024 10 for raw-level cooperative perception,” in ICC 2022-IEEE International Conference on Communications . IEEE, 2022, pp. 309–314

  7. [15]

    Mass: Mobility-aware sensor scheduling of cooperative percep- tion for connected automated driving,

    ——, “Mass: Mobility-aware sensor scheduling of cooperative percep- tion for connected automated driving,” IEEE Transactions on V ehicular Technology, vol. 72, no. 11, pp. 14 962–14 977, 2023

  8. [16]

    Collaborative 3d object detection for automatic vehicle systems via learnable communications,

    J. Wang, Y . Zeng, and Y . Gong, “Collaborative 3d object detection for automatic vehicle systems via learnable communications,”arXiv preprint arXiv:2205.11849, 2022

  9. [17]

    Multimodal cooperative 3d object detection over connected vehicles for autonomous driving,

    F. Chi, Y . Wang, M. T. Pourazad, P. Nasiopoulos, and V . C. Leung, “Multimodal cooperative 3d object detection over connected vehicles for autonomous driving,” IEEE Network , vol. 37, no. 4, pp. 265–272, 2023

  10. [18]

    Cooperative perception with deep reinforcement learning for connected vehicles,

    S. Aoki, T. Higuchi, and O. Altintas, “Cooperative perception with deep reinforcement learning for connected vehicles,” in 2020 IEEE Intelligent V ehicles Symposium (IV). IEEE, 2020, pp. 328–334

  11. [19]

    Aicp: Augmented informative cooperative perception,

    P. Zhou, P. Kortoc ¸i, Y .-P. Yau, B. Finley, X. Wang, T. Braud, L.- H. Lee, S. Tarkoma, J. Kangasharju, and P. Hui, “Aicp: Augmented informative cooperative perception,” IEEE Transactions on Intelligent Transportation Systems, vol. 23, no. 11, pp. 22 505–22 518, 2022

  12. [20]

    Opencda: an open cooperative driving automation framework integrated with co-simulation,

    R. Xu, Y . Guo, X. Han, X. Xia, H. Xiang, and J. Ma, “Opencda: an open cooperative driving automation framework integrated with co-simulation,” in 2021 IEEE International Intelligent Transportation Systems Conference (ITSC) . IEEE, 2021, pp. 1155–1162

  13. [21]

    The ns-3 network simulator,

    G. F. Riley and T. R. Henderson, “The ns-3 network simulator,” in Modeling and tools for network simulation . Springer, 2010, pp. 15–34

  14. [22]

    An overview of the omnet++ simulation environment,

    A. Varga and R. Hornig, “An overview of the omnet++ simulation environment,” in 1st International ICST Conference on Simulation Tools and Techniques for Communications, Networks and Systems , 2010

  15. [23]

    Veins: The open source vehicular network simulation framework,

    C. Sommer, D. Eckhoff, A. Brummer, D. S. Buse, F. Hagenauer, S. Joerer, and M. Segata, “Veins: The open source vehicular network simulation framework,” Recent advances in network simulation: the OMNeT++ environment and its ecosystem , pp. 215–252, 2019

  16. [24]

    Simu5g–an omnet++ library for end-to-end performance evaluation of 5g networks,

    G. Nardini, D. Sabella, G. Stea, P. Thakkar, and A. Virdis, “Simu5g–an omnet++ library for end-to-end performance evaluation of 5g networks,” IEEE Access , vol. 8, pp. 181 176–181 191, 2020

  17. [25]

    V2x simulation runtime infrastructure vsimrti: An assessment tool to design smart traffic management systems,

    B. Sch ¨unemann, “V2x simulation runtime infrastructure vsimrti: An assessment tool to design smart traffic management systems,” Computer Networks, vol. 55, no. 14, pp. 3189–3198, 2011

  18. [26]

    Integration of an autonomous driving simulator into v2x simulation framework for testing connected vehicles

    D. Cui and Y . Shen, “Integration of an autonomous driving simulator into v2x simulation framework for testing connected vehicles.”

  19. [27]

    Carla documentation

    CARLA, “Carla documentation.”

  20. [28]

    Asam openscenario: User guide,

    ASAM, “Asam openscenario: User guide,” 2021

  21. [29]

    Ssd: Single shot multibox detector,

    W. Liu, D. Anguelov, D. Erhan, C. Szegedy, S. Reed, C.-Y . Fu, and A. C. Berg, “Ssd: Single shot multibox detector,” in Computer Vision– ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11–14, 2016, Proceedings, Part I 14 . Springer, 2016, pp. 21–37

  22. [30]

    A formal basis for the heuristic determination of minimum cost paths,

    P. E. Hart, N. J. Nilsson, and B. Raphael, “A formal basis for the heuristic determination of minimum cost paths,” IEEE transactions on Systems Science and Cybernetics , vol. 4, no. 2, pp. 100–107, 1968. VI. B IOGRAPHY SECTION Hanchu Zhou Hanchu Zhou received the B.S. de- gree...

  23. [2021]

    He is a Fellow of the IEEE, and a recipient of the ONR Young Investigator Award in 2005 and the NSF CAREER award in 2003

    His research interests fall in the general field of information networks and data science, including edge AI, reinforcement learning, continual learning, network optimization and control, game theory. He is a Fellow of the IEEE, and a recipient of the ONR Young Investigator Aw...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.