├── .gitignore ├── LICENSE ├── README.md ├── create_satellite_dataset.py ├── create_satnerf_dsm.py ├── datasets ├── __init__.py ├── blender.py ├── satellite.py └── satellite_depth.py ├── docs ├── bibtex.txt ├── index.html ├── method_diagram.png ├── method_diagram_.png ├── paper.pdf ├── paper.png ├── teaser.png └── teaser_.png ├── dsmr.py ├── eval_s2p.py ├── eval_satnerf.py ├── main.py ├── metrics.py ├── models ├── __init__.py ├── nerf.py ├── satnerf.py └── snerf.py ├── opt.py ├── rendering.py ├── requirements.txt ├── run_all.sh ├── sat_utils.py ├── setup_ba_env.sh ├── setup_s2p_env.sh ├── setup_satnerf_env.sh ├── study_depth_supervision.py ├── study_solar_interpolation.py └── train_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/README.md -------------------------------------------------------------------------------- /create_satellite_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/create_satellite_dataset.py -------------------------------------------------------------------------------- /create_satnerf_dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/create_satnerf_dsm.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/datasets/blender.py -------------------------------------------------------------------------------- /datasets/satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/datasets/satellite.py -------------------------------------------------------------------------------- /datasets/satellite_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/datasets/satellite_depth.py -------------------------------------------------------------------------------- /docs/bibtex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/bibtex.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/method_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/method_diagram.png -------------------------------------------------------------------------------- /docs/method_diagram_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/method_diagram_.png -------------------------------------------------------------------------------- /docs/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/paper.pdf -------------------------------------------------------------------------------- /docs/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/paper.png -------------------------------------------------------------------------------- /docs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/teaser.png -------------------------------------------------------------------------------- /docs/teaser_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/docs/teaser_.png -------------------------------------------------------------------------------- /dsmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/dsmr.py -------------------------------------------------------------------------------- /eval_s2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/eval_s2p.py -------------------------------------------------------------------------------- /eval_satnerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/eval_satnerf.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/main.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/metrics.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/nerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/models/nerf.py -------------------------------------------------------------------------------- /models/satnerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/models/satnerf.py -------------------------------------------------------------------------------- /models/snerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/models/snerf.py -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/opt.py -------------------------------------------------------------------------------- /rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/rendering.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/run_all.sh -------------------------------------------------------------------------------- /sat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/sat_utils.py -------------------------------------------------------------------------------- /setup_ba_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/setup_ba_env.sh -------------------------------------------------------------------------------- /setup_s2p_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/setup_s2p_env.sh -------------------------------------------------------------------------------- /setup_satnerf_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/setup_satnerf_env.sh -------------------------------------------------------------------------------- /study_depth_supervision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/study_depth_supervision.py -------------------------------------------------------------------------------- /study_solar_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/study_solar_interpolation.py -------------------------------------------------------------------------------- /train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/satnerf/HEAD/train_utils.py --------------------------------------------------------------------------------