.github apps cmake include src shaders third_party vulkan 3dgs.cpp CMakeLists.txt DummyGUIManager.cpp GSScene.cpp GSScene.h GUIManager.cpp GUIManager.h Renderer.cpp Renderer.h .clang-tidy .gitignore CMakeLists.txt LICENSE README.md Breadcrumbs 3DGS.cpp /src / CMakeLists.txt Latest com...
cmake_minimum_required(VERSION 3.26) project(3dgs_cpp_root) include(FetchContent) set(CMAKE_CXX_STANDARD 20) find_package(Vulkan COMPONENTS glslangValidator) if (WIN32 OR APPLE) FetchContent_Declare( glfw GIT_REPOSITORY https://github.com/glfw/glfw GIT_TAG 3.3.9 ) FetchContent_GetProperties(glfw...
A cross-platform, high performance renderer for Gaussian Splatting using Vulkan Compute. Supports ✅ Windows, Linux, macOS, iOS, and visionOS - Windows, Linux, macOS · Workflow runs · shg8/3DGS.cpp
git clone https://github.com/shg8/3DGS.cpp/ cd 3DGS.cpp mkdir build cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build cmake --build ./build -j4 The command line viewer will be underbuild/apps/viewer/. Windows After installing Vulkan SDK, set theVULKAN_SDKenvironmental variable to...
OpenXRStereo.cpp OpenXRStereo.h 4 changes: 1 addition & 3 deletions 4 apps/viewer/src/main.cpp Original file line numberDiff line numberDiff line change @@ -103,12 +103,10 @@ int main(int argc, char** argv) auto width = widthFlag ? args::get(widthFlag) : 1280; auto height =...
A cross-platform, high performance renderer for Gaussian Splatting using Vulkan Compute. Supports ✅ Windows, Linux, macOS, iOS, and visionOS - Drop ranges library · shg8/3DGS.cpp@3dfa8f7
A cross-platform, high performance renderer for Gaussian Splatting using Vulkan Compute. Supports ✅ Windows, Linux, macOS, iOS, and visionOS - 3DGS.cpp/.clang-tidy at main · joskid/3DGS.cpp
- Update repo name and link for 3DGS.cpp (originally VulkanSplatting) @@ -1112,6 +1112,15 @@ Creating 4D fields of Gaussian Splatting from images or videos is a challenging [📄 Paper](https://drive.google.com/file/d/1_g4OBn5_ZBaLjXLUMQyN_wflhfYhpVwB/view) | [🌐 Project Pa...
cmake_minimum_required(VERSION 3.26) project(3dgs_cpp) # Dependencies find_package(Vulkan COMPONENTS glslangValidator) if (WIN32 OR APPLE) FetchContent_Declare( glfw GIT_REPOSITORY https://github.com/glfw/glfw GIT_TAG 3.3.9 ) FetchContent_GetProperties(glfw) if (NOT glfw_POPULATED) FetchC...
Update repo name and link for 3DGS.cpp (originally VulkanSplatting) March 16, 2024: SplatTV Added 6 papers: GaussianGrasper, new splitting algorithm, Controllable Text-to-3D Generation, Spring-Mass 3DGS, Hyper-3DGS, and DreamScene March 14, 2024: Added 6 papers: SemGauss, StyleGaussian,...