nerfstudio-project / nerfacc

A General NeRF Acceleration Toolbox in PyTorch.
https://www.nerfacc.com/
Other
1.37k stars 113 forks source link

mist mesh #214

Closed LHXhh closed 1 year ago

LHXhh commented 1 year ago

Thank you very much for your wonderful work, I have a question for you. When exporting the mesh, I need to give the scene boundary. When the given boundary is too large (-2, 2), the scene I want will be wrapped in a fog. Do you know how these foggy things come from? And a fake scene appears, mirror-symmetric to the real one. Like this 2

liruilong940607 commented 1 year ago

Nerf does not learn things that is not visible in the training cameras. So super large box meaning there are many places not being optimized by NeRF thus can have arbitrary color and density.

That being said a simple way is to just set an as-tight-as-possible box. A more sophisticated way is to identify which regions are not visible to all cameras and set the density there to zero.

LHXhh commented 1 year ago

Thank you for your answer. I need to think about it.