google-research / multinerf

A Code Release for Mip-NeRF 360, Ref-NeRF, and RawNeRF
Apache License 2.0
3.56k stars 338 forks source link

Nerfstudio Model Implementations #119

Open neekolas opened 1 year ago

neekolas commented 1 year ago

Nerfstudio allows for external implementations of models. It would be great if there was a version of these models compatible with nerf-studio, similar to what Tetra-Nerf has done.

YOUSIKI commented 1 year ago

Note that nerfstudio is implemented in PyTorch rather than JAX, and it can be a lot of work to migrate.

neekolas commented 1 year ago

NerfStudio looks pretty modular to me. You can have a model that gets trained in a totally separate process, and as long as you can render the outputs of that model from Nerfstudio you can take advantage of the renderer and viewer (which is probably what 90% of people care about). Not saying that makes it trivial, but it does lower the scope of work quite a bit.