NVIDIAGameWorks / kaolin-wisp

NVIDIA Kaolin Wisp is a PyTorch library powered by NVIDIA Kaolin Core to work with neural fields (including NeRFs, NGLOD, instant-ngp and VQAD).
Other
1.46k stars 132 forks source link

White fog during the app running #170

Closed barikata1984 closed 1 year ago

barikata1984 commented 1 year ago

Hi everyone, I run the app on the lego dataset on both main and stable branches. I noticed that white fog appears when running the app in the main branch as follows:

Screenshot 2023-07-31 170015

On the other hand, no such fog appears on the app in the stable branch like below:

Screenshot 2023-07-31 163643

The red cubes are the finest lods I activated on the GUI. Do you have any ideas to solve the issue?

Thanks in advance!

orperel commented 1 year ago

Hi @barikata1984 ! Can you try changing this in your config?

tracer:
   bg_color: [ 0.0, 0.0, 0.0 ]

...

dataset:
  bg_color: [ 0.0, 0.0, 0.0 ]
barikata1984 commented 1 year ago

Hi @orperel,

I noticed that I forgot to run setup.py when I switched to main from stable. After I rebuilt it, the fog disappeared

Thanks for your reply :)