Skip to content

humansensinglab/taming-3dgs

Repository files navigation

Taming 3DGS

High-Quality Radiance Fields with Limited Resources

Saswat Subhajyoti Mallick*, Rahul Goel*, Bernhard Kerbl, Francisco Vicente Carrasco, Markus Steinberger, Fernando De La Torre (* indicates equal contribution)

Webpage | Arxiv

Abstract: 3D Gaussian Splatting (3DGS) has transformed novel-view synthesis with its fast, interpretable, and high-fidelity rendering. However, its resource requirements limit its usability. Especially on constrained devices, training performance degrades quickly and often cannot complete due to excessive memory consumption of the model. The method converges with an indefinite number of Gaussians—many of them redundant—making rendering unnecessarily slow and preventing its usage in downstream tasks that expect fixed-size inputs. To address these issues, we tackle the challenges of training and rendering 3DGS models on a budget. We use a guided, purely constructive densification process that steers densification toward Gaussians that raise the reconstruction quality. Model size continuously increases in a controlled manner towards an exact budget, using score-based densification of Gaussians with training-time priors that measure their contribution. We further address training speed obstacles: following a careful analysis of 3DGS’ original pipeline, we derive faster, numerically equivalent solutions for gradient computation and attribute updates, including an alternative parallelization for efficient backpropagation. We also propose quality-preserving approximations where suitable to reduce training time even further. Taken together, these enhancements yield a robust, scalable solution with reduced training times, lower compute and memory requirements, and high quality. Our evaluation shows that in a budgeted setting, we obtain competitive quality metrics with 3DGS while achieving a 4–5× reduction in both model size and training time. With more generous budgets, our measured quality surpasses theirs. These advances open the door for novelview synthesis in constrained environments, e.g., mobile devices.

BibTeX

@inproceedings{taming3dgs,
    author={{Mallick and Goel} and Kerbl, Bernhard and
              Vicente Carrasco, Francisco and Steinberger, Markus and De La
              Torre, Fernando},
    title={Taming 3DGS: High-Quality Radiance Fields with Limited Resources},
    booktitle = {SIGGRAPH Asia 2024 Conference Papers},
    year={2024},
    doi = {10.1145/3680528.3687694},
    url = {https://humansensinglab.github.io/taming-3dgs/}
}

Currently, this repository only contains the performance optimizations as drop-in replacements for the original implementation. It does not provide the changes to the densification scheme. The completely code will be released in late November 2024 prior to SIGGRAPH Asia 2024 conference dates.

All the performance optimizations are released under the MIT License.

Please refer to the Inria repository for complete instructions.

Training time comparison

Sparse Adam Optimizer

Sparse adam is an alternate implementation for the Adam optimizer that applies gradients only to the gaussians that are visible. Note that this can change the training behaviour, whereas all other changes don't affect the numerical results.

Using the sparse adam optimizer

To use the sparse adam optimizer, the following argument can be appended to the training script

--optimizer_type sparse_adam

Quality comparison

Following is the difference in quality between the original 3DGS algorithm and our sparse adam implementation.

SSIM PSNR LPIPS
3DGS Ours
(sparse adam)
3DGS Ours
(sparse adam)
3DGS Ours
(sparse adam)
Mip-NeRF360 0.815 0.807 27.46 27.33 0.215 0.229
Tanks&Temples 0.847 0.846 23.64 23.56 0.176 0.180
Deep Blending 0.904 0.907 29.64 29.69 0.243 0.247

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published