├── Praktikum_Report.pdf ├── README.md ├── cinn_train.ipynb ├── data ├── data.py └── make_dataset.py ├── images └── samples.png ├── models ├── blocks.py ├── cinn.py ├── loss.py ├── nerf.py ├── util.py └── vae.py ├── nerf_train.ipynb ├── pose_estimation.ipynb └── util ├── transforms.py └── utils.py /Praktikum_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/Praktikum_Report.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/README.md -------------------------------------------------------------------------------- /cinn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/cinn_train.ipynb -------------------------------------------------------------------------------- /data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/data/data.py -------------------------------------------------------------------------------- /data/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/data/make_dataset.py -------------------------------------------------------------------------------- /images/samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/images/samples.png -------------------------------------------------------------------------------- /models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/blocks.py -------------------------------------------------------------------------------- /models/cinn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/cinn.py -------------------------------------------------------------------------------- /models/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/loss.py -------------------------------------------------------------------------------- /models/nerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/nerf.py -------------------------------------------------------------------------------- /models/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/util.py -------------------------------------------------------------------------------- /models/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/models/vae.py -------------------------------------------------------------------------------- /nerf_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/nerf_train.ipynb -------------------------------------------------------------------------------- /pose_estimation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/pose_estimation.ipynb -------------------------------------------------------------------------------- /util/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/util/transforms.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uprestel/AutoNeRF/HEAD/util/utils.py --------------------------------------------------------------------------------