├── .gitignore ├── LICENSE ├── README.md ├── WORD_V0.1.0_labelsTs.zip ├── annotation_template ├── word_annotation_template_image.nii.gz └── word_annotation_template_label.nii.gz ├── figures ├── show_data_info.png ├── size.png ├── sota.png └── user.png ├── scribbles_generator.py └── word_metrics_computing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/README.md -------------------------------------------------------------------------------- /WORD_V0.1.0_labelsTs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/WORD_V0.1.0_labelsTs.zip -------------------------------------------------------------------------------- /annotation_template/word_annotation_template_image.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/annotation_template/word_annotation_template_image.nii.gz -------------------------------------------------------------------------------- /annotation_template/word_annotation_template_label.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/annotation_template/word_annotation_template_label.nii.gz -------------------------------------------------------------------------------- /figures/show_data_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/figures/show_data_info.png -------------------------------------------------------------------------------- /figures/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/figures/size.png -------------------------------------------------------------------------------- /figures/sota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/figures/sota.png -------------------------------------------------------------------------------- /figures/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/figures/user.png -------------------------------------------------------------------------------- /scribbles_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/scribbles_generator.py -------------------------------------------------------------------------------- /word_metrics_computing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiLab-git/WORD/HEAD/word_metrics_computing.py --------------------------------------------------------------------------------