gitextract_c1590sn0/ ├── .gitignore ├── LICENSE ├── README.md ├── datasets/ │ ├── __init__.py │ ├── blendedmvs.py │ ├── data_io.py │ ├── dtu.py │ ├── evaluations/ │ │ └── dtu_parallel/ │ │ ├── BaseEval2Obj_web.m │ │ ├── BaseEvalMain_web.m │ │ ├── ComputeStat_web.m │ │ ├── MaxDistCP.m │ │ ├── PointCompareMain.m │ │ ├── plyread.m │ │ └── reducePts_haa.m │ ├── lists/ │ │ ├── blendedmvs/ │ │ │ ├── low_res_all.txt │ │ │ └── val.txt │ │ ├── dtu/ │ │ │ ├── test.txt │ │ │ ├── train.txt │ │ │ └── val.txt │ │ └── tnt/ │ │ ├── advanced.txt │ │ └── intermediate.txt │ └── tnt.py ├── fusions/ │ ├── dtu/ │ │ ├── _open3d.py │ │ ├── gipuma.py │ │ └── pcd.py │ └── tnt/ │ └── dypcd.py ├── models/ │ ├── __init__.py │ ├── filter.py │ ├── geometry.py │ ├── geomvsnet.py │ ├── loss.py │ ├── submodules.py │ └── utils/ │ ├── __init__.py │ ├── opts.py │ └── utils.py ├── outputs/ │ └── visual.ipynb ├── requirements.txt ├── scripts/ │ ├── blend/ │ │ └── train_blend.sh │ ├── data_path.sh │ ├── dtu/ │ │ ├── fusion_dtu.sh │ │ ├── matlab_quan_dtu.sh │ │ ├── test_dtu.sh │ │ ├── train_dtu.sh │ │ └── train_dtu_raw.sh │ └── tnt/ │ ├── fusion_tnt.sh │ └── test_tnt.sh ├── test.py └── train.py