Moment-Based OIT in 3D Gaussian Splatting
- Moment-Based OIT is a transmittance computation technique that uses statistical moments to achieve order-independent blending of semi-transparent volumes.
- It replaces traditional alpha blending and per-pixel sorting with efficient moment accumulation and closed-form Gaussian integrals.
- Empirical results show reduced artifacts and improved reconstruction quality in complex 3D scenes compared to conventional methods.
Moment-based order-independent transparency (OIT) is a transmittance computation technique designed for real-time rendering of semi-transparent and overlapping volumetric objects, particularly within 3D Gaussian splatting frameworks. By characterizing the entire distribution of volumetric density along each camera ray via statistical moments, moment-based OIT achieves physically faithful, order-independent compositing of translucent geometry, offering a significant advancement over traditional order-dependent alpha blending and per-pixel sorting approaches. Notably, the method avoids the need for ray tracing or sample sorting, providing both efficiency and high reconstruction quality in complex scenes (Müller et al., 12 Dec 2025).
1. Theoretical Foundations and Transmittance Calculation
Order-independent transparency in volumetric rendering aims to compute, for each camera ray (with ), the fraction of incident radiance that remains unabsorbed after passing through all overlapping media. For a scene represented by weighted 3D Gaussians, the total extinction-density along the ray is
A key challenge is to accumulate contributions without imposing a rendering order. Rather than compute raw moments (which are numerically unstable at large ), the domain is warped via and compactly encoded as "warped-distance moments":
Each is computed via closed-form 1D Gaussian integrals, with the base cases and a three-term recurrence relation supporting efficient moment computation up to order $2n+1$. This per-pixel sequence succinctly summarizes the aggregated density profile along the ray.
From these moments, the cumulative absorbance and thus the transmittance
are reconstructed using a classical moment-bounds scheme (Münstermann et al., 2018). The Hankel matrix is assembled, and its kernel polynomial yields a quadrature rule . Absorbance bounds are thus defined in terms of and these roots/weights, and the final empirical transmittance is computed as
This approach ensures continuous, order-independent, and physically plausible transmittance estimation per pixel.
2. Per-Gaussian Volume Integration Without Sorting
Once the per-pixel transmittance profile is reconstructed, rendering proceeds by evaluating each Gaussian's contribution independently. For Gaussian , the ray segment is subdivided into importance-weighted intervals using
where is the inverse standard normal CDF. The local contribution to the pixel radiance is approximated as
with denoting the Gaussian density at each sample. Under the piecewise-constant approximation,
This step eliminates all sorting, as each particle is rendered independently with respect only to the globally accumulated per-pixel moments.
3. Order-Independent Rendering Pipeline
The rendering pipeline for moment-based OIT in 3D Gaussian splatting proceeds in a strictly order-independent fashion:
- Frustum and sphere culling: All 3D Gaussians are culled using conservative geometric proxies.
- Moment pass (additive blend): Each visible Gaussian projects a confidence-interval proxy. The pixel shader efficiently computes and accumulates its moment contributions into “moment textures” .
- Quadrature pass (additive blend): Each Gaussian is re-rasterized; for each pixel covered, its intervals are sampled, per-pixel moments are fetched, is reconstructed, and particle contributions and small consistency penalties are accumulated.
- Opacity-correction pass: The zeroth moment yields true scene opacity , allowing the radiance sum to be rescaled to match this value precisely, consistent with prior moment-OIT approaches.
Because each Gaussian’s radiance is derived solely from summed per-pixel moments, the final image is inherently order-independent, requiring neither depth-peeling nor per-pixel sorting.
4. Empirical Performance and Ablative Analysis
Moment-based order-independent transparency has been quantitatively evaluated against several competing methods across the MipNeRF-360, Tanks & Temples (train & truck), and DeepBlending datasets:
| Method | MipNeRF-360 PSNR | MipNeRF-360 SSIM | MipNeRF-360 LPIPS | Tanks&Temples PSNR | Tanks&Temples SSIM | Tanks&Temples LPIPS | DeepBlending PSNR | DeepBlending SSIM | DeepBlending LPIPS |
|---|---|---|---|---|---|---|---|---|---|
| 3DGS | 27.43 | 0.813 | 0.218 | 23.72 | 0.846 | 0.178 | 29.46 | 0.900 | 0.247 |
| StopThePop | 27.31 | 0.814 | 0.213 | 23.16 | 0.843 | 0.173 | 29.92 | 0.905 | 0.234 |
| Vol3DGS | 27.44 | 0.820 | 0.201 | 23.67 | 0.851 | 0.174 | 29.61 | 0.905 | 0.242 |
| EVER | 25.60 | 0.772 | 0.299 | 22.59 | 0.842 | 0.199 | 28.12 | 0.891 | 0.353 |
| Ours (MB3DGS) | 25.96 | 0.760 | 0.245 | 22.18 | 0.825 | 0.194 | 29.14 | 0.900 | 0.248 |
On synthetic tests with intersecting Gaussians, only the moment-based OIT reproduces ground-truth volumetric blending. Alternative methods (alpha-blend or front-to-back) exhibit artifacting or color bias.
Ablation on Tanks & Temples (truck):
| Ablation | PSNR | Time [h] | #points |
|---|---|---|---|
| w/o regularizer | 24.14 | 3.45 | |
| EWA-proxy (vs. ours) | 24.10 | 6.20 | |
| default ADC | 23.50 | 12.88 | |
| full MB3DGS | 24.25 | 2.83 |
Disabling the moment-continuity regularizer or employing the EWA 2D proxy both lower PSNR and increase computational cost. Opacity-based ADC increases point count and runtime, degrading reconstruction quality (Müller et al., 12 Dec 2025).
5. Relation to Classical and Contemporary OIT Techniques
Moment-based OIT extends the approach of screen-space moment analysis, previously introduced in rasterization-based order-independent transparency contexts, to the setting of 3D Gaussian splatting. Prior techniques rely on depth-peeling, per-pixel sorting, or coarse approximate blending which suffer from artifacts in scenes with complex volumetric occlusion and semi-transparency.
Unlike standard alpha blending or sorted splatting, moment-based OIT provides a closed-form, order-independent characterization of accumulated extinction—mitigating rendering artifacts and yielding closer alignment to physically-based light transport models. The analytic moment construction and associated recurrence support efficient accumulation and bounded memory usage even when rendering complex volumes.
6. Practical Considerations and Limitations
Moment-based OIT as implemented in MB3DGS is tailored for scenes representable by millions of 3D Gaussians, leveraging GPU rasterization for interactive performance. The method introduces minor overhead from the moment computation and the necessity for quadrature per Gaussian, but significantly reduces the number of particles and required runtime vis-à-vis sorting-based pipelines. The regularizer ensures moment continuity across pixels, further enhancing image fidelity.
A plausible implication is that moment-based OIT is best suited for moderate to high-density semi-transparent volumes where conventional splatting fails to resolve occlusion without visual artifacts. However, the technique currently depends on accurate per-pixel moment evaluation; numerical instability may arise at high moment orders or in cases with extreme density overlap. Future work could explore adaptive moment order selection or incorporate hybridizations with ray-casting for edge cases.
7. Summary and Outlook
Moment-based order-independent transparency in the context of 3D Gaussian splatting enables analytic, physically-aligned, and order-agnostic transmittance estimation for high-quality volumetric rendering. By gathering and utilizing per-pixel statistical moments, the method bridges the gap between fast splatting and physically accurate volume integration, with empirical results demonstrating superior artifact suppression and efficiency compared to state-of-the-art alternatives. Its adoption is likely to influence future works in real-time view synthesis, translucent media rendering, and physically-based graphics (Müller et al., 12 Dec 2025).