Pith. sign in

REVIEW 4 major objections 6 minor 57 references

Robust and Efficient 3D Gaussian Splatting for Urban Scene Reconstruction

T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read The paper claims that city-scale 3D scenes can be reconstructed from drone images on a single 24 GB GPU, rendered in real time, with higher quality than prior 3D Gaussian Splatting methods.

desk verdict A competent engineering pipeline for urban 3DGS whose headline comparison is undermined by a test-time appearance-embedding adaptation that favors the proposed method on every reported metric. read the letter →

arxiv 2507.23006 v1 pith:WQEPPKXO submitted 2025-07-30 cs.CV

classification cs.CV
keywords 3DGaussianSplattingurbanscenereconstructionlevel-of-detailrenderingappearancetransformvisibility-basedimageselectionresource-constrainedtrainingreal-timedronephotogrammetry
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tries to establish that 3D Gaussian Splatting, previously practical mainly for small scenes, can be turned into a city-scale reconstruction system that runs on a single 24 GB GPU and still renders at real-time rates. It claims this is achieved by making every stage resource-aware: images are assigned to partitions by point-based visibility rather than location alone, densification is concentrated inside each partition with a distance-dependent gradient threshold, and a bottom-up level-of-detail generator builds each detail level under a strict Gaussian budget. A per-Gaussian appearance transform module absorbs lighting, season, and camera differences that normally make 3DGS grow floating artifacts, while depth, scale, and anti-aliasing regularizers suppress floaters and jagged edges. The reported experiments on three aerial scenes, two of them private drone captures, show higher PSNR, SSIM, and LPIPS than four prior methods while using modest Gaussian counts and real-time FPS. If the claim holds, the method offers a practical single-GPU recipe for arbitrarily large urban reconstruction with user-controllable resource use.

What carries the argument

Two mechanisms carry the efficiency claim and one carries the robustness claim. The efficiency core is the controllable bottom-up level-of-detail generator: a sequence of budgets $B_1<B_2<\cdots<B_l$, densification intervals $T_1>T_2>\cdots>T_l$, and downsampling factors $D_1<D_2<\cdots<D_l=1$; training starts at the coarsest level and checkpoints upward, so each level refines the previous one while the Gaussian count never exceeds the user-set budget for that level. Supporting it are point-based visibility, the fraction of the projected SfM point cloud's convex hull that an image sees within a partition, which selects training cameras and rebalances partitions, and in-partition prioritized densification, which allows a Gaussian at distance $d_i$ from its partition to densify only when its gradient exceeds $\hat{\tau}_{\min}(\frac{\min(d_i,\hat{d}_{\max})}{\hat{d}_{\max}}(\eta-1)+1)$, concentrating computation inside the partition. The robustness core is the appearance transform module: learned image embeddings and Gaussian embeddings passed through a lightweight MLP that predicts per-Gaussian color and opacity offsets, so appearance variations are modeled explicitly instead of being baked into extra Gaussians.

What would settle it

Run the reported benchmark on a public release of one of the two private drone scenes, or on another public urban scene of comparable scale, with each baseline tuned by its original authors under a 24 GB memory cap; if the reported PSNR, SSIM, LPIPS, and FPS gaps shrink or reverse, the claim fails. A cheaper check is to retrain the two LOD baselines on BigCity with their default pruning and granularity settings to see whether the Supplementary C hyperparameter adjustments, rather than the method itself, produced the quality gap.

Watch

Extended reading notes

Core claim

The central claim is that an urban-scale scene can be reconstructed from multi-view drone imagery without post-training compression, in less time and at higher fidelity than previous 3D-Gaussian approaches, by replacing uncontrolled densification with a budgeted level-of-detail hierarchy. The paper shows that three resource controls are sufficient: visibility-based camera assignment removes redundant training views; in-partition prioritized densification directs Gaussians to where they matter; and bottom-up LOD generation produces a sequence of levels, each constrained by a budget $B_i$, densification interval $T_i$, and image downsampling factor $D_i$, so that rendering can switch levels by partition-camera distance. On top of this, the appearance transform module learns a per-image and per-Gaussian embedding, feeding a lightweight MLP that predicts color and opacity offsets, which removes inter-image appearance inconsistencies and permits post-reconstruction appearance changes at no rendering cost. The experiments report that the LOD-enabled model renders the three test scenes at 99.7, 63.9, and 73.0 FPS with 3.60M, 6.65M, and 6.84M Gaussians while improving quality metrics over the compared LOD systems.

Load-bearing premise

The superiority claim rests on the fairness of the baseline hyperparameter adjustments made in Supplementary C and on the public availability of the two largest test scenes; if the adjusted baselines were handicapped more than fair tuning would, or if the private datasets hide unfavorable conditions, the measured gap could be an artifact.

Editorial extensions

If this is right

  • LOD mode gives a direct user-controlled trade-off between fidelity and footprint: cutting the budget on Rubble from $(8192,16384,32768)$ to $(1024,2048,4096)$ reduces Gaussians from 3.80M to 1.61M and raises FPS from 96.4 to 126.9 while PSNR drops only from 27.11 to 26.13.
  • Visibility-based camera selection removes 1.28–1.70 times as many redundant training views as location-only assignment, so the same quality is reached with fewer training iterations on the tested scenes.
  • In-partition prioritized densification accelerates training by 1.30–1.64 times and cuts the final Gaussian count by 1.37–2.05 times, with negligible effect on quality metrics.
  • The appearance transform module improves all three quality metrics on all three scenes and typically reduces Gaussian count, because it prevents the model from growing floaters to overfit appearance variation.
  • Except for the non-LOD configuration, all training and rendering steps in the reported experiments run within 24 GB of GPU memory, so the pipeline is usable on a single commodity card.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural check not performed in the paper is to release the two private scenes and run the same protocol on a public urban dataset; if the gains survive, the method becomes a reproducible benchmark rather than a private-data demonstration.
  • The per-Gaussian appearance embeddings point toward editable digital twins: by swapping only the image embedding, the same reconstruction could display different seasons, lighting, or camera styles without re-rendering cost, an ability the paper demonstrates for two building states.
  • The visibility-based camera selection is a generic data-reduction idea that could be transplanted to other partition-based scene representations, such as grid- or hash-based NeRF variants, to cut their training data as well.
  • Because the LOD levels are checkpoints with increasing budgets, they could be streamed progressively to a viewer—coarse level first, finer levels on approach—which would suit low-bandwidth city-scale browsing; the paper itself notes its current LOD switching is not incremental, so this is an extension rather than a claim.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes REUrbanGS, a 3D Gaussian Splatting framework for urban-scale scene reconstruction. It introduces point-based visibility for scene partitioning and training-camera selection, in-partition prioritized densification, a budget-controlled bottom-up LOD generation and selection scheme, an appearance transform module with per-image and per-Gaussian embeddings, and additional regularizers including depth, scale, opacity-offset, and anti-aliasing. Experiments on three large scenes (Rubble, JNU-ZH, BigCity) and four supplementary scenes compare against Switch-NeRF, 3DGS, CityGaussian, Hierarchical-3DGS, and VastGaussian, reporting PSNR, SSIM, LPIPS, number of Gaussians, and FPS. The central claim is that the method reconstructs urban scenes with better quality and efficiency than previous approaches.

Significance. The paper is a solid systems contribution. The visibility-based camera selection and controllable LOD generation are sensible engineering ideas, and the authors provide source code, which supports reproducibility. If the evaluation protocol were symmetric, the reported results would be evidence of a practical single-GPU pipeline for large urban scenes with real-time rendering and controllable memory use. However, the empirical claims are currently not fully supported: the quality numbers for the proposed method are obtained under a test-time adaptation protocol that baselines do not receive, baseline hyperparameters were retuned for the largest scene, and the two primary datasets are private. The significance of the contribution is therefore conditional on rectifying the evaluation.

major comments (4)
  1. [Supplementary D.1] The protocol used to compute all quality numbers for Ours in Tables 1 and 8 is asymmetric. D.1 states that the image embedding ℓ(I) is first optimized on the left half of each test image and scored on the right half, then repeated with the halves swapped. Because the two halves of the same image share illumination and weather conditions, this is genuine test-time adaptation that can inflate PSNR, SSIM, and LPIPS. No baseline receives an analogous test-image-specific adaptation, so the comparisons are not apples-to-apples. The paper's statement that this 'prevents information leakage and ensures fairness' is therefore not justified. Please report metrics with appearance embeddings fixed to a training-set value, or apply a matched test-time optimization to the baselines; at minimum, quantify the gap between the D.1 protocol and a no-adaptation protocol.
  2. [Supplementary C] For BigCity, the baselines' hyperparameters were changed substantially to fit in 80GB memory: CityGaussian's pruning ratios were raised from 40/50/60% to 70/80/90%, its densification cycle was tripled and its gradient threshold doubled; 3DGS's densification threshold was doubled; and Hierarchical-3DGS granularity was doubled from 6 to 12 pixels. These changes can plausibly degrade baseline quality beyond ordinary tuning. Table 1 shows CityGaussian LOD dropping from SSIM 0.825 (no LOD) to 0.712 on BigCity, and Hierarchical-3DGS LOD falling to 3.2 FPS. The paper should justify that these settings constitute fair tuning, or report baselines with default hyperparameters together with memory usage, or provide a sensitivity study demonstrating that the chosen settings do not materially alter the comparisons.
  3. [Section 4.1 and Tables 1, 8] The two primary large-scale datasets, JNU-ZH and BigCity, are private and not released, and no results are averaged over multiple seeds or reported with error bars. Since many reported differences are small (e.g., Rubble LPIPS 0.245 for Ours vs 0.256 for CityGaussian; FPS 99.7 vs 105.2), the absence of variance estimates and public data makes it impossible to assess whether the differences are significant or due to a favorable run. Please release the datasets or provide a detailed access mechanism, and report mean±std over at least three training runs for the headline comparisons.
  4. [Section 4.2 and Abstract] The abstract and Section 4.2 claim that the method 'outperforms previous approaches in both efficiency and quality,' but Table 1 does not show consistent dominance. With LOD enabled on Rubble, CityGaussian has lower #G (2.95M vs 3.60M) and higher FPS (105.2 vs 99.7); without LOD, 3DGS has lower #G and higher FPS on Rubble and JNU-ZH. The efficiency claim should be qualified (e.g., 'competitive efficiency while providing controllable budgets') or formulated as a trade-off rather than a strict improvement.
minor comments (6)
  1. [Section 4.4] Table 3 is captioned 'Qualitative ablations' but reports quantitative metrics; please rename it to 'Quantitative ablations'.
  2. [Figure 5 caption] The caption misspells 'Hierarchial-3DGS'; it should read 'Hierarchical-3DGS'.
  3. [Acknowledgments] The phrase 'the the Fundamental Research Funds' contains a duplicated article and should be corrected.
  4. [Section 3.5.1] The notation 'knn_{i;k}' in Equation (9) is not defined; please state explicitly that k is the number of nearest neighbors and clarify how the normalization over pairs is computed.
  5. [Table 2] The header 'Budget (×100)' is ambiguous; please state whether the listed values are already multiplied by 100 or are in units of 100, and give the actual budget values used.
  6. [Supplementary E.2, Table 8] The entry 'N/A (encountered a bug)' for CityGaussian on Campus should be replaced with a description of the failure mode or removed, since it is not a quantitative result.

Circularity Check

1 steps flagged · score 4.0 of 10

Reported quality metrics for Ours are computed after fitting the appearance embedding to half of each test image (Supplementary D.1), while baselines are evaluated with no test-image information, so the headline quality comparison is not a like-for-like prediction.

  1. fitted input called prediction [Supplementary Material, Section D.1 (Metric Calculation); affects Tables 1 and 8 and the Section 4.2 claim.]
    "Specifically, when computing the metrics for test images, we first optimize the image embedding ℓ(I) using the left half of the image and compute the metrics using the right half. ... Then, we optimize the embedding from scratch using the right half and computed the metrics with the left half. Finally, the average of the results from both rounds was taken as the final metric value for the entire image. This approach prevents information leakage and ensures fairness in the evaluation process."

    The paper's central 'outperforms previous approaches' claim is based on PSNR/SSIM/LPIPS numbers that for Ours are produced after a test-time fitting step: the global appearance embedding ℓ(I) is optimized on one half of each test image and then used to render and score the other half. Because both halves of the same image share illumination, weather, and camera settings, optimizing on the left half transfers appearance information into the right-half 'prediction', so the reported score is not a prediction from a fixed reconstruction on an unseen test view. The baselines (3DGS, CityGaussian, Hierarchical-3DGS, Switch-NeRF) are rendered with parameters fixed after training and receive no test-image adaptation.

full rationale

This paper is an empirical systems/engineering contribution, not a derivation chain, so most components (LOD budget scheduling, visibility-based partitioning, prioritized densification, regularization losses) are parameterized by user-defined choices and tested by ablations; none of these reduce to the reported metrics by construction. The one evaluation-circular element is Supplementary D.1: the test metrics for Ours are computed after optimizing the per-image appearance embedding ℓ(I) on half of each test image, while no baseline receives such test-image-specific adaptation. Since ℓ(I) is a global appearance latent, this is a genuine test-time fitting step that partly determines the other half's rendered appearance, making the headline quality comparisons (Tables 1 and 8, Section 4.2) not fully like-for-like. However, the reconstruction fidelity, LOD resource control, and efficiency claims retain independent content, and there is no self-citation chain or definitional tautology in the method itself, so the circularity is partial rather than total.

Assumptions & free parameters 7 free parameters · 4 assumptions · 0 invented entities

The method introduces no new physical entities. It relies on a set of hand-selected hyperparameters (LOD budgets, partition sizes, visibility threshold, distance thresholds, gradient thresholds, regularization weights, scale limits) that are scene-specific in some cases. These parameters are not derived from theory and must be tuned for a new scene. The paper also assumes the accuracy of external components (COLMAP SfM poses, monocular depth, and open-world segmentation).

free parameters (7)
  • LOD budget B per scene = (4096,8192,16384) Rubble; (4096,8192,20480) JNU-ZH; (2048,8192,20480) BigCity
    User-defined budgets control Gaussian density at each LOD level; Table 6 shows scene-specific values, and Table 2 shows quality/resource trade-off with B.
  • partition size = 180m (JNU-ZH), 400m (BigCity)
    Scene partition size affects training and rendering quality/efficiency; supplementary Table 12 shows impact.
  • visibility threshold = 1/6
    Only images with visibility Vij/Vi above threshold are assigned to a partition; Supplementary Section B sets this value.
  • LOD distance thresholds = e.g., (45m,90m,inf) to (180m,360m,inf) in supplement
    Detail level selection during rendering depends on partition-camera distance thresholds; Table 13 shows trade-offs.
  • gradient thresholds tau_min and factor eta = tau_min=0.0002 (levels 1-2), 0.6 (level 3); eta=4
    In-partition prioritized densification uses these thresholds; Supplementary Section B gives the values.
  • regularization weights lambda_sim, lambda_delta_o, lambda_d, lambda_s = 0.2, 0.05, 0.5 to 0.01, 0.05
    Weights in loss Eq. (15) are chosen by hand; Section 3.6 states the values.
  • smax and rmax = smax set to typical building size, rmax=10
    Scale regularization constraints; Supplementary Section B.
assumptions (4)
  • standard math Gaussian splatting alpha-blending and rasterization equations (Eqs. 1-2) and loss (Eq. 3) are valid background.
    These are taken from 3DGS [8] and used as the underlying representation and optimization target.
  • domain assumption Accurate camera poses and sparse point clouds are available from SfM.
    The visibility calculation and partition assignment depend on COLMAP poses and points; the Conclusion acknowledges that noisy poses degrade quality.
  • domain assumption Depth Anything V2 monocular depth predictions, aligned to SfM, are sufficiently reliable for depth regularization.
    Depth regularization uses these predictions; systematically wrong depth could bias geometry.
  • domain assumption Grounding DINO and SAM2 can segment transient objects (pedestrians, vehicles) adequately.
    Transient object removal relies on these pretrained detectors; missed detections could leave artifacts.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Robust and Efficient 3D Gaussian Splatting for Urban Scene Reconstruction." pith.science (2026). https://pith.science/paper/WQEPPKXO

@misc{pith2026250723006,
  author       = {Pith},
  title        = {Pith review of: Robust and Efficient 3D Gaussian Splatting for Urban Scene Reconstruction},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/WQEPPKXO}},
  note         = {Machine review of arXiv:2507.23006}
}
read the original abstract

We present a framework that enables fast reconstruction and real-time rendering of urban-scale scenes while maintaining robustness against appearance variations across multi-view captures. Our approach begins with scene partitioning for parallel training, employing a visibility-based image selection strategy to optimize training efficiency. A controllable level-of-detail (LOD) strategy explicitly regulates Gaussian density under a user-defined budget, enabling efficient training and rendering while maintaining high visual fidelity. The appearance transformation module mitigates the negative effects of appearance inconsistencies across images while enabling flexible adjustments. Additionally, we utilize enhancement modules, such as depth regularization, scale regularization, and antialiasing, to improve reconstruction fidelity. Experimental results demonstrate that our method effectively reconstructs urban-scale scenes and outperforms previous approaches in both efficiency and quality. The source code is available at: https://yzslab.github.io/REUrbanGS.

Figures

Figures reproduced from arXiv: 2507.23006 by the authors.

Figure 1
Figure 1. The process of scene and data division. (a) Obtain the 3D point cloud and its corresponding 2D feature points through estimating camera poses by SfM. (b) Determine training cameras based on their spatial locations after partitioning the scene into smaller regions. (c) Cameras outside the partitions are assigned based on visibility. The Vi and Vij correspond to the green and blue regions in the image, respectively. O… view at source ↗
Figure 2
Figure 2. In-partition prioritized densification. The red rectan￾gle is the partition bounding box, and points represent Gaussians. Point colors indicate gradient thresholds. 1ܦ ܶ1, 1, 2ܦ ܶ2, 2, 3ܦ ܶ3, 3, Start Training Level 1 Level 2 Level 3 (a) Detail level generation. (b) Detail level Selection [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Controllable LOD generation and detail level selec￾tion. (a) During training, detail levels are progressively generated in a bottom-up manner, guided by resource budgets B, densifica￾tion intervals T, and downsampling factors D. (b) During render￾ing, detail levels are dynamically selected based on the partition￾camera distance, assigning higher levels to closer partitions and lower levels to distant ones. Invisible… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Illustration of the appearance transform. For each image and 3D Gaussian, ℓ (G) represents the Gaussian embedding and ℓ (I) represents the image embedding, respectively. By the lightweight MLP, ∆c and ∆o can be predicted to adjust the color c and opacity o of the 3D Ga…
Figure 5
Figure 5. Figure 5: Visualization results. All methods (excluding 3DGS) render in LOD mode. Ours demonstrates better detail preservation and fewer artifacts. ity. However, increasing B to beyond a certain threshold does not necessarily improve quality, because B only im￾poses an upper lim…
Figure 6
Figure 6. Figure 6: Visualization results of ablation study. Our proposed components effectively suppress the artifacts. eras are assigmend to partitions solely based on spatial lo￾cations. We follow the setup of Block-NeRF [41] and ex￾pand the bounding box of each partition by 50% to def…
Figure 7
Figure 7. Figure 7: Our datasets: JNU-ZH and BigCity. D. Appearance Transform Module D.1. Metric Calculation Given that we have the appearance transform model, which optimizes only the embeddings of training set images, we followed a strategy similar to NeRF-W [21] to evaluate the test se…
Figure 8
Figure 8. Figure 8: Synthesis the two corresponding states from a new viewpoint based on the embedding vector provided by the reference image (bottom right). presents the visualization results for both scenes, demon￾strating that our method achieves higher detail preservation and fewer ar…
Figure 9
Figure 9. Figure 9: Visualization results on Building, Residence, Sci-Art and Campus of ours and previous work. All methods, except for 3DGS, render in LOD mode. The LOD mode of CityGaussian encountered a bug in the Campus, resulting in a completely black rendered image. The second row of…
Figure 10
Figure 10. Figure 10: Visualization results of ablation on Anti-Aliasing and AbsGS. Length SSIM PSNR LPIPS 4 0.816 25.58 0.237 8 0.815 25.62 0.240 16 0.822 25.85 0.232 [PITH_FULL_IMAGE:figures/full_fig_p016_10.png]
Figure 11
Figure 11. Figure 11: A visual comparison of results with and without similarity regularization [PITH_FULL_IMAGE:figures/full_fig_p017_11.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

57 extracted references · 32 canonical work pages

  1. [1]

    Mip-nerf 360: Unbounded anti-aliased neural radiance fields

    Jonathan T Barron, Ben Mildenhall, Dor Verbin, Pratul P Srinivasan, and Peter Hedman. Mip-nerf 360: Unbounded anti-aliased neural radiance fields. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5470–5479, 2022. 1, 2

  2. [2]

    Zip-nerf: Anti-aliased grid-based neural radiance fields

    Jonathan T Barron, Ben Mildenhall, Dor Verbin, Pratul P Srinivasan, and Peter Hedman. Zip-nerf: Anti-aliased grid-based neural radiance fields. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 19697–19705, 2023. 2

  3. [3]

    Hallucinated neural radiance fields in the wild

    Xingyu Chen, Qi Zhang, Xiaoyu Li, Yue Chen, Ying Feng, Xuan Wang, and Jue Wang. Hallucinated neural radiance fields in the wild. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 12943–12952, 2022. 1

  4. [4]

    Hac: Hash-grid assisted context for 3d gaussian splatting compression

    Yihang Chen, Qianyi Wu, Weiyao Lin, Mehrtash Harandi, and Jianfei Cai. Hac: Hash-grid assisted context for 3d gaussian splatting compression. In European Conference on Computer Vision, pages 422–438. Springer Nature Switzer- land Cham, 2024. 2

  5. [5]

    Swag: Splatting in the wild images with appearance-conditioned gaussians

    Hiba Dahmani, Moussab Bennehar, Nathan Piasco, Luis Roldao, and Dzmitry Tsishkou. Swag: Splatting in the wild images with appearance-conditioned gaussians. In European Conference on Computer Vision , pages 325–340. Springer,

  6. [6]

    A sys- tematic review of a digital twin city: A new pattern of urban governance toward smart cities

    Tianhu Deng, Keren Zhang, and Zuo-Jun Max Shen. A sys- tematic review of a digital twin city: A new pattern of urban governance toward smart cities. Journal of management sci- ence and engineering, 6(2):125–134, 2021. 1

  7. [7]

    Plenoxels: Radiance fields without neural networks

    Sara Fridovich-Keil, Alex Yu, Matthew Tancik, Qinhong Chen, Benjamin Recht, and Angjoo Kanazawa. Plenoxels: Radiance fields without neural networks. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5501–5510, 2022. 2

  8. [8]

    3d gaussian splatting for real-time radiance field rendering

    Bernhard Kerbl, Georgios Kopanas, Thomas Leimk ¨uhler, and George Drettakis. 3d gaussian splatting for real-time radiance field rendering. ACM Trans. Graph., 42(4):139–1,

Show all 57 references
  1. [9]

    A hierarchical 3d gaussian representation for real-time ren- dering of very large datasets.ACM Transactions on Graphics (TOG), 43(4):1–15, 2024

    Bernhard Kerbl, Andreas Meuleman, Georgios Kopanas, Michael Wimmer, Alexandre Lanvin, and George Drettakis. A hierarchical 3d gaussian representation for real-time ren- dering of very large datasets.ACM Transactions on Graphics (TOG), 43(4):1–15, 2024. 2, 6

  2. [10]

    3d gaussian splat- ting as markov chain monte carlo

    Shakiba Kheradmand, Daniel Rebain, Gopal Sharma, Wei- wei Sun, Yang-Che Tseng, Hossam Isack, Abhishek Kar, Andrea Tagliasacchi, and Kwang Moo Yi. 3d gaussian splat- ting as markov chain monte carlo. Advances in Neural Infor- mation Processing Systems, 37:80965–80986, 2025. 2

  3. [11]

    Light field rendering

    Marc Levoy and Pat Hanrahan. Light field rendering. In Seminal Graphics Papers: Pushing the Boundaries, Volume 2, pages 441–452. 2023. 2

  4. [12]

    Dngaussian: Optimizing sparse-view 3d gaussian radiance fields with global-local depth normaliza- tion

    Jiahe Li, Jiawei Zhang, Xiao Bai, Jin Zheng, Xin Ning, Jun Zhou, and Lin Gu. Dngaussian: Optimizing sparse-view 3d gaussian radiance fields with global-local depth normaliza- tion. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , pages 2...

  5. [13]

    Aads: Aug- mented autonomous driving simulation using data-driven al- gorithms

    Wei Li, CW Pan, Rong Zhang, JP Ren, YX Ma, Jin Fang, FL Yan, QC Geng, XY Huang, HJ Gong, et al. Aads: Aug- mented autonomous driving simulation using data-driven al- gorithms. Science robotics, 4(28):eaaw0863, 2019. 1

  6. [14]

    Neuralangelo: High-fidelity neural surface reconstruction

    Zhaoshuo Li, Thomas M ¨uller, Alex Evans, Russell H Tay- lor, Mathias Unberath, Ming-Yu Liu, and Chen-Hsuan Lin. Neuralangelo: High-fidelity neural surface reconstruction. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 8456–8465, 2023. 2

  7. [15]

    Spacetime gaus- sian feature splatting for real-time dynamic view synthesis

    Zhan Li, Zhang Chen, Zhong Li, and Yi Xu. Spacetime gaus- sian feature splatting for real-time dynamic view synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 8508–8520, 2024. 2

  8. [16]

    Vastgaussian: Vast 3d gaussians for large scene reconstruction

    Jiaqi Lin, Zhihao Li, Xiao Tang, Jianzhuang Liu, Shiyong Liu, Jiayue Liu, Yangdi Lu, Xiaofei Wu, Songcen Xu, You- liang Yan, et al. Vastgaussian: Vast 3d gaussians for large scene reconstruction. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recogn...

  9. [17]

    Capturing, reconstructing, and simulating: the urbanscene3d dataset

    Liqiang Lin, Yilin Liu, Yue Hu, Xingguang Yan, Ke Xie, and Hui Huang. Capturing, reconstructing, and simulating: the urbanscene3d dataset. In European Conference on Computer Vision, pages 93–109. Springer, 2022. 6, 2

  10. [18]

    Citygaussian: Real-time high-quality large-scale scene rendering with gaussians

    Yang Liu, Chuanchen Luo, Lue Fan, Naiyan Wang, Jun- ran Peng, and Zhaoxiang Zhang. Citygaussian: Real-time high-quality large-scale scene rendering with gaussians. In European Conference on Computer Vision, pages 265–282. Springer Nature Switzerland Cham, 2024. 2, 4, 6

  11. [19]

    Dynamic 3d gaussians: Tracking by per- sistent dynamic view synthesis

    Jonathon Luiten, Georgios Kopanas, Bastian Leibe, and Deva Ramanan. Dynamic 3d gaussians: Tracking by per- sistent dynamic view synthesis. In 2024 International Con- ference on 3D Vision (3DV), pages 800–809. IEEE, 2024. 2, 5

  12. [20]

    Taming 3dgs: High-quality radiance fields with limited resources

    Saswat Subhajyoti Mallick, Rahul Goel, Bernhard Kerbl, Markus Steinberger, Francisco Vicente Carrasco, and Fer- nando De La Torre. Taming 3dgs: High-quality radiance fields with limited resources. In SIGGRAPH Asia 2024 Con- ference Papers, pages 1–11, 2024. 2, 3, 4

  13. [21]

    Nerf in the wild: Neural radiance fields for uncon- strained photo collections

    Ricardo Martin-Brualla, Noha Radwan, Mehdi SM Sajjadi, Jonathan T Barron, Alexey Dosovitskiy, and Daniel Duck- worth. Nerf in the wild: Neural radiance fields for uncon- strained photo collections. In Proceedings of the IEEE/CVF conference on computer vision and pattern recogn...

  14. [22]

    Nerf: Representing scenes as neural radiance fields for view syn- thesis

    Ben Mildenhall, Pratul P Srinivasan, Matthew Tancik, Jonathan T Barron, Ravi Ramamoorthi, and Ren Ng. Nerf: Representing scenes as neural radiance fields for view syn- thesis. Communications of the ACM, 65(1):99–106, 2021. 1, 2

  15. [23]

    Compact 3d scene representation via self- organizing gaussian grids

    Wieland Morgenstern, Florian Barthel, Anna Hilsmann, and Peter Eisert. Compact 3d scene representation via self- organizing gaussian grids. In European Conference on Computer Vision, pages 18–34. Springer Nature Switzerland Cham, 2024. 2

  16. [24]

    Instant neural graphics primitives with a mul- tiresolution hash encoding

    Thomas M ¨uller, Alex Evans, Christoph Schied, and Alexan- der Keller. Instant neural graphics primitives with a mul- tiresolution hash encoding. ACM transactions on graphics (TOG), 41(4):1–15, 2022. 2

  17. [25]

    A survey of urban reconstruction

    Przemyslaw Musialski, Peter Wonka, Daniel G Aliaga, Michael Wimmer, Luc Van Gool, and Werner Purgathofer. A survey of urban reconstruction. In Computer graphics fo- rum, pages 146–177. Wiley Online Library, 2013. 1

  18. [26]

    Compressed 3d gaussian splatting for accelerated novel view synthesis

    Simon Niedermayr, Josef Stumpfegger, and R ¨udiger West- ermann. Compressed 3d gaussian splatting for accelerated novel view synthesis. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 10349–10358, 2024. 2

  19. [27]

    Neural scene graphs for dynamic scenes

    Julian Ost, Fahim Mannan, Nils Thuerey, Julian Knodt, and Felix Heide. Neural scene graphs for dynamic scenes. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 2856–2865, 2021. 1

  20. [28]

    Nerfies: Deformable neural radiance fields

    Keunhong Park, Utkarsh Sinha, Jonathan T Barron, Sofien Bouaziz, Dan B Goldman, Steven M Seitz, and Ricardo Martin-Brualla. Nerfies: Deformable neural radiance fields. In Proceedings of the IEEE/CVF international conference on computer vision, pages 5865–5874, 2021. 2

  21. [29]

    Hypernerf: A higher- dimensional representation for topologically varying neural radiance fields

    Keunhong Park, Utkarsh Sinha, Peter Hedman, Jonathan T Barron, Sofien Bouaziz, Dan B Goldman, Ricardo Martin- Brualla, and Steven M Seitz. Hypernerf: A higher- dimensional representation for topologically varying neural radiance fields. arXiv preprint arXiv:2106.13228, 2021

  22. [30]

    D-nerf: Neural radiance fields for dynamic scenes

    Albert Pumarola, Enric Corona, Gerard Pons-Moll, and Francesc Moreno-Noguer. D-nerf: Neural radiance fields for dynamic scenes. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 10318–10327, 2021. 2

  23. [31]

    Stopthepop: Sorted gaussian splatting for view-consistent real-time rendering

    Lukas Radl, Michael Steiner, Mathias Parger, Alexan- der Weinrauch, Bernhard Kerbl, and Markus Steinberger. Stopthepop: Sorted gaussian splatting for view-consistent real-time rendering. ACM Transactions on Graphics (TOG), 43(4):1–17, 2024. 2, 4, 5

  24. [32]

    Sam 2: Segment anything in images and videos

    Nikhila Ravi, Valentin Gabeur, Yuan-Ting Hu, Ronghang Hu, Chaitanya Ryali, Tengyu Ma, Haitham Khedr, Roman R¨adle, Chloe Rolland, Laura Gustafson, et al. Sam 2: Segment anything in images and videos. arXiv preprint arXiv:2408.00714, 2024. 6

  25. [33]

    Kilonerf: Speeding up neural radiance fields with thousands of tiny mlps

    Christian Reiser, Songyou Peng, Yiyi Liao, and Andreas Geiger. Kilonerf: Speeding up neural radiance fields with thousands of tiny mlps. In Proceedings of the IEEE/CVF international conference on computer vision , pages 14335– 14345, 2021. 2

  26. [34]

    Grounding dino 1.5: Advance the” edge” of open-set object detection

    Tianhe Ren, Qing Jiang, Shilong Liu, Zhaoyang Zeng, Wen- long Liu, Han Gao, Hongjie Huang, Zhengyu Ma, Xiaoke Jiang, Yihao Chen, et al. Grounding dino 1.5: Advance the” edge” of open-set object detection. arXiv preprint arXiv:2405.10300, 2024. 6

  27. [35]

    Spotlesssplats: Ignor- ing distractors in 3d gaussian splatting

    Sara Sabour, Lily Goli, George Kopanas, Mark Matthews, Dmitry Lagun, Leonidas Guibas, Alec Jacobson, David J Fleet, and Andrea Tagliasacchi. Spotlesssplats: Ignor- ing distractors in 3d gaussian splatting. arXiv preprint arXiv:2406.20055, 2024. 2

  28. [36]

    Structure- from-motion revisited

    Johannes L Schonberger and Jan-Michael Frahm. Structure- from-motion revisited. In Proceedings of the IEEE con- ference on computer vision and pattern recognition , pages 4104–4113, 2016. 1

  29. [37]

    Pixelwise view selection for unstructured multi-view stereo

    Johannes L Sch ¨onberger, Enliang Zheng, Jan-Michael Frahm, and Marc Pollefeys. Pixelwise view selection for unstructured multi-view stereo. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Nether- lands, October 11-14, 2016, Proceedings, Part III 14, pag...

  30. [38]

    Nerf- player: A streamable dynamic scene representation with de- composed neural radiance fields.IEEE Transactions on Visu- alization and Computer Graphics , 29(5):2732–2742, 2023

    Liangchen Song, Anpei Chen, Zhong Li, Zhang Chen, Lele Chen, Junsong Yuan, Yi Xu, and Andreas Geiger. Nerf- player: A streamable dynamic scene representation with de- composed neural radiance fields.IEEE Transactions on Visu- alization and Computer Graphics , 29(5):2732–2742, 2023. 2

  31. [39]

    Sc-nerf: Self-correcting neural radiance field with sparse views

    Liang Song, Guangming Wang, Jiuming Liu, Zhenyang Fu, Yanzi Miao, et al. Sc-nerf: Self-correcting neural radiance field with sparse views. arXiv preprint arXiv:2309.05028 ,

  32. [40]

    Direct voxel grid optimization: Super-fast convergence for radiance fields reconstruction

    Cheng Sun, Min Sun, and Hwann-Tzong Chen. Direct voxel grid optimization: Super-fast convergence for radiance fields reconstruction. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 5459– 5469, 2022. 2

  33. [41]

    Block-nerf: Scalable large scene neural view synthesis

    Matthew Tancik, Vincent Casser, Xinchen Yan, Sabeek Prad- han, Ben Mildenhall, Pratul P Srinivasan, Jonathan T Barron, and Henrik Kretzschmar. Block-nerf: Scalable large scene neural view synthesis. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern rec...

  34. [42]

    Mega-nerf: Scalable construction of large- scale nerfs for virtual fly-throughs

    Haithem Turki, Deva Ramanan, and Mahadev Satya- narayanan. Mega-nerf: Scalable construction of large- scale nerfs for virtual fly-throughs. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 12922–12931, 2022. 2, 6

  35. [43]

    Neus: Learning neural implicit surfaces by volume rendering for multi-view reconstruction

    Peng Wang, Lingjie Liu, Yuan Liu, Christian Theobalt, Taku Komura, and Wenping Wang. Neus: Learning neural implicit surfaces by volume rendering for multi-view reconstruction. arXiv preprint arXiv:2106.10689, 2021. 2

  36. [44]

    4d gaussian splatting for real-time dynamic scene rendering

    Guanjun Wu, Taoran Yi, Jiemin Fang, Lingxi Xie, Xiaopeng Zhang, Wei Wei, Wenyu Liu, Qi Tian, and Xinggang Wang. 4d gaussian splatting for real-time dynamic scene rendering. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 20310–2032...

  37. [45]

    Bungeenerf: Progressive neural radiance field for extreme multi-scale scene rendering

    Yuanbo Xiangli, Linning Xu, Xingang Pan, Nanxuan Zhao, Anyi Rao, Christian Theobalt, Bo Dai, and Dahua Lin. Bungeenerf: Progressive neural radiance field for extreme multi-scale scene rendering. In European conference on computer vision, pages 106–122. Springer, 2022. 2

  38. [46]

    Grid-guided neural radiance fields for large urban scenes

    Linning Xu, Yuanbo Xiangli, Sida Peng, Xingang Pan, Nanxuan Zhao, Christian Theobalt, Bo Dai, and Dahua Lin. Grid-guided neural radiance fields for large urban scenes. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 8296–8306, 2023. 2

  39. [47]

    Depth any- thing v2

    Lihe Yang, Bingyi Kang, Zilong Huang, Zhen Zhao, Xiao- gang Xu, Jiashi Feng, and Hengshuang Zhao. Depth any- thing v2. Advances in Neural Information Processing Sys- tems, 37:21875–21911, 2025. 5

  40. [48]

    Deformable 3d gaussians for high- fidelity monocular dynamic scene reconstruction

    Ziyi Yang, Xinyu Gao, Wen Zhou, Shaohui Jiao, Yuqing Zhang, and Xiaogang Jin. Deformable 3d gaussians for high- fidelity monocular dynamic scene reconstruction. In Pro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 20331–20341, 2024. 2

  41. [49]

    V ol- ume rendering of neural implicit surfaces

    Lior Yariv, Jiatao Gu, Yoni Kasten, and Yaron Lipman. V ol- ume rendering of neural implicit surfaces. Advances in Neu- ral Information Processing Systems, 34:4805–4815, 2021. 2

  42. [50]

    gsplat: An open-source library for gaussian splatting

    Vickie Ye, Ruilong Li, Justin Kerr, Matias Turkulainen, Brent Yi, Zhuoyang Pan, Otto Seiskari, Jianbo Ye, Jeffrey Hu, Matthew Tancik, et al. gsplat: An open-source library for gaussian splatting. arXiv preprint arXiv:2409.06765, 2024. 1

  43. [51]

    Absgs: Recovering fine details in 3d gaussian splat- ting

    Zongxin Ye, Wenyu Li, Sidun Liu, Peng Qiao, and Yong Dou. Absgs: Recovering fine details in 3d gaussian splat- ting. In Proceedings of the 32nd ACM International Confer- ence on Multimedia, pages 1053–1061, 2024. 6, 1

  44. [52]

    Plenoctrees for real-time rendering of neural radiance fields

    Alex Yu, Ruilong Li, Matthew Tancik, Hao Li, Ren Ng, and Angjoo Kanazawa. Plenoctrees for real-time rendering of neural radiance fields. In Proceedings of the IEEE/CVF international conference on computer vision , pages 5752– 5761, 2021. 2

  45. [53]

    Mip-splatting: Alias-free 3d gaussian splat- ting

    Zehao Yu, Anpei Chen, Binbin Huang, Torsten Sattler, and Andreas Geiger. Mip-splatting: Alias-free 3d gaussian splat- ting. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , pages 19447–19456,

  46. [54]

    Gaussian in the wild: 3d gaussian splatting for unconstrained image collections

    Dongbin Zhang, Chuming Wang, Weitao Wang, Peihao Li, Minghan Qin, and Haoqian Wang. Gaussian in the wild: 3d gaussian splatting for unconstrained image collections. In European Conference on Computer Vision, pages 341–359. Springer, 2024. 2

  47. [55]

    Effi- cient large-scale scene representation with a hybrid of high- resolution grid and plane features

    Yuqi Zhang, Guanying Chen, and Shuguang Cui. Effi- cient large-scale scene representation with a hybrid of high- resolution grid and plane features. Pattern Recognition, 158: 111001, 2025. 2

  48. [56]

    On scaling up 3d gaussian splatting training

    Hexu Zhao, Haoyang Weng, Daohan Lu, Ang Li, Jinyang Li, Aurojit Panda, and Saining Xie. On scaling up 3d gaussian splatting training. arXiv preprint arXiv:2406.18533, 2024. 2

  49. [57]

    Switch-nerf: Learning scene de- composition with mixture of experts for large-scale neural radiance fields

    MI Zhenxing and Dan Xu. Switch-nerf: Learning scene de- composition with mixture of experts for large-scale neural radiance fields. In The Eleventh International Conference on Learning Representations, 2022. 2, 6 Robust and Efficient 3D Gaussian Splatting for Urban Scene Recon...

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.