fatPeter / mini-splatting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mini-Splatting: Representing Scenes with a Constrained Number of Gaussians

This is the official implementation of Mini-Splatting, a point cloud analysis work in the context of Gaussian Splatting. Through reorganizing the spatial distribution of 3D Gaussians, our algorithm improves the model performance without any auxiliary information. For technical details, please refer to:

Mini-Splatting: Representing Scenes with a Constrained Number of Gaussians
Guangchi Fang and Bing Wang.
[Paper]

(1) Setup

This code has been tested with Python 3.7, torch 1.12.1, CUDA 11.6.

  • Clone the repository
git clone git@github.com:fatPeter/mini-splatting.git && cd mini-splatting
  • Setup python environment
conda create -n mini_splatting python=3.7
conda activate mini_splatting
pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 -f https://download.pytorch.org/whl/torch_stable.html
pip install -r requirements.txt

(2) Mini-Splatting (Densification and Simplification)

Training scripts for Mini-Splatting are in ms:

cd ms
  • Train with train/test split:
# mipnerf360 outdoor
python train.py -s <dataset path> -m <model path> -i images_4 --eval --imp_metric outdoor
# mipnerf360 indoor
python train.py -s <dataset path> -m <model path> -i images_2 --eval --imp_metric indoor
# t&t
python train.py -s <dataset path> -m <model path> --eval --imp_metric outdoor
# db
python train.py -s <dataset path> -m <model path> --eval --imp_metric indoor
  • Modified full_eval script:
python full_eval.py -m360 <mipnerf360 folder> -tat <tanks and temples folder> -db <deep blending folder>

(3) Mini-Splatting-D (Densification only)

  • Training scripts for Mini-Splatting-D are in ms_d:
cd ms_d
  • Train with train/test split:
# mipnerf360 outdoor
python train.py -s <dataset path> -m <model path> -i images_4 --eval
# mipnerf360 indoor
python train.py -s <dataset path> -m <model path> -i images_2 --eval
# t&t
python train.py -s <dataset path> -m <model path> --eval
# db
python train.py -s <dataset path> -m <model path> --eval
  • Modified full_eval script:
python full_eval.py -m360 <mipnerf360 folder> -tat <tanks and temples folder> -db <deep blending folder>

(4) Mini-Splatting-C (Mini-Splatting with Compression)

  • Scripts for Mini-Splatting-C are in ms_c:
cd ms_c
  • Compress, decompress and evaluate (use the model path of the pretrained Mini-Splatting):
python run.py -s <dataset path> -m <model path>

Acknowledgement. This project is built upon 3DGS.

About


Languages

Language:Python 55.0%Language:Cuda 35.6%Language:C++ 8.4%Language:CMake 0.5%Language:C 0.3%