gitextract_j4zdg8al/ ├── .gitignore ├── LICENSE ├── README.md ├── datasets/ │ ├── __init__.py │ ├── blendedmvs.py │ ├── data_io.py │ ├── dtu_yao4.py │ ├── eth3d.py │ ├── general_eval4.py │ └── tanks.py ├── evaluations/ │ └── dtu/ │ ├── BaseEval2Obj_web.m │ ├── BaseEvalMain_func.m │ ├── BaseEvalMain_web.m │ ├── ComputeStat_func.m │ ├── ComputeStat_web.m │ ├── MaxDistCP.m │ ├── PointCompareMain.m │ ├── plyread.m │ └── reducePts_haa.m ├── lists/ │ ├── blendedmvs/ │ │ ├── train.txt │ │ └── val.txt │ └── dtu/ │ ├── test.txt │ ├── train.txt │ ├── trainval.txt │ └── val.txt ├── models/ │ ├── MVS4Net.py │ ├── __init__.py │ ├── module.py │ └── mvs4net_utils.py ├── requirements.txt ├── scripts/ │ ├── test_dtu.sh │ └── train_dtu.sh ├── test_mvs4.py ├── train_mvs4.py └── utils.py