Monocular Navigation Surpasses Depth-Based Systems on R2R-CE
An 8B vision-language model predicts image-space waypoints from a single RGB stream, reaching 77.4% unseen-environment success while cutting supervised training tokens 22×.
Underlying Paper
Robostral Navigate
Deploying navigation systems at scale requires a recipe that minimizes sensor assumptions, generalizes across robot embodiments, and trains efficiently. Yet, today's best systems depend on depth sensors, multi-camera rigs, or pre-built maps, limiting the hardware they support and increasing deployment cost. We introduce Robostral Navigate, an 8B vision-language model built around this scalability objective. The model consumes only a stream of monocular RGB images - the most ubiquitous sensor across robotic platforms and predicts waypoints by pointing to the next target location in the current camera view. Operating purely in image space, rather than robot-specific coordinates, makes the policy naturally robust to changes in camera intrinsics and scene scale, enabling deployment across wheeled, legged, and aerial robots without recalibration. We generate 2.4 million trajectories across 350k simulated scenes to reduce the reliance on real-world data collection and scale easily. We further introduce a prefix-caching training recipe that packs entire episodes into single training sequences, reducing training tokens by 22x and cutting training time from months to days. A tree-based attention mask prevents conditioning on previous ground-truth actions, encouraging visually grounded action prediction, and reinforcement learning is used to further improve exploration and recovery capabilities. On the Room-to-Room and Room-Across-Room in Continuous Environments (R2R-CE and RxR-CE) benchmarks, Robostral Navigate sets a new state of the art. On R2R-CE, it achieves a 77.4% success rate, surpassing the best monocular method by 10.5 points and the strongest depth- or multi-camera system by 5.3 points despite using only a single RGB camera. On RxR-CE, it reaches 75.1% success rate, outperforming all monocular baselines.
Navigation policies often gain accuracy by depending on depth, multiple cameras, or maps, but those inputs tie a system to a particular sensor suite and robot geometry. Robostral Navigate instead uses a monocular RGB stream and expresses a navigation target in image space. The paper reports that this design reaches 77.4% success on unseen R2R-CE environments, exceeding both the reported best monocular method and the strongest depth- or multi-camera system on that benchmark.
Core Contribution
The central design choice is to separate long-horizon semantic navigation from short-horizon control. An 8B vision-language model selects a waypoint from visual observations and language instructions, rather than predicting robot-frame actions directly. By representing the target through a point in the current image, metric displacement, and arrival orientation, the authors aim to avoid calibration to camera intrinsics, scene scale, and platform-specific coordinate conventions.
That interface is useful because it is neither a purely symbolic subgoal nor a full trajectory. The waypoint gives a downstream controller a geometric target while leaving dense motion generation to a separate policy. Figure 1 depicts this division: the visual-language component operates at 0.5 Hz, whereas the diffusion policy produces trajectories at 10 Hz from the inferred waypoint, its context frame, and the current frame. A motion-tracking controller then converts the trajectory into actuator torques.
Technical Approach
The authors generate 2.4 million trajectories across 350,000 simulated scenes, using simulated data to make the training set much larger than a conventional real-robot collection. At inference, the vision-language model points when a target is visible; when it is outside the field of view, pointing is omitted and the prediction retains displacement and orientation. The diffusion policy fills in the local trajectory between these sparse waypoint decisions.
Training efficiency is another substantive part of the contribution. The paper packs full episodes into a sequence and uses prefix caching, reporting a 22× reduction in training tokens and a reduction in supervised fine-tuning time from months to days. Its tree-based attention mask prevents the model from conditioning on preceding ground-truth actions, an attempt to force action predictions to remain tied to visual evidence rather than exploit the logged trajectory. The authors then apply reinforcement learning to improve exploration and recovery.
The paper also presents cross-robot deployments on the Galaxea R1 and Hiwonder JetAuto. According to Figure 2, these platforms differ in morphology, camera height, camera configuration, and base geometry; the deployments retain the same visual-language and diffusion-policy weights, changing only the low-level controller. This is a meaningful test of the image-space interface, although the paper’s reported benchmark evidence remains the clearer quantitative basis for the claim.
Results and Analysis
On R2R-CE, the post-reinforcement-learning checkpoint reaches 79.43% success in seen environments and 77.43% in unseen environments, compared with 75.96% and 73.40% for the supervised-fine-tuned baseline. The gains are 3.47 and 4.03 percentage points, respectively. The peak validation run reaches 80.46% on seen environments while retaining 77.43% on unseen environments, and the paper reports 74.2% SPL. These results suggest that the RL stage improves recovery without merely making the policy more brittle on held-out scenes.
The headline benchmark comparison is the unseen R2R-CE score: 77.4% success, 10.5 points above the best monocular method and 5.3 points above the strongest depth- or multi-camera system cited by the authors. That is stronger evidence than a hardware-cost argument alone: on this benchmark, the sensor-minimal policy is reported to outperform systems with richer perception inputs.
On the more difficult RxR-CE benchmark, Robostral Navigate reports 75.1% success, 68.7% SPL, and 3.47 m navigation error. Against Qwen-RobotNav-8B, it improves success by 1.7 points and SPL by 5.2 points, from 73.4% success and 63.5% SPL. The smaller success margin on RxR-CE matters: the method’s advantage is clearest in path efficiency, not an overwhelming gap in task completion. Still, the consistency across R2R-CE and RxR-CE supports the paper’s claim that monocular, visually grounded waypoint prediction can remain competitive on long instructions without depth or panoramic sensing.
Scope of the Evidence
The evaluation is concentrated on two continuous-environment navigation benchmarks, so it does not establish performance across the wheeled, legged, and aerial settings named as potential targets. The cross-robot examples demonstrate weight transfer, but the paper does not provide comparable success-rate tables for those physical platforms. The result is therefore best read as strong benchmark evidence for a scalable monocular navigation recipe, rather than a complete demonstration of general-purpose robot navigation.
Evidence Box
strongKey Claims
- •Monocular image-space waypoints transfer across robot embodiments
- •Prefix-cached episode training reduces supervised training cost
- •Reinforcement learning improves exploration and recovery
- •Single-RGB navigation can outperform richer-sensor systems on R2R-CE
Key Results
- •77.4% unseen R2R-CE success, 10.5 points above the best monocular method
- •77.4% unseen R2R-CE success, 5.3 points above the strongest depth- or multi-camera system
- •75.1% success and 68.7% SPL on RxR-CE, versus 73.4% and 63.5% for Qwen-RobotNav-8B
- •2.4 million simulated trajectories across 350,000 scenes; 22× fewer training tokens
Limitations & Caveats
- •Quantitative evaluation is limited to R2R-CE and RxR-CE
- •Cross-robot deployments lack reported platform-level success-rate comparisons
- •Training data are generated in simulation rather than measured from large-scale real-world operation
- •The reported system still requires a platform-specific low-level controller