RadarSplat-RIO: Radar Bundle Adjustment
- The paper introduces RadarSplat-RIO, a novel radar bundle adjustment framework that uses Gaussian Splatting to jointly refine sensor poses and scene geometry.
- It achieves significant drift reduction by integrating full range-azimuth-Doppler radar data with inertial measurements, yielding up to 90% improvement in absolute translational error.
- The system leverages differentiable radar rendering and a hybrid optimization strategy to perform real-time, local bundle adjustment in challenging indoor environments.
Searching arXiv for the specified paper and closely related radar Gaussian-splatting work. RadarSplat-RIO is an indoor radar-inertial odometry system that introduces a Gaussian Splatting-based radar bundle adjustment formulation for simultaneous pose refinement and scene optimization from full range-azimuth-Doppler radar data. It is presented as the first radar bundle adjustment framework enabled by Gaussian Splatting, and it is designed to reduce the drift that arises when radar SLAM pipelines rely primarily on frame-to-frame odometry. When coupled to an existing radar-inertial odometry front-end, it jointly optimizes radar sensor poses and scene geometry within a local window and reports substantial reductions in absolute translational and rotational error across multiple indoor sequences (Kung et al., 15 Apr 2026).
1. Problem setting and conceptual role
RadarSplat-RIO addresses a specific gap in radar SLAM. Radar is described as more resilient to adverse weather and lighting conditions than visual and Lidar simultaneous localization and mapping, yet most radar SLAM pipelines still depend heavily on frame-to-frame odometry. That design induces substantial drift. Loop closure can correct long-term errors, but it requires revisiting places and depends on robust place recognition. By contrast, visual odometry commonly leverages bundle adjustment to jointly optimize poses and map structure within a local window.
Within that context, RadarSplat-RIO introduces a radar-specific analogue of bundle adjustment by using a dense and differentiable Gaussian Splatting scene representation. The core claim is not merely that Gaussian Splatting provides a convenient map parameterization, but that it enables a fully differentiable rendering pipeline over radar measurements, making joint optimization over poses and scene geometry practical in a radar-inertial setting.
A common misconception is that radar drift correction must be deferred to loop closure. RadarSplat-RIO instead formulates a local optimization problem in which recent keyframe poses and Gaussian scene parameters are refined directly against full range-azimuth-Doppler measurements. This shifts the emphasis from retrospective correction to continual local consistency enforcement.
2. System architecture
The system is organized into a front-end Radar-Inertial Odometry (RIO) module and a back-end Gaussian-Splat Bundle Adjustment module, referred to as RadarSplat++ in the technical summary.
The front-end takes raw MIMO radar data cube together with IMU pre-integration. It applies FFT over fast-time, antenna channels, and slow-time to obtain full range-azimuth-Doppler data, then reduces these measurements to 2D range-azimuth and range-Doppler images. CFAR point extraction on the range-azimuth image is used for ego-velocity estimation by solving in least squares. Radar linear velocity and IMU angular velocity are then fused in a GTSAM factor graph to produce initial poses (Kung et al., 15 Apr 2026).
The back-end operates in three stages. First, pose refinement optimizes the most recent keyframe pose to minimize range-azimuth and range-Doppler rendering errors. Second, local mapping optimizes new Gaussians in a temporal sliding window of size keyframes. Third, joint bundle adjustment simultaneously refines poses in a spatial radius and all Gaussians in that window.
This decomposition makes the method incremental rather than monolithic. Pose-only refinement stabilizes the newest estimate, local mapping introduces fresh scene structure, and joint bundle adjustment distributes corrections across both pose history and map geometry. A plausible implication is that the back-end is intended to preserve real-time front-end operation while still exploiting multi-frame consistency.
3. Gaussian scene representation and differentiable radar rendering
The scene is represented as a mixture of anisotropic 3D Gaussians,
where is the Gaussian mean, 0 is the covariance, and 1 is the amplitude, interpreted as radar cross-section. The continuous reflectivity field and density field are
2
In practice, each covariance is parameterized by scale 3 and rotation 4,
5
RadarSplat-RIO uses this representation to render differentiable radar observations. Range-azimuth rendering is written as 6, with received power following the radar equation
7
Doppler rendering is expressed as
8
for each Gaussian. The range-Doppler image is then formed as
9
The significance of this formulation is that both the range-azimuth and range-Doppler pathways are differentiable with respect to pose and Gaussian parameters. Gaussian Splatting is therefore not used only as a dense map representation; it is the mechanism that connects scene geometry to full radar measurement prediction. In this framework, bundle adjustment becomes a rendering-based estimation problem rather than a sparse feature-matching procedure.
4. Bundle adjustment formulation and optimization
The state variables in the bundle adjustment window are the keyframe poses 0 and the Gaussian parameters 1. For each radar pixel index 2 in frame 3, the predicted measurement is
4
The residual is defined by
5
and the objective is
6
where 7 is a Huber-style robust loss and 8 regularizes Gaussian size (Kung et al., 15 Apr 2026).
Optimization is performed with a Levenberg-Marquardt style Gauss-Newton solver implemented via auto-differentiation in PyTorch. Because all rendering steps from range-azimuth to range-Doppler are differentiable, gradients 9 and 0 are obtained by backpropagation through the rendering operators. The windowing policy is hybrid: local mapping uses the 1 most recent keyframes, while bundle adjustment selects all keyframes within a 2 m radius of the latest pose. Incremental updates are applied in the sequence pose-only refinement, then mapping, then joint bundle adjustment.
The paper’s pseudocode summary makes the same structure explicit: render range-azimuth and range-Doppler images from 3, compute residuals, form a total loss with image-domain terms and Gaussian-scale regularization, backpropagate, and update 4 via an LM step. This is a dense optimization paradigm. A plausible implication is that robustness arises from distributing information across the full radar image support instead of relying on a small set of correspondences.
5. Implementation profile and empirical results
The implementation uses typically 5–6 Gaussians per local map. New Gaussians are seeded at CFAR points projected into 3D, with initial scale set to match cell size 7 and 8 initialized to a small uniform value. The Doppler-bin bandwidth is set to 9, and the bin window is 0 for efficient soft-binning. On an NVIDIA RTX 3080, one bundle adjustment iteration over approximately 1 keyframes and approximately 2 Gaussians takes on the order of 3–4 ms, and the full pipeline runs at approximately 5 Hz keyframe rate.
Evaluation is reported on five indoor sequences collected with a TI MMWCAS-RF-EVM radar plus RealSense D435i rig, where Stereo-VIO on the camera provides pseudo-ground truth. Sequence distances are 6 m, 7 m, 8 m, 9 m, and 0 m. The metrics are Absolute Translational Error (ATE), defined as root-mean-square position difference after best-fit alignment in meters, and Absolute Rotational Error (ARE), defined as mean angular difference in degrees (Kung et al., 15 Apr 2026).
| Sequence | ATE | ARE |
|---|---|---|
| 1 (42 m) | 1 | 2 |
| 2 (92 m) | 3 | 4 |
| 3 (145 m) | 5 | 6 |
| 4 (206 m) | 7 | 8 |
| 5 (234 m) | 9 | 0 |
Across all sequences, the reported average reduction is approximately 1 in ATE and approximately 2 in ARE. These results directly support the paper’s central claim that a radar bundle adjustment back-end can materially improve a radar-inertial odometry pipeline, particularly in indoor environments where drift accumulation is pronounced.
6. Ablations, failure modes, and relation to adjacent radar Gaussian-splatting work
The ablation study isolates the contribution of the back-end and of specific design choices. Removing the back-end increases overall error to approximately 3 m ATE and approximately 4 ARE over all sequences. Using the back-end without bundle adjustment, retaining only pose refinement and mapping, gives approximately 5 m ATE and approximately 6 ARE. Removing the front-end RIO initialization causes failure, with ATE 7 m and ARE 8. These results indicate that the method is neither purely front-end-driven nor purely back-end-driven; it depends on the interaction between initialization and joint refinement.
Window selection also matters. For the spatial bundle-adjustment radius, 9 m, 0 m, and 1 m yield ATE values 2, 3, and 4 m and ARE values 5, 6, and 7, respectively. For the temporal mapping window, 8, 9, 0, and 1, the best result occurs at 2, giving ATE 3 m and ARE 4. The range-Doppler loss has a particularly strong effect on translation: with the RD loss, ATE is 5 m and ARE is 6; without it, ATE rises to 7 m while ARE becomes 8. The authors note that Doppler rendering primarily drives translational accuracy in feature-poor corridors (Kung et al., 15 Apr 2026).
Reported failure modes are specific. Dynamic objects can produce spurious Gaussians; mitigation is provided by Doppler thresholding and the robust loss 9. Highly featureless rooms lead to slower convergence, for which tighter regularization 0 is recommended. The selected parameters 1 m and 2 are said to strike a good trade-off.
In the broader radar Gaussian-splatting landscape, RadarSplat-RIO is focused on odometry and local bundle adjustment, whereas RaGS uses 3D Gaussian Splatting as a representation for fusing 4D radar and monocular cues in 3D object detection (Bai et al., 26 Jul 2025). This suggests a broader methodological pattern: Gaussian Splatting is being adapted within radar research not only as a rendering primitive but as an optimization-compatible scene representation for distinct perception tasks.