Search papers, labs, and topics across Lattice.
This paper introduces RAP, a rendering-free method for predicting the importance scores of 3D Gaussian Splatting primitives based on their intrinsic attributes and local neighborhood statistics. By avoiding rendering-based computations, RAP achieves significantly faster importance estimation compared to existing view-dependent methods. The method trains a compact MLP with rendering loss, pruning-aware loss, and significance distribution regularization, demonstrating strong generalization to unseen scenes and enabling efficient integration into 3DGS pipelines.
Ditch the slow renders: RAP predicts 3D Gaussian primitive importance directly from attributes, slashing computation time and boosting generalization.
3D Gaussian Splatting (3DGS) has emerged as a leading technology for high-quality 3D scene reconstruction. However, the iterative refinement and densification process leads to the generation of a large number of primitives, each contributing to the reconstruction to a substantially different extent. Estimating primitive importance is thus crucial, both for removing redundancy during reconstruction and for enabling efficient compression and transmission. Existing methods typically rely on rendering-based analyses, where each primitive is evaluated through its contribution across multiple camera viewpoints. However, such methods are sensitive to the number and selection of views, rely on specialized differentiable rasterizers, and have long calculation times that grow linearly with view count, making them difficult to integrate as plug-and-play modules and limiting scalability and generalization. To address these issues, we propose RAP, a fast feedforward rendering-free attribute-guided method for efficient importance score prediction in 3DGS. RAP infers primitive significance directly from intrinsic Gaussian attributes and local neighborhood statistics, avoiding rendering-based or visibility-dependent computations. A compact MLP predicts per-primitive importance scores using rendering loss, pruning-aware loss, and significance distribution regularization. After training on a small set of scenes, RAP generalizes effectively to unseen data and can be seamlessly integrated into reconstruction, compression, and transmission pipelines. Our code is publicly available at https://github.com/yyyykf/RAP.