9 releases (5 stable)

2.1.0 Feb 22, 2024
2.0.2 Jan 3, 2024
1.0.0 Dec 16, 2023
0.4.0 Nov 7, 2023
0.1.0 Sep 28, 2023

#20 in Data formats

Download history 31/week @ 2023-12-30 1/week @ 2024-01-13 35/week @ 2024-02-03 159/week @ 2024-02-17 33/week @ 2024-02-24 5/week @ 2024-03-02 92/week @ 2024-03-30 18/week @ 2024-04-06

110 downloads per month

MIT license

270KB
7.5K SLoC

Rust 6K SLoC // 0.0% comments WebGPU Shader Language 1.5K SLoC // 0.0% comments

bevy_gaussian_splatting 🌌

test GitHub License GitHub Last Commit GitHub Releases GitHub Issues Average time to resolve an issue crates.io

bevy gaussian splatting render pipeline plugin. view the live demo

Alt text Alt text

capabilities

  • ply to gcloud converter
  • gcloud and ply asset loaders
  • bevy gaussian cloud render pipeline
  • gaussian cloud particle effects
  • wasm support /w live demo
  • depth colorization
  • f16 and f32 gcloud
  • wgl2 and webgpu
  • spherical harmonic coefficients clustering
  • 4D gaussian cloud wavelet compression
  • accelerated spatial queries
  • temporal depth sorting
  • skeletons
  • volume masks
  • level of detail
  • lighting and shadows
  • bevy_openxr support
  • bevy 3D camera to gaussian cloud pipeline

usage

use bevy::prelude::*;
use bevy_gaussian_splatting::GaussianSplattingPlugin;

fn main() {
    App::build()
        .add_plugins(DefaultPlugins)
        .add_plugins(GaussianSplattingPlugin)
        .add_systems(Startup, setup_gaussian_cloud)
        .run();
}

fn setup_gaussian_cloud(
    mut commands: Commands,
    asset_server: Res<AssetServer>,
) {
    commands.spawn(GaussianSplattingBundle {
        cloud: asset_server.load("scenes/icecream.gcloud"),
        ..Default::default()
    });

    commands.spawn(Camera3dBundle::default());
}

tools

compatible bevy versions

bevy_gaussian_splatting bevy
2.1 0.13
0.4 - 2.0 0.12
0.1 - 0.3 0.11

projects using this plugin

credits

Dependencies

~49–93MB
~1.5M SLoC