├── .gitignore ├── LICENSE ├── NeRF - 源码.pptx ├── README.md ├── README_origin.md ├── configs ├── chair.txt ├── drums.txt ├── fern.txt ├── ficus.txt ├── flower.txt ├── fortress.txt ├── horns.txt ├── hotdog.txt ├── leaves.txt ├── lego-use_batching.txt ├── lego.txt ├── materials.txt ├── mic.txt ├── orchids.txt ├── room.txt ├── ship.txt └── trex.txt ├── inference.py ├── load_LINEMOD.py ├── load_blender.py ├── load_deepvoxels.py ├── load_llff.py ├── nerf_helpers.py ├── nerf_model.py ├── opts.py ├── render.py ├── requirements.txt ├── run_nerf.py ├── test └── frame.py ├── 模型.txt ├── 源码结构.md └── 说明.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /NeRF - 源码.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/NeRF - 源码.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /README_origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/README_origin.md -------------------------------------------------------------------------------- /configs/chair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/chair.txt -------------------------------------------------------------------------------- /configs/drums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/drums.txt -------------------------------------------------------------------------------- /configs/fern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/fern.txt -------------------------------------------------------------------------------- /configs/ficus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/ficus.txt -------------------------------------------------------------------------------- /configs/flower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/flower.txt -------------------------------------------------------------------------------- /configs/fortress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/fortress.txt -------------------------------------------------------------------------------- /configs/horns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/horns.txt -------------------------------------------------------------------------------- /configs/hotdog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/hotdog.txt -------------------------------------------------------------------------------- /configs/leaves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/leaves.txt -------------------------------------------------------------------------------- /configs/lego-use_batching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/lego-use_batching.txt -------------------------------------------------------------------------------- /configs/lego.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/lego.txt -------------------------------------------------------------------------------- /configs/materials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/materials.txt -------------------------------------------------------------------------------- /configs/mic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/mic.txt -------------------------------------------------------------------------------- /configs/orchids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/orchids.txt -------------------------------------------------------------------------------- /configs/room.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/room.txt -------------------------------------------------------------------------------- /configs/ship.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/ship.txt -------------------------------------------------------------------------------- /configs/trex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/configs/trex.txt -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/inference.py -------------------------------------------------------------------------------- /load_LINEMOD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/load_LINEMOD.py -------------------------------------------------------------------------------- /load_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/load_blender.py -------------------------------------------------------------------------------- /load_deepvoxels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/load_deepvoxels.py -------------------------------------------------------------------------------- /load_llff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/load_llff.py -------------------------------------------------------------------------------- /nerf_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/nerf_helpers.py -------------------------------------------------------------------------------- /nerf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/nerf_model.py -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/opts.py -------------------------------------------------------------------------------- /render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/render.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_nerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/run_nerf.py -------------------------------------------------------------------------------- /test/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/test/frame.py -------------------------------------------------------------------------------- /模型.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/模型.txt -------------------------------------------------------------------------------- /源码结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/源码结构.md -------------------------------------------------------------------------------- /说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunull/read-nerf-pytorch/HEAD/说明.md --------------------------------------------------------------------------------