Papers
Topics
Authors
Recent
Search
2000 character limit reached

Large Gaussian Reconstruction Transformer

Updated 9 July 2026
  • Large Gaussian Reconstruction Transformer is a framework that employs large Transformer models to decode explicit 3D Gaussian primitives from images for 3D reconstruction.
  • The models integrate pixel-aligned decoders, geometry-aware queries, and deformable attention to fuse multi-view features and efficiently manage large token sequences.
  • Empirical evaluations show enhanced real-time rendering speeds and reconstruction accuracy through adaptive Gaussian splitting, pruning, and iterative refinement strategies.

Searching arXiv for the cited Gaussian reconstruction transformer papers to ground the article. Large Gaussian Reconstruction Transformer denotes a class of feed-forward reconstruction systems that decode explicit 3D Gaussian primitives from one or more images using large Transformer-based architectures, typically for real-time or near-real-time novel-view synthesis and 3D reconstruction. Across the literature, the term covers several closely related design families: pixel-aligned Gaussian decoders that predict one Gaussian per input pixel, geometry-aware models that decode Gaussians from sparse 3D anchors or hybrid triplane-point representations, deformable-attention decoders that treat Transformer queries as Gaussian ellipsoids, and long-sequence variants that process extended image sets or videos (Xu et al., 2024). These models replace or complement volumetric neural fields with directly splattable Gaussians, thereby shifting the computational bottleneck from per-ray integration to explicit primitive prediction and rasterization, while preserving differentiability for end-to-end supervision (Zhang et al., 2024).

1. Conceptual scope and historical positioning

The central premise is that a Transformer can map image-conditioned tokens to a large, renderable set of Gaussian primitives, each carrying geometry, opacity, and appearance. In the deformable-query formulation exemplified by LeanGaussian, each query corresponds to one 3D Gaussian ellipsoid parameterized by center, rotation, covariance, opacity, and spherical harmonics appearance; this explicitly breaks pixel or point-cloud correspondence and lets the model refine Gaussians by attending to informative image features rather than binding them to fixed pixels or points (Wu et al., 2024). In feed-forward sparse-view settings, this premise appears in GS-LRM, GRM, GeoLRM, and related models, which differ mainly in whether Gaussians are decoded per pixel, per anchor, or per point-triplane query (Zhang et al., 2024).

The “large” designation refers to several distinct scaling axes found in the literature. It may describe model capacity, as in GS-LRM’s approximately 300M-parameter Transformer and FreeSplatter’s approximately 306M-parameter pose-free architecture (Zhang et al., 2024). It may also refer to large token sequences, large Gaussian outputs, large-scale training corpora, or long temporal and multi-view contexts. GRM is trained on Objaverse filtered to approximately 100k high-quality objects and predicts approximately 1.05 million splats for four 512×512 views (Xu et al., 2024). Long-LRM extends the paradigm to 32 posed images at 960×540 resolution and roughly 260k tokens, targeting wide-coverage scene reconstruction in a single network pass (Ziwen et al., 2024). In dynamic settings, 4DGT treats “large” as including 64-frame windows and large-scale monocular video training (Xu et al., 9 Jun 2025).

A recurring motivation across these works is that volumetric implicit representations impose expensive rendering and training, whereas explicit Gaussians admit fast differentiable splatting. GS-LRM reports prediction of 3D Gaussian primitives from 2–4 posed sparse images in 0.23 seconds on a single A100 GPU (Zhang et al., 2024). GRM reports sparse-view reconstruction in about 0.11 seconds with real-time rendering (Xu et al., 2024). LeanGaussian reports 3D reconstruction speed of 7.2 FPS and rendering speed 500 FPS (Wu et al., 2024). This suggests that the unifying identity of the LGRT family is architectural rather than tied to a single paper title: a large Transformer is used to reconstruct explicit Gaussian primitives directly enough that the renderer remains the fast part of the pipeline.

2. Representation of Gaussian primitives

Most LGRT variants adopt anisotropic 3D Gaussians with a rotation-scale covariance factorization. A common parameterization specifies a mean μR3\mu \in \mathbb{R}^3, rotation RSO(3)R \in SO(3) or a quaternion, axis-aligned scales sR3s \in \mathbb{R}^3, opacity α\alpha, and color or spherical harmonics coefficients. The covariance is then written as

Σ3D=Rdiag(s2)R,\Sigma_{3D} = R \,\mathrm{diag}(s^2)\, R^\top,

or equivalently as Σ=RSSR\Sigma = R S S^\top R^\top with S=diag(sx,sy,sz)S=\mathrm{diag}(s_x,s_y,s_z) (Wu et al., 2024). This factorization is used in LeanGaussian, Triplane-Gaussian, GRM, PixelGaussian, and related systems because it guarantees positive semi-definiteness while retaining anisotropy (Zou et al., 2023).

Appearance modeling varies. GS-LRM uses SH0 RGB only, explicitly noting view-independent color for simplicity (Zhang et al., 2024). LeanGaussian and Triplane-Gaussian use spherical harmonics coefficients for view-dependent color (Wu et al., 2024). GRM uses the DC term of spherical harmonics for feed-forward training, while full SH can be used at render time (Xu et al., 2024). This difference is consequential: SH-based appearance broadens material expressivity but increases per-Gaussian attribute dimensionality and makes decoding more sensitive to correspondence ambiguity.

The mean can be parameterized either directly or via ray-conditioned depth. Pixel-aligned families favor depth or ray-distance decoding because it constrains Gaussian centers to camera rays. GS-LRM predicts a per-pixel ray distance tt and lifts the center as μ=o+td\mu = o + td, with object and scene variants differing only in near-far ranges and normalization (Zhang et al., 2024). GRM similarly predicts depth d(u)d(u) per pixel and unprojects with

RSO(3)R \in SO(3)0

using camera intrinsics and extrinsics (Xu et al., 2024). LeanGaussian adopts a depth-plus-offset parameterization

RSO(3)R \in SO(3)1

which preserves ray structure while allowing learned corrections (Wu et al., 2024). The repeated use of ray-constrained centers reflects a shared belief that unconstrained Cartesian regression is difficult because Gaussian sets are discrete, high-dimensional, and non-structural (Zou et al., 2023).

Projection to the image plane also follows a common pattern. A Gaussian center is mapped by the camera model, and its 3D covariance is projected using the local Jacobian:

RSO(3)R \in SO(3)2

This projected 2D covariance defines the elliptical footprint used by the splatter (Zou et al., 2023). The image contribution is then weighted by a 2D Gaussian kernel and composited front-to-back, typically as

RSO(3)R \in SO(3)3

with depth ordering supplied by the rasterizer (Wu et al., 2024). Although these equations are standard in 3DGS-derived systems, LGRT papers differ in whether they emphasize normalized splatting, standard alpha compositing, or tile-based rasterization.

3. Architectural families

A first family comprises pixel-aligned large reconstruction models. GS-LRM patchifies posed images, concatenates multi-view image tokens, and decodes per-pixel Gaussian parameters directly from Transformer outputs, yielding one Gaussian per input pixel per view (Zhang et al., 2024). GRM follows a closely related philosophy, but with a pure Transformer encoder and a Transformer upsampler that translates multi-view pixels into pixel-aligned Gaussian attributes and then unprojects them into world-space Gaussians (Xu et al., 2024). FreeSplatter extends this family to uncalibrated inputs by predicting per-pixel Gaussian primitives in a unified reference frame and then estimating focal length and extrinsics from the resulting 3D–2D correspondences (Xu et al., 2024).

A second family uses hybrid explicit-implicit intermediates. Triplane-Gaussian reconstructs a coarse point cloud with a point decoder Transformer, upsamples it with Snowflake Point Deconvolution to 16,384 points, and then queries a triplane feature field to decode Gaussian parameters per point via an MLP (Zou et al., 2023). The explicit point cloud supplies spatial grounding, while the triplane organizes implicit features for non-structural attributes such as opacity, orientation, anisotropy, and SH color (Zou et al., 2023). This suggests a compromise between direct Gaussian regression and fully implicit fields: position is treated as structured, whereas Gaussian attributes are decoded from a learned field.

A third family is explicitly geometry-aware and non-pixel-aligned. GeoLRM first predicts occupied voxels through a proposal transformer, then processes sparse 3D anchor tokens with self-attention and deformable cross-attention to fuse multi-view image features and decode multiple Gaussians per anchor (Zhang et al., 2024). Because only sparse occupied regions are tokenized, the method is designed to exploit the fact that only about 5% of volume is occupied on Objaverse (Zhang et al., 2024). LeanGaussian occupies a related but distinct point in the space: it abandons pixel or point-cloud correspondence entirely and uses deformable Transformer queries as Gaussians, refined layer by layer from image features (Wu et al., 2024).

A fourth family targets long contexts or dynamic scenes. Long-LRM combines Mamba2 blocks with Transformer blocks so that 32 images at 960×540 can be processed as a single long sequence, with token merging and opacity-driven pruning to keep memory and runtime tractable (Ziwen et al., 2024). 4DGT and DGS-LRM extend Gaussian reconstruction from static 3D assets to spatio-temporal Gaussians or deformable Gaussian splats, respectively, using Transformer architectures over video tokens and temporal conditioning or learned deformation fields (Xu et al., 9 Jun 2025). These works indicate that the LGRT concept naturally generalizes from “large model for 3D Gaussian assets” to “large model for dynamic or wide-coverage Gaussian worlds.”

4. Attention mechanisms, tokenization, and geometric conditioning

Most LGRTs rely on global self-attention over concatenated multi-view tokens, but the way geometry is injected differs markedly. GS-LRM dispenses with positional embeddings and view embeddings entirely, using 9-channel inputs formed by RGB plus a 6D Plücker-like ray encoding. The ray channels act as camera-aware spatial conditioning, and global attention then resolves correspondences implicitly (Zhang et al., 2024). GRM likewise augments pixels with Plücker ray embeddings before tokenization, concatenates tokens from all views, and uses self-attention over the joint sequence as the sole cross-view aggregation mechanism (Xu et al., 2024).

Other models introduce more explicit geometry-conditioned fusion. Triplane-Gaussian uses DINOv2 patch tokens modulated with camera features through adaptive LayerNorm, then combines a point decoder and triplane decoder with cross-attention to image tokens (Zou et al., 2023). GeoLRM projects 3D anchor tokens into every input image and samples local features around those projections using deformable offsets and learned per-view weights, implementing a deformable cross-attention of the form

RSO(3)R \in SO(3)4

where the projection-guided sampling is meant to mitigate pose inaccuracies and multi-view inconsistencies (Zhang et al., 2024). LeanGaussian performs a closely related operation, but uses Gaussian centers themselves as 3D reference points and refines them layer by layer in a deformable decoder (Wu et al., 2024).

Scalability pressures have produced several sequence-management strategies. Long-LRM uses a hybrid of linear-time state-space modeling and global self-attention, repeated as RSO(3)R \in SO(3)5, with token merging at block 9 to reduce sequence length by RSO(3)R \in SO(3)6 (Ziwen et al., 2024). PixelGaussian addresses scale from a different direction: rather than keeping all per-view Gaussians, it predicts a complexity map, uses hypernetwork-predicted thresholds to split or prune Gaussians, and refines the adapted set through image–Gaussian deformable attention (Fei et al., 2024). This suggests two broad approaches to the “large” problem: either compress or merge tokens before Gaussian prediction, or dynamically manage the Gaussian set after an initial prediction.

5. Rendering, supervision, and optimization objectives

Nearly all LGRTs are trained by differentiable rendering, but the supervision structure varies from purely photometric objectives to multi-stage curricula with geometric losses. GS-LRM optimizes a photometric-plus-perceptual loss rendered at supervision views,

RSO(3)R \in SO(3)7

with RSO(3)R \in SO(3)8 (Zhang et al., 2024). GRM uses per-view novel-camera supervision with image MSE plus a perceptual term and an alpha-mask loss:

RSO(3)R \in SO(3)9

where mask supervision is explicitly used to remove floaters and encourage sparsity (Xu et al., 2024).

Two-stage training is common when Gaussian prediction is mediated by another structure. Triplane-Gaussian first trains the point decoder using Chamfer distance and EMD, then freezes it and trains the triplane decoder and Gaussian MLP using rendering losses with mask MSE, SSIM, and LPIPS (Zou et al., 2023). PixelGaussian is trained end to end with

sR3s \in \mathbb{R}^30

with sR3s \in \mathbb{R}^31 and sR3s \in \mathbb{R}^32, while the dynamic Gaussian count is controlled by learned split and prune operations rather than an explicit sparsity term (Fei et al., 2024).

Deformable-query models introduce supervision at intermediate refinement stages. LeanGaussian applies multi-view RGB photometric loss to the encoder’s rendered input view and to every decoder layer’s outputs, with LPIPS added after 800k steps (Wu et al., 2024). The paper’s ablations report that removing multi-layer refinement severely degrades performance, with a PSNR drop to approximately 21.1 in a 100k-step ablation (Wu et al., 2024). This emphasizes a recurrent pattern in LGRTs: iterative refinement is usually stabilized by layerwise or stagewise supervision rather than purely terminal losses.

Some extensions depart from purely photometric supervision. Long-LRM adds a scale-invariant Smooth-L1 disparity loss from DepthAnything and an opacity L1 penalty:

sR3s \in \mathbb{R}^33

with sR3s \in \mathbb{R}^34 and sR3s \in \mathbb{R}^35 (Ziwen et al., 2024). GeoLRM supervises image, alpha mask, and depth in the reconstruction stage (Zhang et al., 2024). In specialized domains, X-GRM combines volume-space MSE with differentiable X-ray rendering losses in a voxel-based Gaussian splatting representation (Liu et al., 21 May 2025). These variants illustrate that the Gaussian representation is not tied to RGB novel-view synthesis alone; it can support other forward models and supervisory signals.

6. Empirical behavior, scaling laws, and recurring trade-offs

A prominent empirical finding is that explicit Gaussian reconstruction models often achieve a favorable speed–quality regime relative to NeRF-style or optimization-based baselines. GS-LRM reports 0.23 seconds end-to-end from 2–4 posed images and improves over pixelSplat on RealEstate10K by sR3s \in \mathbb{R}^36 dB PSNR, sR3s \in \mathbb{R}^37 SSIM, and sR3s \in \mathbb{R}^38 LPIPS (Zhang et al., 2024). GRM reports PSNR 30.05, SSIM 0.906, and LPIPS 0.052 on GSO from four views with 0.11-second inference and real-time rendering (Xu et al., 2024). Triplane-Gaussian reports 0.14 s on GSO with PSNR 23.15, SSIM 0.87, and LPIPS 0.13, outperforming several slower generative baselines (Zou et al., 2023).

Another recurring finding is that naive pixel-wise Gaussian accumulation does not scale gracefully with additional views. PixelGaussian explicitly studies this failure mode. On RealEstate10K, PixelSplat’s PSNR drops from 25.67 to 20.12 and MVSplat’s from 26.25 to 20.74 as views increase, while PixelGaussian improves from 26.72 to 26.85 and keeps Gaussian count growth sublinear, from 188K to 240K to 278K rather than linearly exploding (Fei et al., 2024). This supports the claim that “large” in LGRTs is not only about model size but also about representation management: without pruning, splitting, or non-pixel-aligned decoding, more input evidence can paradoxically worsen reconstruction.

Sequence length and query count show diminishing returns. LeanGaussian’s ablation reports gains up to approximately 10k Gaussians with diminishing returns beyond that, and a substantial jump from one to two decoder layers but smaller gains for four to six layers at higher speed cost (Wu et al., 2024). Long-LRM observes that 64 views, exceeding 500k context, improves PSNR by less than 1 dB while straining memory and time (Ziwen et al., 2024). These results suggest that scaling laws in LGRTs are constrained by both quadratic attention and linear Gaussian rasterization costs; more tokens or more splats help only until redundancy dominates.

A further trade-off concerns coverage versus compactness. Pixel-aligned methods such as GS-LRM and GRM produce dense Gaussian sets that are straightforward to decode but potentially redundant. GeoLRM and LeanGaussian reduce this redundancy by working from anchors or free queries, at the cost of more elaborate geometry-aware attention (Zhang et al., 2024). Free-Range Gaussians, a later generative extension, makes the critique explicit by targeting non-pixel, non-voxel-aligned Gaussians through conditional flow matching and reporting consistent improvements while using approximately 8K Gaussians instead of the tens or hundreds of thousands common in grid-aligned baselines (Shabanov et al., 6 Apr 2026). A plausible implication is that the field is moving from “large number of explicit splats” toward “large model that predicts a smaller, better-organized splat set.”

7. Limitations, misconceptions, and future directions

A common misconception is that LGRT simply denotes one specific architecture. The literature instead uses the phrase to describe a design space: pure Transformer pixel-to-Gaussian translation in GRM (Xu et al., 2024), flat ViT-style decoding in GS-LRM (Zhang et al., 2024), hybrid triplane-point decoders (Zou et al., 2023), geometry-aware 3D anchor transformers (Zhang et al., 2024), deformable-query Gaussian decoders (Wu et al., 2024), and pose-free or long-sequence generalizations (Xu et al., 2024). The unifying property is direct prediction of explicit Gaussian primitives from image-conditioned large models, not a single canonical backbone.

Another misconception is that feed-forward Gaussian reconstruction solves unseen-region ambiguity. Several papers explicitly reject that claim. GS-LRM notes limited ability to hallucinate unseen regions outside input frusta under sparse views (Zhang et al., 2024). Triplane-Gaussian states that backside textures may be blurry due to single-view ambiguity and non-probabilistic modeling (Zou et al., 2023). FreeSplatter notes that pixel-aligned Gaussians can underrepresent occluded areas, even though scene-level and object-centric training strategies mitigate this to some extent (Xu et al., 2024). Later generative variants such as NovelGS and Free-Range Gaussians address this by introducing diffusion-style or flow-matching generative formulations, which suggests that classical feed-forward LGRTs are strong reconstructors but not inherently strong hallucination models (Liu et al., 2024).

Pose dependence remains a major constraint in many systems. GS-LRM, GRM, GeoLRM, and LeanGaussian assume calibrated cameras (Zhang et al., 2024). FreeSplatter is notable precisely because it removes this assumption, using a 24-layer single-stream Transformer to predict Gaussian maps in a unified frame and then solve for focal length and extrinsics via off-the-shelf solvers (Xu et al., 2024). This indicates that pose-free LGRT is possible, but it requires absolute 3D position regression and a careful staged training strategy with position supervision and pixel-alignment losses.

Several future directions recur across the papers. One is multi-scale or hierarchical processing to handle longer sequences and higher resolutions; Long-LRM’s mixture of Mamba2 blocks, global attention, token merging, and Gaussian pruning is one concrete realization (Ziwen et al., 2024). Another is dynamic Gaussian management, including spawning, merging, pruning, and hierarchical coarse-to-fine refinement, already proposed as natural extensions in LeanGaussian and explored more explicitly in PixelGaussian (Wu et al., 2024). A third is broader multimodal or task-specific adaptation: 4DGT and DGS-LRM extend LGRT to dynamic scenes (Xu et al., 9 Jun 2025), X-GRM adapts the paradigm to CT reconstruction via Voxel-based Gaussian Splatting (Liu et al., 21 May 2025), and human-centered systems such as HART and FastAvatar combine Transformer reconstruction with mesh or body-model alignment before Gaussian rendering (Chen et al., 30 Sep 2025).

Taken together, the LGRT literature establishes a coherent but still rapidly evolving field. Its defining synthesis is straightforward: large image-conditioned Transformers reconstruct explicit Gaussian primitives that can be rasterized directly. The unresolved question is not whether this paradigm is viable—it clearly is—but which combination of tokenization, geometric grounding, Gaussian parameterization, and set management best balances coverage, compactness, generalization, and speed across objects, scenes, videos, and specialized domains.

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 Large Gaussian Reconstruction Transformer.