gitextract_oa0m8dnw/ ├── .gitmodules ├── LICENSE.md ├── README.md ├── arguments/ │ └── __init__.py ├── bash_scripts/ │ ├── 0_train.sh │ ├── 1_preprocess_tnt.sh │ ├── 2_extract_normal_dsine.sh │ ├── 3_extract_mask.sh │ ├── 4_extract_normal_geow.sh │ ├── convert.sh │ └── install.sh ├── configs/ │ ├── 360_v2/ │ │ └── base.yaml │ ├── config.py │ ├── config_base.yaml │ ├── dtu/ │ │ ├── base.yaml │ │ └── dtu_scan24.yaml │ ├── reconstruct.yaml │ ├── scannetpp/ │ │ └── base.yaml │ └── tnt/ │ ├── Barn.yaml │ ├── Caterpillar.yaml │ ├── Courthouse.yaml │ ├── Ignatius.yaml │ ├── Meetingroom.yaml │ ├── Truck.yaml │ └── base.yaml ├── environment.yml ├── evaluation/ │ ├── crop_mesh.py │ ├── eval_dtu/ │ │ ├── eval.py │ │ ├── evaluate_single_scene.py │ │ └── render_utils.py │ ├── eval_tnt.py │ ├── full_eval.py │ ├── lpipsPyTorch/ │ │ ├── __init__.py │ │ └── modules/ │ │ ├── lpips.py │ │ ├── networks.py │ │ └── utils.py │ ├── metrics.py │ ├── render.py │ └── tnt_eval/ │ ├── README.md │ ├── config.py │ ├── evaluation.py │ ├── plot.py │ ├── registration.py │ ├── requirements.txt │ ├── run.py │ ├── trajectory_io.py │ └── util.py ├── gaussian_renderer/ │ ├── __init__.py │ └── network_gui.py ├── process_data/ │ ├── convert.py │ ├── convert_360_to_json.py │ ├── convert_data_to_json.py │ ├── convert_dtu_to_json.py │ ├── convert_tnt_to_json.py │ ├── extract_mask.py │ ├── extract_normal.py │ ├── extract_normal_geo.py │ ├── visualize_colmap.ipynb │ └── visualize_transforms.ipynb ├── pyproject.toml ├── python_scripts/ │ ├── run_base.py │ ├── run_dtu.py │ ├── run_mipnerf360.py │ ├── run_tnt.py │ ├── show_360.py │ ├── show_dtu.py │ └── show_tnt.py ├── requirements.txt ├── scene/ │ ├── __init__.py │ ├── appearance_network.py │ ├── cameras.py │ ├── colmap_loader.py │ ├── dataset_readers.py │ └── gaussian_model.py ├── tools/ │ ├── __init__.py │ ├── camera.py │ ├── camera_utils.py │ ├── crop_mesh.py │ ├── denoise_pcd.py │ ├── depth2mesh.py │ ├── distributed.py │ ├── general_utils.py │ ├── graphics_utils.py │ ├── image_utils.py │ ├── loss_utils.py │ ├── math_utils.py │ ├── mcube_utils.py │ ├── mesh_utils.py │ ├── normal_utils.py │ ├── prune.py │ ├── render_utils.py │ ├── semantic_id.py │ ├── sh_utils.py │ ├── system_utils.py │ ├── termcolor.py │ ├── visualization.py │ └── visualize.py ├── train.py └── trainer.py