├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── demo.ipynb ├── extract_centerline.py ├── extract_slice.py ├── images └── demo.png ├── requirements.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/README.md -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/demo.ipynb -------------------------------------------------------------------------------- /extract_centerline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/extract_centerline.py -------------------------------------------------------------------------------- /extract_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/extract_slice.py -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/images/demo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangyuteng/simple-centerline-extraction/HEAD/test.py --------------------------------------------------------------------------------