Using the viewer#

The nerfstudio web-based viewer makes it easy to view training in real-time, and to create content videos from your trained models 🌟!

In the tutorial below, we walk you through how you can turn a simple capture into a 3D video 📸 🎬

For specific sections, click the links below to navigate to the associated portion of the video.

Getting started#

Viewer basics#

Creating camera trajectories#

Rendering a video#


See also

For a more in-depth developer overview on how to hack with the viewer, see our developer guide

Local vs. remote compute#

Training on a local machine#

You should be able to click the link obtained while running a script to open the viewer in your browser.

Training on a remote machine#

If you are training on a remote maching, the viewer will still let you view your trainings. You will need to forward the port that the viewer is running on.

For example, if you are running the viewer on port 7007, you will need to forward that port to your local machine. You can (without needing to modify router port settings) simply do this by opening a new terminal window and sshing into the remote machine with the following command:

`bash ssh -L 7007:localhost:7007 <username>@<remote-machine-ip> `

Note

So long as you don’t close this terminal window with this specific active ssh connection, the port will remain open for all your other ssh sessions.

For example, if you do this in a new terminal window, any existing ssh sessions (terminal windows, VSCode remote connection, etc) will still be able to access the port, but if you close this terminal window, the port will be closed.

You can now simply open the link (same ones shown in image above) in your browser on your local machine and it should connect!

Warning

If the port is being used, you will need to switch the port using the –viewer.websocket-port flag tied to the model subcommand.