├── .gitignore ├── LICENSE ├── README.md ├── confs ├── thin_structure.conf ├── wmask.conf ├── womask.conf └── womask_dtu_large_roi.conf ├── exp_runner.py ├── models ├── dataset.py ├── embedder.py ├── fields.py └── renderer.py ├── preprocess_custom_data ├── aruco_preprocess │ ├── CMakeLists.txt │ ├── calibration.cpp │ ├── gen_cameras.py │ └── run.sh ├── colmap_preprocess │ ├── colmap_read_model.py │ ├── colmap_wrapper.py │ ├── gen_cameras.py │ ├── imgs2poses.py │ └── pose_utils.py ├── readme.md └── static │ ├── aruco_board.png │ ├── interest_sparse_points.png │ └── raw_sparse_points.png ├── requirements.txt └── static ├── intro_1_compressed.gif └── intro_2_compressed.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/README.md -------------------------------------------------------------------------------- /confs/thin_structure.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/confs/thin_structure.conf -------------------------------------------------------------------------------- /confs/wmask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/confs/wmask.conf -------------------------------------------------------------------------------- /confs/womask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/confs/womask.conf -------------------------------------------------------------------------------- /confs/womask_dtu_large_roi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/confs/womask_dtu_large_roi.conf -------------------------------------------------------------------------------- /exp_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/exp_runner.py -------------------------------------------------------------------------------- /models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/models/dataset.py -------------------------------------------------------------------------------- /models/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/models/embedder.py -------------------------------------------------------------------------------- /models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/models/fields.py -------------------------------------------------------------------------------- /models/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/models/renderer.py -------------------------------------------------------------------------------- /preprocess_custom_data/aruco_preprocess/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/aruco_preprocess/CMakeLists.txt -------------------------------------------------------------------------------- /preprocess_custom_data/aruco_preprocess/calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/aruco_preprocess/calibration.cpp -------------------------------------------------------------------------------- /preprocess_custom_data/aruco_preprocess/gen_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/aruco_preprocess/gen_cameras.py -------------------------------------------------------------------------------- /preprocess_custom_data/aruco_preprocess/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/aruco_preprocess/run.sh -------------------------------------------------------------------------------- /preprocess_custom_data/colmap_preprocess/colmap_read_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/colmap_preprocess/colmap_read_model.py -------------------------------------------------------------------------------- /preprocess_custom_data/colmap_preprocess/colmap_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/colmap_preprocess/colmap_wrapper.py -------------------------------------------------------------------------------- /preprocess_custom_data/colmap_preprocess/gen_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/colmap_preprocess/gen_cameras.py -------------------------------------------------------------------------------- /preprocess_custom_data/colmap_preprocess/imgs2poses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/colmap_preprocess/imgs2poses.py -------------------------------------------------------------------------------- /preprocess_custom_data/colmap_preprocess/pose_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/colmap_preprocess/pose_utils.py -------------------------------------------------------------------------------- /preprocess_custom_data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/readme.md -------------------------------------------------------------------------------- /preprocess_custom_data/static/aruco_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/static/aruco_board.png -------------------------------------------------------------------------------- /preprocess_custom_data/static/interest_sparse_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/static/interest_sparse_points.png -------------------------------------------------------------------------------- /preprocess_custom_data/static/raw_sparse_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/preprocess_custom_data/static/raw_sparse_points.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/intro_1_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/static/intro_1_compressed.gif -------------------------------------------------------------------------------- /static/intro_2_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totoro97/NeuS/HEAD/static/intro_2_compressed.gif --------------------------------------------------------------------------------