CVJun 24, 2024

Reducing the Memory Footprint of 3D Gaussian Splatting

arXiv:2406.17074v1179 citations
Originality Incremental advance
AI Analysis

This work addresses memory and transmission issues for 3D Gaussian splatting, particularly benefiting mobile device users, but it is incremental as it optimizes an existing method.

The paper tackled the high memory requirements of 3D Gaussian splatting for novel view synthesis by reducing storage through primitive pruning, adaptive spherical harmonics, and quantization, achieving a 27x reduction in disk size and a 1.7x speedup in rendering.

3D Gaussian splatting provides excellent visual quality for novel view synthesis, with fast training and real-time rendering; unfortunately, the memory requirements of this method for storing and transmission are unreasonably high. We first analyze the reasons for this, identifying three main areas where storage can be reduced: the number of 3D Gaussian primitives used to represent a scene, the number of coefficients for the spherical harmonics used to represent directional radiance, and the precision required to store Gaussian primitive attributes. We present a solution to each of these issues. First, we propose an efficient, resolution-aware primitive pruning approach, reducing the primitive count by half. Second, we introduce an adaptive adjustment method to choose the number of coefficients used to represent directional radiance for each Gaussian primitive, and finally a codebook-based quantization method, together with a half-float representation for further memory reduction. Taken together, these three components result in a 27 reduction in overall size on disk on the standard datasets we tested, along with a 1.7 speedup in rendering speed. We demonstrate our method on standard datasets and show how our solution results in significantly reduced download times when using the method on a mobile device.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes