nerf-factory
nerf-factory copied to clipboard
An awesome PyTorch NeRF library
MipNerf360 implementation diverges from the formal implementation and creates two different Prop modules. https://github.com/kakaobrain/nerf-factory/blob/main/src/model/mipnerf360/model.py#L229 In the article and formal implementation, a single Prop module is created and used (twice). https://github.com/google-research/multinerf/blob/main/internal/models.py#L99...
Thank you for your excellent work about the NeRF factory! The code is functioning well, and I have some questions regarding the pose processing in Mip-NeRF 360. I was hoping...
Hi, Thanks a lot for this repo. To the best of my knowledge you never actually visualize the normals, so I added some lines basically saying the normals are the...
I'm trying to launch MipNerf traing but like in https://github.com/kakaobrain/nerf-factory/issues/12 I have huge CPU memory consumption while GPU idles. I guess it's because data loader and sampler working on CPU....
```bash Traceback (most recent call last): File "run.py", line 230, in ... ... /miniconda3/envs/nerf_factory/lib/python3.8/posixpath.py", line 152, in dirname p = os.fspath(p) TypeError: expected str, bytes or os.PathLike object, not NoneType...
Hi, Thanks for your awesome framework. But I found the "generate_ellipse_path" function borrowed from the https://github.com/google-research/multinerf is not compatiable with the coordinate defined in "nerf_360_v2.py". Thus, with this function we...