Jittor / JNeRF

JNeRF is a NeRF benchmark based on Jittor. JNeRF re-implemented instant-ngp and achieved same performance with original paper.
Apache License 2.0
640 stars 74 forks source link

can we use nerf for llff dataset? #38

Open qingxu-thu opened 2 years ago

qingxu-thu commented 2 years ago

How can we use the llff dataset as origin nerf for some results, I wonder if some interfaces for the llff input, since I'm not sure whether there can be a conving transform for llff poses to the transforms_train?

Gword commented 2 years ago

You can modify dataset.py to support llff dataset. For reading llff data, you can refer to: https://github.com/Jittor/jrender/blob/main/nerf_helper/load_llff.py

qingxu-thu commented 2 years ago

Ok, It seems the implementation is corresponding to the original LLFF. It can try to use its c2w matrix. But I see the original instant ngp collmap2nerf.py and for c2w, it seems to conduct a coord transform for the origin. I wonder if it has been done in this implementation.

Gword commented 2 years ago

We support using llff dataset in the latest version. You can pull the latest version and have a try.