├── .gitignore ├── README.md ├── helpers.py ├── images ├── chairRGB.gif ├── ficusMLP.gif ├── hotdogRGB.gif ├── legoRGB.gif ├── legoSpecular.gif ├── legoSpecular1.jpg ├── legoSpecular2.jpg └── legoSpecular3.jpg ├── loadnerf.py ├── main.py ├── renderer.py ├── requirements.txt ├── test.py ├── train.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test 3 | save -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/README.md -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/helpers.py -------------------------------------------------------------------------------- /images/chairRGB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/chairRGB.gif -------------------------------------------------------------------------------- /images/ficusMLP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/ficusMLP.gif -------------------------------------------------------------------------------- /images/hotdogRGB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/hotdogRGB.gif -------------------------------------------------------------------------------- /images/legoRGB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/legoRGB.gif -------------------------------------------------------------------------------- /images/legoSpecular.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/legoSpecular.gif -------------------------------------------------------------------------------- /images/legoSpecular1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/legoSpecular1.jpg -------------------------------------------------------------------------------- /images/legoSpecular2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/legoSpecular2.jpg -------------------------------------------------------------------------------- /images/legoSpecular3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/images/legoSpecular3.jpg -------------------------------------------------------------------------------- /loadnerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/loadnerf.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/main.py -------------------------------------------------------------------------------- /renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/renderer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/train.py -------------------------------------------------------------------------------- /visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximeraafat/pointRF/HEAD/visualizer.py --------------------------------------------------------------------------------