├── .DS_Store ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── sftp.json ├── README.md ├── colmapUtils ├── __init__.py ├── read_write_dense.py ├── read_write_fused_vis.py └── read_write_model.py ├── configs ├── sofa_eigen.txt └── xjhdesk.txt ├── dataLoader ├── IDsampler.py ├── __init__.py ├── blender.py ├── colmap2nerf.py ├── llff.py ├── nsvf.py ├── ray_utils.py ├── spec_synthetic.py └── tankstemple.py ├── extra ├── auto_run_paramsets.py └── compute_metrics.py ├── filesort_int.py ├── find_filter ├── GA.py ├── GA2.py ├── coordinate_ssf_distance.mat ├── cppNcuda │ ├── cal_every.cpp │ ├── cal_every_cuda.cu │ ├── cal_score.cpp │ ├── nvccMy.bat │ ├── setup.py │ ├── test.cpp │ └── test.py ├── find_best_filters.py └── random_mask.py ├── models ├── __init__.py ├── sh.py ├── tensoRF.py └── tensorBase.py ├── opt.py ├── renderer.py ├── sampleInput ├── random_(15,14)_206.mat ├── random_(15,14)_60.mat ├── random_(9,19)_120.mat └── random_mask.py ├── split_allimg2filterfixed_classify.py ├── start.bat ├── train.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/sftp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/.vscode/sftp.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/README.md -------------------------------------------------------------------------------- /colmapUtils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colmapUtils/read_write_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/colmapUtils/read_write_dense.py -------------------------------------------------------------------------------- /colmapUtils/read_write_fused_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/colmapUtils/read_write_fused_vis.py -------------------------------------------------------------------------------- /colmapUtils/read_write_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/colmapUtils/read_write_model.py -------------------------------------------------------------------------------- /configs/sofa_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/configs/sofa_eigen.txt -------------------------------------------------------------------------------- /configs/xjhdesk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/configs/xjhdesk.txt -------------------------------------------------------------------------------- /dataLoader/IDsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/IDsampler.py -------------------------------------------------------------------------------- /dataLoader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/__init__.py -------------------------------------------------------------------------------- /dataLoader/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/blender.py -------------------------------------------------------------------------------- /dataLoader/colmap2nerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/colmap2nerf.py -------------------------------------------------------------------------------- /dataLoader/llff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/llff.py -------------------------------------------------------------------------------- /dataLoader/nsvf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/nsvf.py -------------------------------------------------------------------------------- /dataLoader/ray_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/ray_utils.py -------------------------------------------------------------------------------- /dataLoader/spec_synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/spec_synthetic.py -------------------------------------------------------------------------------- /dataLoader/tankstemple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/dataLoader/tankstemple.py -------------------------------------------------------------------------------- /extra/auto_run_paramsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/extra/auto_run_paramsets.py -------------------------------------------------------------------------------- /extra/compute_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/extra/compute_metrics.py -------------------------------------------------------------------------------- /filesort_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/filesort_int.py -------------------------------------------------------------------------------- /find_filter/GA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/GA.py -------------------------------------------------------------------------------- /find_filter/GA2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/GA2.py -------------------------------------------------------------------------------- /find_filter/coordinate_ssf_distance.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/coordinate_ssf_distance.mat -------------------------------------------------------------------------------- /find_filter/cppNcuda/cal_every.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/cal_every.cpp -------------------------------------------------------------------------------- /find_filter/cppNcuda/cal_every_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/cal_every_cuda.cu -------------------------------------------------------------------------------- /find_filter/cppNcuda/cal_score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/cal_score.cpp -------------------------------------------------------------------------------- /find_filter/cppNcuda/nvccMy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/nvccMy.bat -------------------------------------------------------------------------------- /find_filter/cppNcuda/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/setup.py -------------------------------------------------------------------------------- /find_filter/cppNcuda/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/test.cpp -------------------------------------------------------------------------------- /find_filter/cppNcuda/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/cppNcuda/test.py -------------------------------------------------------------------------------- /find_filter/find_best_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/find_best_filters.py -------------------------------------------------------------------------------- /find_filter/random_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/find_filter/random_mask.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/models/sh.py -------------------------------------------------------------------------------- /models/tensoRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/models/tensoRF.py -------------------------------------------------------------------------------- /models/tensorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/models/tensorBase.py -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/opt.py -------------------------------------------------------------------------------- /renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/renderer.py -------------------------------------------------------------------------------- /sampleInput/random_(15,14)_206.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/sampleInput/random_(15,14)_206.mat -------------------------------------------------------------------------------- /sampleInput/random_(15,14)_60.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/sampleInput/random_(15,14)_60.mat -------------------------------------------------------------------------------- /sampleInput/random_(9,19)_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/sampleInput/random_(9,19)_120.mat -------------------------------------------------------------------------------- /sampleInput/random_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/sampleInput/random_mask.py -------------------------------------------------------------------------------- /split_allimg2filterfixed_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/split_allimg2filterfixed_classify.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/start.bat -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPREgroup/SpecNeRF-v2/HEAD/utils.py --------------------------------------------------------------------------------