As generative models become increasingly capable of producing high-fidelity visual content, the demand for efficient, interpretable, and editable image representations has grown substantially.
Recent advances in 2D Gaussian Splatting (2DGS) have emerged as a promising solution, offering explicit control, high interpretability, and real-time rendering capabilities (
(will update more)
- Navigate to projekt folder, Create a new Python environment and install the dependencies (double check CUDA path). We use
torch==2.7.1+cu126for this study, since torch==2.9 found very slow on gsplat.conda create -n 2dgs python=3.12 conda activate 2dgs pip install -r requirements.txt git clone https://github.com/Aztech-Lab/gmod.git cd gmod pip install -e . --no-build-isolation cd ..
*Note: You might encounter CUDA path issue when install gmod, set CUDA path to match your torch version, then install gmod again.
*The gmod package is build by Image-GS team. We rename it to gmod to aviod conflict with other gsplat library.
Now you can run python test_2dgs.py for a simple demo of 2DGS on Bulbasaur, results are saved in ./test/fit_outputs.
-
Clone the datasets from 2DGS_dataset, download DIV2K_train_HR and organize the folder structure as follows:
git clone https://github.com/Aztech-Lab/2DGS_dataset.git
2DGS_dataset └── dataset ├── Kodak └── DIV2K └── DIV2K_train_HR (need to download) └── DIV2K_valid_HR └── ImageGS_anime └── ImageGS_textures
(will update soon)
(will update soon)
We sincerely appreciate the Image-GS team for providing the 2DGS rendering core and for sharing their high-quality datasets, and we thank Instant-GI team for their great work and deep inspiration. Moreover, we thank the GaussianImage team for their foundation work at this domain.
If you find this project helpful to your research, please consider citing BibTeX:
@article{wang2025fast,
title={Fast 2DGS: Efficient Image Representation with Deep Gaussian Prior},
author={Wang, Hao and Bastola, Ashish and Zhou, Chaoyi and Zhu, Wenhui and Chen, Xiwen and Dong, Xuanzhao and Huang, Siyu and Razi, Abolfazl},
journal={arXiv preprint arXiv:2512.12774},
year={2025}
}





