├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── README.md ├── mat_utils.py ├── rc2nerf.py ├── requirements.txt └── utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/README.md -------------------------------------------------------------------------------- /mat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/mat_utils.py -------------------------------------------------------------------------------- /rc2nerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/rc2nerf.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python 3 | pandas 4 | tqdm -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreeves/rc2nerf/HEAD/utils.py --------------------------------------------------------------------------------