这是indexloc提供的服务,不要输入任何密码
Skip to content

mosure/bevy_gaussian_splatting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bevy_gaussian_splatting

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

Alt text

bevy gaussian splatting render pipeline plugin

capabilities

  • bevy gaussian cloud render pipeline
  • 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 {
        verticies: asset_server.load("scenes/test.ply"),
        ..Default::default()
    });

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

credits

About

bevy gaussian splatting render pipeline plugin

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Contributing

Stars

Watchers

Forks

Contributors 7

Languages