https://github.com/panxkun/liteviz-gs
LiteViz-GS: C++ based Lightweight Viewer for Gaussian Splatting
https://github.com/panxkun/liteviz-gs
Last synced: 5 days ago
JSON representation
LiteViz-GS: C++ based Lightweight Viewer for Gaussian Splatting
- Host: GitHub
- URL: https://github.com/panxkun/liteviz-gs
- Owner: panxkun
- License: mit
- Created: 2025-05-31T04:17:02.000Z (19 days ago)
- Default Branch: master
- Last Pushed: 2025-06-13T10:19:53.000Z (6 days ago)
- Last Synced: 2025-06-13T11:27:54.228Z (6 days ago)
- Language: C++
- Size: 4.31 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-3D-gaussian-splatting - LiteViz-GS
README
# LiteViz-GS: C++ based Lightweight Viewer for Gaussian Splatting
**LiteViz-GS** is a lightweight GUI-based visualizer for exploring 3D scenes represented using [Gaussian Splatting](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/). This project is built using C++ and OpenGL, providing a simple interface to visualize Gaussian splats stored in PLY files. This project references or adapts ideas from the following open-source projects:
- [splatview](https://github.com/lukaslaobeyer/splatview.git)
- [GaussianSplattingViewer](https://github.com/limacv/GaussianSplattingViewer.git)
![]()
![]()
![]()
![]()
![]()
![]()
## Build Instructions
### Prerequisites
- C++17 or later
- CMake 3.10+### Build && Running
```bash
git clone https://github.com/panxkun/liteviz-gs.git
cd liteviz-gs
mkdir build && cd build
cmake ..
make -j8./build/viewer /path/to/.ply/file
```