EdgeVTP: Exploration of Latency-efficient Trajectory Prediction for Edge-based Embedded Vision Applications

arXiv cs.CV / 4/21/2026

📰 NewsDeveloper Stack & InfrastructureSignals & Early TrendsModels & Research

Key Points

  • EdgeVTP is a latency-efficient, edge-first vehicle trajectory prediction model designed for roadside embedded vision systems with deterministic end-to-end timing.
  • It uses interaction-aware graph modeling plus a lightweight transformer backbone and a one-shot curve decoder that predicts future motion as compact curve parameters anchored to the last observed position.
  • By forecasting curve parameters instead of horizon-scaled autoregressive waypoints, EdgeVTP reduces decoding overhead while generating smooth trajectories.
  • The method enforces predictable runtime in crowded scenes by bounding interaction complexity with a locality graph that has a hard cap on the number of neighbors.
  • Evaluations on three highway benchmarks and two Jetson-class platforms show the lowest measured end-to-end latency (including graph construction and post-processing), with state-of-the-art accuracy on two datasets and competitive performance on others, and the code is publicly available.

Abstract

Vehicle trajectory prediction is central to highway perception, but deployment on roadside edge devices necessitates bounded, deterministic end-to-end latency. We present EdgeVTP, an embedded-first trajectory predictor that combines interaction-aware graph modeling with a lightweight transformer backbone and a one-shot curve decoder. By predicting future motion as compact curve parameters (anchored at the last observed position) rather than horizon-scaled autoregressive waypoints, EdgeVTP reduces decoding overhead while producing smooth trajectories. To keep runtime predictable in crowded scenes, we explicitly bound interaction complexity via a locality graph with a hard neighbor cap. Across three highway benchmarks and two Jetson-class platforms, EdgeVTP achieves the lowest measured end-to-end latency under a protocol that includes graph construction and post-processing, while attaining state-of-the-art (SotA) prediction accuracy on two of the three datasets and competitive error on other benchmarks. Our code is available at https://github.com/SeungjinStevenKim/EdgeVTP.