Skip to content
/ MSSG Public

MICCAI 2023: Morphology-inspired Unsupervised Gland Segmentation via Selective Semantic Grouping

Notifications You must be signed in to change notification settings

xmed-lab/MSSG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GlandSAM

Qixiang ZHANG, Yi LI, Cheng XUE, Haonan WANG, Xiaomeng LI*, "GlandSAM: Injecting Morphology Knowledge Into Segment Anything Model for Label-Free Gland Segmentation", IEEE TMI 2024 (Accepted).

1. Introduction

This GlandSAM framework is an extension version of MSSG, which integrates the MSG module into a SAM-LoRA model to achieve higher unsupervised gland segmentation performance.

figure

2. Environment Installation

cd GlandSAM
pip install -r requirements.txt

3. Data Preparation

Download GlaS dataset from Official Website, and place the dataset as following:

/your/directory/SPM/
      └── glas/
            ├── images/
            │     ├── xxxxxxxxx.bmp
            │     └── ...
            └── annotations/
                  ├── xxxxxxxxx.bmp
                  └── ...

Slice pathology image into patches with the size of 224 * 224

cd GlandSAM
python glas_patch.py

Download the pre-extracted proposal maps from Link to Proposal Map, and the pseudo-labels of MSSG from Download Link (Extracted Code: 9zvb), place the dataset as following:

/datasets/
      └── glas_seg/
            ├── images/
            │     ├── xxxxxxxxx.png
            │     └── ...
            ├── masks/
            |     ├── xxxxxxxxx.png
            |     └── ...
            ├── proposal_maps/
            |     ├── xxxxxxxxx.png
            |     └── ...
            ├── pseudo_masks/
            |     ├── xxxxxxxxx.png
            |     └── ...

Train GlandSAM

cd GlandSAM
bash train.sh $gpu_id

MSSG

Qixiang ZHANG, Yi LI, Cheng XUE, Xiaomeng LI*, "Morphology-inspired Unsupervised Gland Segmentation via Selective Semantic Grouping", MICCAI 2023 (Accepted).

1. Introduction

This MSSG framework is designed for unsupervised gland segmentation on histology images, containing two modules. The first Selective Proposal Mining (SPM) module generates proposals for different gland sub-regions. And the Morphology-aware Semantic Grouping (MSG) module groups the semantics of the sub-region proposal to obtain comprehensive knowledge about glands.

figure

2. Environment

This code has been tested with Python 3.9, PyTorch 1.12.0, CUDA 11.3 mmseg 0.8.0 and mmcv 1.4.0 on Ubuntu 20.04.

3. Preparation

Download GlaS dataset from Official Website, and place the dataset as following:

/your/directory/SPM/
      └── glas/
            ├── training_images/
            │     ├── xxxxxxxxx.bmp
            │     └── ...
            └── training_gts/
                  ├── xxxxxxxxx.bmp
                  └── ...

Install Python library dependencies

pip install -r requirements.txt

Install MMSegmentation codebase, see documentation from MMLab for details.

4. Training for SPM Module

You can simply download the pre-generated proposal map from Link to Proposal Map with extracted code rzgp

Or use the SPM module to generate candidate proposals for each histology image, and use the empirical cue to select gland sub-region proposals

cd SPM
python SPM.py --train_image_path ../glas/training_images --output_root result --nConv 3 --cluster_num 5

5. Training for MSG Module

Crop the training image and the proposal map

cd MSG
python tools/crop_img_and_gt.py MSG/glas/images SPM/proposal_map MSG/glas

Train the segmentation model with MSG modules.

cd MSG
bash tools/dist_train.sh configs/pspnet_mssg/pspnet_wres38-d8_10k_histo.py 4 runs/mssg

6. Results and Visualization of Pseudo-masks

Method mIOU Weight Pseudo-mask
Our MSSG 62.72% Download Link (Extracted Code: jjey) Download Link (Extracted Code: 9zvb)
SGSCN [1] 52.61% Coming Soon Coming Soon
PiCIE [2] 48.77% Coming Soon Coming Soon

*The backbone of all methods above are the same, i.e., PSPNet

Citation

@article{zhang2024glandsam,
  title={GlandSAM: Injecting Morphology Knowledge into Segment Anything Model for Label-free Gland Segmentation},
  author={Zhang, Qixiang and Li, Yi and Xue, Cheng and Wang, Haonan and Li, Xiaomeng},
  journal={IEEE Transactions on Medical Imaging},
  year={2024},
  publisher={IEEE}
}
@inproceedings{zhang2023morphology,
  title={Morphology-inspired unsupervised gland segmentation via selective semantic grouping},
  author={Zhang, Qixiang and Li, Yi and Xue, Cheng and Li, Xiaomeng},
  booktitle={International Conference on Medical Image Computing and Computer-Assisted Intervention},
  pages={281--291},
  year={2023},
  organization={Springer}
}

Acknowledgement

MSSG is built upon MMSegmentation, and GlandSAM is built upon SAM, Med-SAM, and Fine-tune-SAM

About

MICCAI 2023: Morphology-inspired Unsupervised Gland Segmentation via Selective Semantic Grouping

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published