├── NeRF.html ├── NeRF.ipynb ├── README.md ├── greek.png └── requirements.txt /README.md: -------------------------------------------------------------------------------- 1 | # NeRF再現実装公開用リポジトリ 2 | [三次元空間のニューラルな表現とNeRF](https://blog.albert2005.co.jp/2020/05/08/nerf/)で使用したプログラムです. 3 | 4 | ## 実行方法 5 | - `requirements.txt` に書かれているライブラリをインストールしてください.バージョンは厳密に合わせなくてもだいたい動きます. 6 | - あとはノートブックを上から順に実行していくだけ. 7 | 8 | ## 元論文 9 | NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis 10 | - arXiv: https://arxiv.org/abs/2003.08934 11 | - プロジェクトページ: http://www.matthewtancik.com/nerfhttp://www.matthewtancik.com/nerf 12 | -------------------------------------------------------------------------------- /greek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBERT-Inc/blog_nerf/323b580c433cc2dea6e79befc8f4cc752e51abcc/greek.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==3.2.1 2 | numpy==1.22.0 3 | Pillow==9.0.1 4 | torch==1.5.0 --------------------------------------------------------------------------------