Go to file
2024-06-17 12:14:33 -07:00
arguments Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
assets Added LR example 2023-07-16 15:49:06 +02:00
docs Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
gaussian_renderer Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
lpipsPyTorch Initial commit 2023-07-04 10:00:48 +02:00
scene Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
SIBR_viewers@4ae964a267 Bumped sibr viewers 2023-11-01 13:10:29 +01:00
submodules Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
utils Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
.gitignore Initial commit 2023-07-04 10:00:48 +02:00
.gitmodules Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
convert.py Improved error handling at convert.py (#32) 2023-07-13 18:44:58 +02:00
environment.yml Update environment.yml 2024-03-17 11:41:52 +01:00
full_eval.py Better linux build 2023-07-13 14:21:52 +02:00
LICENSE.md License correction 2024-02-12 20:41:20 +01:00
metrics.py Update readme, eval 2023-07-06 01:49:18 +02:00
README.md Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00
render.py Added licenses, bumped submodule versions 2023-07-05 12:22:16 +02:00
train.py Implementation of 3dgs-mcmc 2024-06-17 12:14:33 -07:00

3D Gaussian Splatting as Markov Chain Monte Carlo

BibTeX

@article{kheradmand20243d,
  title={3D Gaussian Splatting as Markov Chain Monte Carlo},
  author={Kheradmand, Shakiba and Rebain, Daniel and Sharma, Gopal and Sun, Weiwei and Tseng, Jeff and Isack, Hossam and Kar, Abhishek and Tagliasacchi, Andrea and Yi, Kwang Moo},
  journal={arXiv preprint arXiv:2404.09591},
  year={2024}
}

How to install

Please refer to Original 3DGS code base for installation instructions. Make sure to reinstall diff-gaussian-rasterization with the following command on an available 3DGS environment as this library has been modified:

pip install submodules/diff-gaussian-rasterization

How to run

Running code is similar to the Original 3DGS code base with the following differences:

  • You need to specify the maximum number of Gaussians that will be used. This is performed using --cap_max argument. The results in the paper uses the final number of Gaussians reached by the original 3DGS run for each shape.
  • You need to specify the scale regularizer coefficient. This is performed using --scale_reg argument. For all the experiments in the paper, we use 0.01.
  • You need to specify the opacity regularizer coefficient. This is performed using --opacity_reg argument. For Deep Blending dataset, we use 0.001. For all other experiments in the paper, we use 0.01.
  • You need to specify the noise learning rate. This is performed using --noise_lr argument. For all the experiments in the paper, we use 5e5.
  • You need to specify the initialization type. This is performed using --init_type argument. Options are random (to initialize randomly) or sfm (to initialize using a pointcloud).