# plenoxels **Repository Path**: fudy81/plenoxels ## Basic Information - **Project Name**: plenoxels - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-15 - **Last Updated**: 2022-01-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Plenoxels: Radiance Fields without Neural Networks Alex Yu\*, Sara Fridovich-Keil\*, Matthew Tancik, Qinhong Chen, Benjamin Recht, Angjoo Kanazawa UC Berkeley Website and video: arXiv: **Note:** This JAX implementation is intended to be high-level and user-serviceable, but is much slower (roughly 1 hour per epoch) than the CUDA implementation (roughly 1 minute per epoch), and there is not perfect feature alignment between the two versions. This JAX version can likely be sped up significantly, and we may push performance improvements and extra features in the future. Currently, this version only supports bounded scenes and trains using SGD without regularization. Citation: ``` @misc{yu2021plenoxels, title={Plenoxels: Radiance Fields without Neural Networks}, author={{Alex Yu and Sara Fridovich-Keil} and Matthew Tancik and Qinhong Chen and Benjamin Recht and Angjoo Kanazawa}, year={2021}, eprint={2112.05131}, archivePrefix={arXiv}, primaryClass={cs.CV} } ``` ## Setup We recommend setup with a conda environment, using the packages provided in `requirements.txt`. ## Downloading data Currently, this implementation only supports NeRF-Blender, which is available at: ## Voxel Optimization (aka Training) The training file is `plenoptimize.py`; its flags specify many options to control the optimization (scene, resolution, training duration, when to prune and subdivide voxels, where the training data is, where to save rendered images and model checkpoints, etc.). You can also set the frequency of evaluation, which will compute the validation PSNR and render validation images (comparing the reconstruction to the ground truth).