├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── checkpoints └── model.pth ├── export.bat ├── export.sh ├── misc ├── add_github_repo_algorithm.png ├── add_jaw_to_scan.png ├── containers_algorithm.png ├── create_algorithm.png ├── input_output_algorithm.png ├── logo_algorithm.png ├── try_out_algorithm.png └── upload_container_algorithm.png ├── process.py ├── requirements.txt ├── test.bat ├── test.sh ├── test ├── 0EJBIPTC_lower.json ├── 0JN50XQR.obj ├── expected_output.json └── test_local │ ├── 0EJBIPTC_upper.vtk │ ├── 0JN50XQR_lower.vtk │ └── expected_output.json └── utils ├── LinearSubdivisionFilter.py ├── post_process.py ├── readers.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/checkpoints/model.pth -------------------------------------------------------------------------------- /export.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/export.bat -------------------------------------------------------------------------------- /export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/export.sh -------------------------------------------------------------------------------- /misc/add_github_repo_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/add_github_repo_algorithm.png -------------------------------------------------------------------------------- /misc/add_jaw_to_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/add_jaw_to_scan.png -------------------------------------------------------------------------------- /misc/containers_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/containers_algorithm.png -------------------------------------------------------------------------------- /misc/create_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/create_algorithm.png -------------------------------------------------------------------------------- /misc/input_output_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/input_output_algorithm.png -------------------------------------------------------------------------------- /misc/logo_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/logo_algorithm.png -------------------------------------------------------------------------------- /misc/try_out_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/try_out_algorithm.png -------------------------------------------------------------------------------- /misc/upload_container_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/misc/upload_container_algorithm.png -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test.bat -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test.sh -------------------------------------------------------------------------------- /test/0EJBIPTC_lower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/0EJBIPTC_lower.json -------------------------------------------------------------------------------- /test/0JN50XQR.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/0JN50XQR.obj -------------------------------------------------------------------------------- /test/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/expected_output.json -------------------------------------------------------------------------------- /test/test_local/0EJBIPTC_upper.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/test_local/0EJBIPTC_upper.vtk -------------------------------------------------------------------------------- /test/test_local/0JN50XQR_lower.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/test_local/0JN50XQR_lower.vtk -------------------------------------------------------------------------------- /test/test_local/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/test/test_local/expected_output.json -------------------------------------------------------------------------------- /utils/LinearSubdivisionFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/utils/LinearSubdivisionFilter.py -------------------------------------------------------------------------------- /utils/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/utils/post_process.py -------------------------------------------------------------------------------- /utils/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/utils/readers.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCBIA-OrthoLab/3DTeethSeg22_challenge/HEAD/utils/utils.py --------------------------------------------------------------------------------