Welcome to nerfvis’s documentation!
This is a PyTorch NeRF visualization utility based on PlenOctrees, as well as a general web-based 3D visualization library.
Install with pip install nerfvis. This is a pure-Python library. The base library has no dependencies except for numpy.
Adding meshes from a file requires trimesh.
Adding NeRF requires torch, svox, tqdm, scipy.
Basic usage example:
import nerfvis
scene = nerfvis.Scene("My title")
scene.add_cube("Cube/1", color=[1.0, 0.0, 0.0], translation=[-1.0, -1.0, 0.0])
scene.add_wireframe_cube("Cube/2", color=[1.0, 0.0, 0.0],
translation=[-1.0, -1.0, 0.0], scale=2.0)
scene.add_axes()
scene.set_nerf(nerf_func, center=[0.0, 0.0, 0.0], radius=1.5, use_dirs=True) # Optional
scene.display() # Serves at localhost:8888 or first port available after that
scene.export("folder") # Exports sources to location
scene.embed() # Embed in IPython notebook
Scene: holds objects. If you only use one scene, feel free to use from nerfvis import scene instead.
Names separated by / will be collapsed into a tree in the layers panel in the output.
Other common functions include add_camera_frustum, add_mesh, add_line, add_lines, add_image
Please see Reference for details.
Contents:
Viewer controls
Left click and drag to orbit
Right click and drag, or
CTRL+leftclick and drag to panMouse wheel, middle click and drag, or
ALT+leftclick and drag to zoom; alternatively use=/SHIFT+=Number keys 1-6 to change coordinate systems: Z up/down Y up/down X up/down resp.