├── .gitattributes ├── .gitignore ├── WSI_DICOM_Converter.py ├── example.gif ├── figure1.png ├── readme.md └── test ├── annotation_data_structure.png ├── dcm_annotation.py └── img_patch.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/WSI2DICOM.iml 3 | *.xml 4 | -------------------------------------------------------------------------------- /WSI_DICOM_Converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/WSI_DICOM_Converter.py -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/example.gif -------------------------------------------------------------------------------- /figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/figure1.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/readme.md -------------------------------------------------------------------------------- /test/annotation_data_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/test/annotation_data_structure.png -------------------------------------------------------------------------------- /test/dcm_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/test/dcm_annotation.py -------------------------------------------------------------------------------- /test/img_patch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smujiang/WSI2DICOM/HEAD/test/img_patch.jpg --------------------------------------------------------------------------------