Abdullah Hamdi 1, Luke Melas-Kyriazi 1, Guocheng Qian 2,4, Jinjie Mai 2, Ruoshi Liu 3, Carl Vondrick 3, Bernard Ghanem 2, Andrea Vedaldi 1
1 Visual Geometry Group, University of Oxford 2 KAUST, 3 Columbia University, 4 Snap Inc.,
We provide a PyTorch implementation of our Generalized Exponential Splatting (GES) method, as well as the Gaussian Splatting method for comparison. We also provide the code to reproduce the results in our paper. The code is heavily based on 3D Gaussian Splatting for Real-Time Radiance Field Rendering. The .ply
files output of the GES are exactly the same type as the Gaussian Splatting .ply
files. You can use the same rendering code and utilities to visualize the results or edit them. The extra parameter shape
is fused with the other gaussian parameters before saving the .ply
file.
A great way to get started with GES is to use the online notebook produced by camenduru with no requirments.
- CUDA-ready GPU with Compute Capability 7.0+
- 24 GB VRAM (to train to paper evaluation quality)
- Conda (recommended for easy setup)
- C++ Compiler for PyTorch extensions (we used Visual Studio 2019 for Windows)
- CUDA SDK 11 for PyTorch extensions, install after Visual Studio (we used 11.8, known issues with 11.6)
- C++ Compiler and CUDA SDK must be compatible
Our default, provided install method is based on Conda package and environment management:
SET DISTUTILS_USE_SDK=1 # Windows only
conda env create --file environment.yml
conda activate ges
Please note that this process assumes that you have CUDA SDK 11 installed, not 12. For modifications, see below. You can also use the same conda environment of the Gaussian Splatting repo.
Download the datasets from the original repository, and place them in the tandt_db
and nerf_360
directories.
For example, let's assume you download tandt_db
dataset, please run following to reproduce Gaussian splatting results, but under the setup of GES.
python train_gaussian.py -s ./tandt_db/tandt/train -m ./outputs/train --eval
And run following to reproduce our main GES results with default settings.
python train_ges.py -s ./tandt_db/tandt/train -m ./outputs/train --eval
To reproduce all the results in our paper, prepare your datasets according to the script, and then run it:
bash ges_full_eval.sh # for our GES implementation
The detailed numerical results of GES (per scene) can be found in here
Check the notebook simulation.ipynb
here for the numerical simulation of the Generalized Exponential Function (GEF), that GES is based on, as well as additional visualizations from the paper.
If you find our work useful in your research, please consider citing:
@InProceedings{Hamdi_2024_CVPR,
author = {Hamdi, Abdullah and Melas-Kyriazi, Luke and Mai, Jinjie and Qian, Guocheng and Liu, Ruoshi and Vondrick, Carl and Ghanem, Bernard and Vedaldi, Andrea},
title = {GES : Generalized Exponential Splatting for Efficient Radiance Field Rendering},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2024},
pages = {19812-19822}
}
}