joskid / 3DGS.cpp

A cross-platform, high performance renderer for Gaussian Splatting using Vulkan Compute. Supports ✅ Windows, Linux, macOS, iOS, and visionOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3DGS.cpp

3DGS.cpp is an (not-yet-) highly optimized, cross-platform implementation of Gaussian Splatting using the Vulkan API and compute pipelines.

Why Vulkan? We want to democratize the access to high-performance point-based radiance fields. Existing implementations of Gaussian Splatting are often limited to CUDA, which only runs on NVIDIA GPUs, and OpenGL is deprecated on Apple platforms. Additionally, Vulkan's compute capabilities are the closest to CUDA's with support for warp-level primitives (subgroups).

Windows + Linux

3DGS.cpp Demo macOS

Downloads

Command Line Usage

./vulkan_splatting [options] <input_file.ply>

Options

  • --validation: Enable Vulkan validation layers

  • -v, --verbose: Enable verbose logging

  • -d, --device <index>: Select GPU by index

  • -i, --immediate-swapchain: Set swapchain mode to immediate (VK_PRESENT_MODE_IMMEDIATE_KHR)

  • -w, --width <width>: Set window width

  • -h, --height <height>: Set window height

  • --no-gui: Disable GUI

Building

Linux

3DGS.cpp requires the following dependencies:

Vulkan headers, Vulkan validation layers, glslangValidator, glfw, glm

The easiest way to install the first three is through the LunarG Vulkan SDK. Alternatively, you can install the corresponding packages from your distro. For Ubuntu, the packages to install are vulkan-headers, vulkan-validationlayers, glslang-dev, libglfw3-dev, libglm-dev.

Windows

After installing Vulkan SDK, set the VULKAN_SDK environmental variable to the install path. Alternatively, pass -DVULKAN_SDK=\INSTALL\LOCATION\OF\YOUR\SDK to CMake when configuring.

A full CMake configure command is as follows:

mkdir .\VulkanSplatting\build
cmake -DCMAKE_BUILD_TYPE=Release -DVULKAN_SDK=\INSTALL\LOCATION\OF\YOUR\SDK -S .\VulkanSplatting -B .\VulkanSplatting\build

macOS

After installing the Vulkan SDK, please proceed with CMake configuration and build steps as usual.

iOS, iPadOS, visionOS

  1. Make sure that the Vulkan SDK is installed
  2. Run the xcode_setup CMake target
  3. Download the prebuilt MoltenVK libraries or build it yourself. Unzip the downloaded artifact from a MoltenVK workflow. If you're not sure which one you want to use, pick the one from the latest tag.
  4. Place the MoltenVK folder that contains the dynamic, include, and static folders under apps/apple
  5. Set your development team id in project.xcconfig
  6. Profit

TODO

  • Better controls and GUI on GLFW
  • Apps for iOS and visionOS
  • Fully immersive app on visionOS using the Compositor Service framework
  • OpenXR support
  • App for Android and Qualcomm Spaces
  • Implement SOTA parallel radix sort
  • Use Vulkan subgroups to batch Gaussian retrievals at the warp level
  • Training

Please feel free to open an issue if you have any feature suggestions or are interested in contributing.

Contributing

If you are interested in integrating your Gaussian Splatting variant, please open an issue or a pull request. 3DGS.cpp's shaders follow the procedures outlined in the original paper, so it should be relatively easy to port your CUDA code. With cross-platform support, it's a great way to expand the reach and adoption of your research. If there are any questions, feel free to send me an email.

License

The main project is licensed under LGPL.

This project uses several third-party libraries. Here is a list of these libraries along with their respective licenses:

About

A cross-platform, high performance renderer for Gaussian Splatting using Vulkan Compute. Supports ✅ Windows, Linux, macOS, iOS, and visionOS

License:GNU Lesser General Public License v2.1


Languages

Language:C++ 85.4%Language:Swift 8.8%Language:CMake 4.0%Language:GLSL 1.1%Language:C 0.7%