gitextract_1dub1nd4/ ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── Spline.py ├── configs/ │ ├── cozy2room-cubic.txt │ ├── cozy2room.txt │ ├── factory-cubic.txt │ ├── factory.txt │ ├── pool-cubic.txt │ ├── pool.txt │ ├── roomdark-cubic.txt │ ├── roomdark.txt │ ├── roomhigh-cubic.txt │ ├── roomhigh.txt │ ├── roomlow-cubic.txt │ ├── roomlow.txt │ ├── tanabata-cubic.txt │ ├── tanabata.txt │ ├── wine-cubic.txt │ └── wine.txt ├── load_llff.py ├── lpips/ │ ├── __init__.py │ ├── lpips.py │ └── pretrained_networks.py ├── metrics.py ├── nerf.py ├── novel_view_test.py ├── optimize_pose_cubic.py ├── optimize_pose_linear.py ├── requirements.txt ├── run_nerf.py ├── run_nerf_helpers.py ├── test.py └── train.py