Skip to content

Florian-Barthel/splatviz_network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

splatviz network

GitHub top language GitHub Release GitHub last commit Static Badge Static Badge

In order to edit the scene while it is still training, you will have to use the custom splatviz network connector. To do so, follow the four simple steps:

Step 1

Install the network connector to your training project environment.

pip install splatviz-network

Step 2

At the beginning of the train script, create the network connector:

from splatviz_network import SplatvizNetwork
network = SplatvizNetwork()

Step 3

Call the render function inside the training loop:

network.render(pipe, gaussians, ema_loss_for_log, render, background, iteration, opt)

Step 4

Remove all previously defined network_gui calls in the train script.

Example Diff

For the vanilla 3DGS train.py the diff should look as follows:

img.png ...

remove_init.png