GPS-denied navigation #
GPS-denied navigation is the problem of localizing and navigating an autonomous vehicle (drone, robot, ground vehicle) when GPS signals are unavailable, unreliable, or deliberately denied. It is one of the central engineering problems in modern drone autonomy.
Definition #
A GPS receiver gives a vehicle position to within a few meters in open sky. Indoors, in urban canyons, under tree canopy, in tunnels, or under active jamming, GPS is degraded or absent. GPS-denied navigation systems replace satellite-derived position with onboard sensing and computation.
The sensor stack #
A typical GPS-denied stack combines several sensor modalities:
- Visual-inertial odometry (VIO). Cameras paired with an inertial measurement unit (IMU). The IMU integrates acceleration and rotation to estimate motion. The camera observes the world; visual features are tracked across frames to correct IMU drift.
- LiDAR. Direct depth sensing. Useful for SLAM (simultaneous localization and mapping) at higher cost and weight than cameras.
- Stereo cameras. Depth from disparity between two cameras at known baseline.
- Radar and event cameras. Less common but valuable in low-light or high-speed scenarios.
- Magnetometer, barometer, temperature. Auxiliary signals.
These streams are fused, often by an extended Kalman filter or a learned model, into a continuous estimate of position, orientation, and velocity.
Where edge AI fits #
Three places.
Visual feature extraction. Modern VIO uses learned feature detectors and descriptors that outperform classical SIFT or ORB features, especially in low-texture or low-light scenes. Running these models on edge silicon (Ambarella CV5, Nvidia Jetson, Qualcomm Hexagon) at frame rate is a real-time inference problem with hard latency budgets.
Object recognition and obstacle classification. Identifying what is in the scene matters for both navigation and downstream autonomy. Edge AI runs object detectors and segmenters in real time on power-constrained platforms.
End-to-end learned localization. Newer research uses neural networks to learn the localization function directly from sensor inputs, bypassing some of the classical estimation pipeline. Practical deployment requires careful eval against classical baselines.
Why it matters in 2026 #
Drones for delivery, inspection, surveying, agriculture, search and rescue, and defense increasingly operate in environments where GPS cannot be assumed. The military case has been clear for years; the commercial case is becoming clear as drones move beyond hobby use into industrial deployment.
The combination of low-power edge silicon, modern visual-inertial models, and increasingly capable on-device inference makes GPS-denied navigation a practical product feature, not just a research topic.
Related #
- Edge AI silicon: CV5 vs Jetson vs Hexagon. The chips that run the perception stack on real drones.