├── LICENSE ├── README.md ├── bashs ├── bash_dtu_blending.sh ├── bash_dtu_blending_ft.sh ├── bash_garment_blending.sh └── bash_garment_blending_ft.sh ├── conda_env.yml ├── confs ├── udf_dtu_blending.conf ├── udf_dtu_blending_ft.conf ├── udf_garment_blending.conf └── udf_garment_blending_ft.conf ├── custom_mc ├── _marching_cubes_lewiner.py ├── _marching_cubes_lewiner_cy.cpp ├── _marching_cubes_lewiner_cy.cpython-36m-x86_64-linux-gnu.so ├── _marching_cubes_lewiner_cy.pyx ├── _marching_cubes_lewiner_luts.py └── setup.py ├── dataset └── dataset.py ├── docs ├── NeuralUDF_arxiv.pdf ├── css │ ├── iconize.css │ └── project.css ├── images │ ├── data_ico.png │ ├── pdf.png │ └── teaser.png ├── index.htm ├── logos │ ├── Logo_HKU.png │ ├── Logo_tencent_games.png │ ├── logo_TAMU.png │ └── logo_mpi.png └── videos │ ├── dtu0.mp4 │ ├── dtu1.mp4 │ ├── garment0.mp4 │ ├── garment1.mp4 │ ├── garment2.mp4 │ ├── intro.mp4 │ └── supp_plant.mp4 ├── evaluation ├── __init__.py ├── clean_dtu_mesh.py ├── eval_deepfashion_python.py └── eval_dtu_python.py ├── exp_runner_blending.py ├── extract_mesh.py ├── loss ├── __init__.py ├── loss.py └── patch_metric.py └── models ├── embedder.py ├── fields.py ├── patch_projector.py ├── projector.py ├── projector_utils.py └── udf_renderer_blending.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/README.md -------------------------------------------------------------------------------- /bashs/bash_dtu_blending.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/bashs/bash_dtu_blending.sh -------------------------------------------------------------------------------- /bashs/bash_dtu_blending_ft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/bashs/bash_dtu_blending_ft.sh -------------------------------------------------------------------------------- /bashs/bash_garment_blending.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/bashs/bash_garment_blending.sh -------------------------------------------------------------------------------- /bashs/bash_garment_blending_ft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/bashs/bash_garment_blending_ft.sh -------------------------------------------------------------------------------- /conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/conda_env.yml -------------------------------------------------------------------------------- /confs/udf_dtu_blending.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/confs/udf_dtu_blending.conf -------------------------------------------------------------------------------- /confs/udf_dtu_blending_ft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/confs/udf_dtu_blending_ft.conf -------------------------------------------------------------------------------- /confs/udf_garment_blending.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/confs/udf_garment_blending.conf -------------------------------------------------------------------------------- /confs/udf_garment_blending_ft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/confs/udf_garment_blending_ft.conf -------------------------------------------------------------------------------- /custom_mc/_marching_cubes_lewiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/_marching_cubes_lewiner.py -------------------------------------------------------------------------------- /custom_mc/_marching_cubes_lewiner_cy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/_marching_cubes_lewiner_cy.cpp -------------------------------------------------------------------------------- /custom_mc/_marching_cubes_lewiner_cy.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/_marching_cubes_lewiner_cy.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /custom_mc/_marching_cubes_lewiner_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/_marching_cubes_lewiner_cy.pyx -------------------------------------------------------------------------------- /custom_mc/_marching_cubes_lewiner_luts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/_marching_cubes_lewiner_luts.py -------------------------------------------------------------------------------- /custom_mc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/custom_mc/setup.py -------------------------------------------------------------------------------- /dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/dataset/dataset.py -------------------------------------------------------------------------------- /docs/NeuralUDF_arxiv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/NeuralUDF_arxiv.pdf -------------------------------------------------------------------------------- /docs/css/iconize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/css/iconize.css -------------------------------------------------------------------------------- /docs/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/css/project.css -------------------------------------------------------------------------------- /docs/images/data_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/images/data_ico.png -------------------------------------------------------------------------------- /docs/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/images/pdf.png -------------------------------------------------------------------------------- /docs/images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/images/teaser.png -------------------------------------------------------------------------------- /docs/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/index.htm -------------------------------------------------------------------------------- /docs/logos/Logo_HKU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/logos/Logo_HKU.png -------------------------------------------------------------------------------- /docs/logos/Logo_tencent_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/logos/Logo_tencent_games.png -------------------------------------------------------------------------------- /docs/logos/logo_TAMU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/logos/logo_TAMU.png -------------------------------------------------------------------------------- /docs/logos/logo_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/logos/logo_mpi.png -------------------------------------------------------------------------------- /docs/videos/dtu0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/dtu0.mp4 -------------------------------------------------------------------------------- /docs/videos/dtu1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/dtu1.mp4 -------------------------------------------------------------------------------- /docs/videos/garment0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/garment0.mp4 -------------------------------------------------------------------------------- /docs/videos/garment1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/garment1.mp4 -------------------------------------------------------------------------------- /docs/videos/garment2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/garment2.mp4 -------------------------------------------------------------------------------- /docs/videos/intro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/intro.mp4 -------------------------------------------------------------------------------- /docs/videos/supp_plant.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/docs/videos/supp_plant.mp4 -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/clean_dtu_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/evaluation/clean_dtu_mesh.py -------------------------------------------------------------------------------- /evaluation/eval_deepfashion_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/evaluation/eval_deepfashion_python.py -------------------------------------------------------------------------------- /evaluation/eval_dtu_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/evaluation/eval_dtu_python.py -------------------------------------------------------------------------------- /exp_runner_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/exp_runner_blending.py -------------------------------------------------------------------------------- /extract_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/extract_mesh.py -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loss/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/loss/loss.py -------------------------------------------------------------------------------- /loss/patch_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/loss/patch_metric.py -------------------------------------------------------------------------------- /models/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/embedder.py -------------------------------------------------------------------------------- /models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/fields.py -------------------------------------------------------------------------------- /models/patch_projector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/patch_projector.py -------------------------------------------------------------------------------- /models/projector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/projector.py -------------------------------------------------------------------------------- /models/projector_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/projector_utils.py -------------------------------------------------------------------------------- /models/udf_renderer_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/NeuralUDF/HEAD/models/udf_renderer_blending.py --------------------------------------------------------------------------------