autonomousvision / monosdf

[NeurIPS'22] MonoSDF: Exploring Monocular Geometric Cues for Neural Implicit Surface Reconstruction
MIT License
573 stars 53 forks source link

Missing data and config files for DTU #26

Closed woominsong closed 2 years ago

woominsong commented 2 years ago

Hi, thanks for sharing such wonderful work!

It seems that some data and config files for DTU are missing, including:

Could you share those files, too? Thanks in advance!

niujinshuchong commented 2 years ago

Hi,

  1. here are the config files for MLP experiments in the DTU dataset: https://github.com/autonomousvision/monosdf/blob/main/code/confs/dtu_mlp_3views.conf and https://github.com/autonomousvision/monosdf/blob/main/code/confs/dtu_mlp_fullres_allviews.conf
  2. you can run this script to generate DTU_padded_highres: https://github.com/autonomousvision/monosdf/blob/main/preprocess/paded_dtu.py
woominsong commented 2 years ago

Thanks for the quick reply!

I'm a little confused about the config files, because Grid_MLP was set to True. Are those config files for single-res feature grid experiments, or are they for MLP? (I thought MLP did not use any feature grid)

Thanks!

niujinshuchong commented 2 years ago

Hi, the difference is here: https://github.com/autonomousvision/monosdf/blob/main/code/confs/dtu_mlp_3views.conf#L50

We concat an all zeros feature when use MLP only.

woominsong commented 2 years ago

Thanks a lot for your kind reply!