Papers
Topics
Authors
Recent
Search
2000 character limit reached

Dense Feed-Forward 3D Gaussian Splatting

Updated 15 December 2025
  • The method directly predicts a dense set of anisotropic 3D Gaussian primitives from as few as two unposed RGB images, eliminating per-scene optimization.
  • It employs a dual-branch feed-forward network with transformer-based backbones to extract geometry and semantic features, achieving state-of-the-art fidelity in real time.
  • By unifying appearance, geometry, and semantic fields, the approach enables high-fidelity novel view synthesis and view-consistent semantic segmentation.

Dense feed-forward 3D Gaussian splatting is a paradigm for real-time 3D scene reconstruction and rendering, based on direct, non-iterative prediction of a dense set of anisotropic 3D Gaussian primitives from as few as two sparse-view, uncalibrated RGB images. Modern methods unify scene appearance, geometry, and semantic fields in this differentiable 3D point representation, enabling high-fidelity novel view synthesis and view-consistent semantic segmentation without requiring camera parameters or per-scene optimization. This approach achieves state-of-the-art performance by leveraging transformer-based architectures, loss-guided training schedules, semantic feature distillation, and redundancy-aware representations to produce compact yet expressive 3D Gaussian fields suitable for open-vocabulary scene understanding (Tian et al., 11 Jun 2025).

1. Dense 3D Gaussian Parameterization

Each scene is encoded by NN anisotropic Gaussian primitives, each parameterized by a 3D spatial center μiR3\mu_i\in\mathbb{R}^3, a positive-definite full covariance matrix ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}, a spherical-harmonics coefficient vector cic_i for color (e.g.e.g., 27-D for SH of order 3), and a semantic feature vector fiRDf_i\in\mathbb{R}^{D} (with D256D\sim256) (Tian et al., 11 Jun 2025). At any 3D location xx, the Gaussian’s unnormalized density is

Gi(x)=exp(12(xμi)Σi1(xμi)).G_i(x) = \exp\left(-\frac{1}{2}(x-\mu_i)^\top \Sigma_i^{-1}(x-\mu_i)\right).

These attributes are predicted densely, typically at per-pixel granularity for each input view. The color coefficients model view-dependent appearance via spherical harmonics, while the semantic vector enables integration of semantic information.

2. Feed-Forward Network Architectures

Feed-forward dense 3D Gaussian splatting architectures generally take two or more unposed RGB images of resolution H×WH\times W as input. A shared Vision Transformer (ViT) backbone, such as MASt3R, processes each view to extract per-pixel feature maps (Tian et al., 11 Jun 2025). These feature maps are input to a dual-branch, decoupled decoder, frequently inspired by Dense Prediction Transformers (DPT), splitting into:

  • Geometry branch: Predicts per-pixel 3D centers μiR3\mu_i\in\mathbb{R}^30 in a canonical coordinate system, and a pose head for auxiliary supervision.
  • Attribute branch: Predicts covariance μiR3\mu_i\in\mathbb{R}^31, color SH coefficients μiR3\mu_i\in\mathbb{R}^32, opacity μiR3\mu_i\in\mathbb{R}^33, and semantic feature vectors μiR3\mu_i\in\mathbb{R}^34.

All predicted Gaussians from all input views are concatenated, yielding μiR3\mu_i\in\mathbb{R}^35 primitives per scene. The architectures are fully end-to-end and do not require known camera poses or depth at test time.

3. Splatting and Differentiable Rendering

For novel-view synthesis, each Gaussian’s center is projected to the target camera’s image plane using the camera projection matrix μiR3\mu_i\in\mathbb{R}^36 (μiR3\mu_i\in\mathbb{R}^37). The 3D covariance is projected to 2D as μiR3\mu_i\in\mathbb{R}^38. Each Gaussian’s contribution at pixel μiR3\mu_i\in\mathbb{R}^39 is

ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}0

Final rendered RGB ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}1 and semantic feature map ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}2 are computed by normalized, weighted sums:

ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}3

Rendering thus yields both image color and a dense, view-consistent semantic feature field (Tian et al., 11 Jun 2025).

4. Training Objectives and Loss Schedules

Training employs a composite loss to enforce accurate geometry, appearance, and semantics:

  • Photometric loss: ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}4 (with ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}5), comparing rendered and ground-truth images.
  • Auxiliary pose loss: ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}6 supervises predicted camera poses relative to a reference, using translation and quaternion error.
  • Semantic distillation loss: ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}7 aligns the rendered semantic field with features extracted from a pretrained 2D open-vocabulary semantic segmentation model.
  • Loss-guided view sampler: Training dynamically schedules view triplets in an “easy-to-hard” fashion by increasing the frame gap and the maximum viewing angle threshold as pose loss stabilizes, eliminating the need for ground-truth depth or masks (Tian et al., 11 Jun 2025).

Overall, ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}8, with typical ΣiR3×3\Sigma_i\in\mathbb{R}^{3\times3}9.

5. Real-Time Inference and Semantic Reconstruction

Dense feed-forward models predict all Gaussian parameters in a single network evaluation (typically cic_i00.1 s for cic_i1k on modern GPUs), producing scene geometry and semantics from sparse-view unposed images (Tian et al., 11 Jun 2025). Rendering at cic_i29 FPS for novel views is achieved. By leveraging the embedded semantic features, the system outputs semantic fields that are spatially and view-consistent, permitting further decoding to per-pixel, open-vocabulary semantic masks.

Notably, methods such as UniForward provide both appearance and open-vocabulary semantic predictions in a unified pipeline, with empirical results reporting ScanNet++ PSNR cic_i3, SSIM cic_i4, LPIPS cic_i5, semantic mean accuracy cic_i6, and mean IoU cic_i7—substantially outperforming iterative or depth-supervised dense fusion methods (Tian et al., 11 Jun 2025).

6. Comparison to Iterative and Per-Scene Optimization Methods

Traditional and hybrid neural rendering methods (e.g., NeRF, iterative 3DGS) require per-scene optimization over minutes, directly optimizing primitive parameters via rendering loss. For instance, Feature 3DGS requires cic_i810 min, Dense Fusion Fields (DFFs) cic_i92 min to reach PSNR 14–18; feed-forward methods require no per-scene optimization, reconstruct in e.g.e.g.00.1 s, and achieve significantly superior fidelity (PSNR e.g.e.g.128.1) (Tian et al., 11 Jun 2025). Speed and memory costs are drastically lowered; all scene-level modeling and rendering is subsumed by the learned, generalizable network. Iterative methods offer marginally more overfitting capacity for extremely fine details but fail to generalize or operate in real time.

Approach Per-scene time PSNR (ScanNet++) Semantic mAcc/mIoU
Feature 3DGS ~10 min ~14–18 N/A
DFFs ~2 min ~18.1 0.697 / 0.287
UniForward 0.1 s 28.1 0.758 / 0.345

Feed-forward approaches, by their design, enable generalization, real-time operation, and bounded memory at scale.

7. Unified Scene-Semantics Representation and Future Directions

Dense feed-forward 3D Gaussian splatting enables joint scene and semantic field prediction by embedding high-dimensional semantic feature vectors into each primitive. Compositing these features produces view-consistent, open-vocabulary masks that can be directly decoded for downstream scene understanding tasks (Tian et al., 11 Jun 2025).

A plausible implication is that this explicit field coupling facilitates new forms of 3D open-world perception, surpassing the classical geometry/appearance/semantics separation. Directions for further research include co-designing geometry and semantics decoders, incorporating more scalable loss schedules for even greater generalization, and integrating redundancy-aware pruning mechanisms from recent compact splatting approaches (Sheng et al., 29 May 2025).


Key References:

  • "UniForward: Unified 3D Scene and Semantic Field Reconstruction via Feed-Forward Gaussian Splatting from Only Sparse-View Images" (Tian et al., 11 Jun 2025)
  • "SpatialSplat: Efficient Semantic 3D from Sparse Unposed Images" (Sheng et al., 29 May 2025)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Dense Feed-forward 3D Gaussian Splatting.