timwahoo / MedLSAM

MedLSAM: Localize and Segment Anything Model for 3D Medical Images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MedLSAM: Localize and Segment Anything Model for 3D Medical Images


Key Features

This repository provides the official implementation of MedLSAM: Localize and Segment Anything Model for 3D Medical Images

  • First Fully-Automatic Medical Adaptation of SAM: MedLSAM is the first complete medical adaptation of the Segment Anything Model (SAM). The primary goal of this work is to significantly reduce the annotation workload in medical image segmentation.
  • Foundation Model for 3D Medical Image Localization: MedLAM: MedLSAM introduces MedLAM as a foundational model for the localization of 3D medical images.
  • Segment Any Anatomy Target Without Additional Annotation: MedLSAM is designed to segment any anatomical target in 3D medical images without the need for further annotations, contributing to the automation and efficiency of the segmentation process.

Details

The Segment Anything Model (SAM) has recently emerged as a groundbreaking model in the field of image segmentation. Nevertheless, both the original SAM and its medical adaptations necessitate slice-by-slice annotations, which directly increase the annotation workload with the size of the dataset. We propose MedLSAM to address this issue, ensuring a constant annotation workload irrespective of dataset size and thereby simplifying the annotation process. Our model introduces a few-shot localization framework capable of localizing any target anatomical part within the body. To achieve this, we develop a Localize Anything Model for 3D Medical Images (MedLAM), utilizing two self-supervision tasks: relative distance regression (RDR) and multi-scale similarity (MSS) across a comprehensive dataset of 14,012 CT scans. We then establish a methodology for accurate segmentation by integrating MedLAM with SAM. By annotating only six extreme points across three directions on a few templates, our model can autonomously identify the target anatomical region on all data scheduled for annotation. This allows our framework to generate a 2D bounding box for every slice of the image, which are then leveraged by SAM to carry out segmentations. We conducted experiments on two 3D datasets covering 38 organs and found that MedLSAM matches the performance of SAM and its medical adaptations while requiring only minimal extreme point annotations for the entire dataset. Furthermore, MedLAM has the potential to be seamlessly integrated with future 3D SAM models, paving the way for enhanced performance.

MedLSAM Image

Get Started

Main Requirements

torch>=1.11.0
tqdm
nibabel
scipy
SimpleITK
monai

Installation

  1. Create a virtual environment conda create -n medlsam python=3.10 -y and activate it conda activate medlsam
  2. Install Pytorch
  3. git clone https://github.com/openmedlab/MedLSAM
  4. Enter the MedSAM folder cd MedLSAM and run pip install -e .

Download Model

Download MedLAM checkpoint, SAM checkpoint, MedSAM checkpoint and place them at checkpoint/medlam.pth, checkpoint/sam_vit_b_01ec64.pth and checkpoint/medsam_vit_b.pth

Inference

GPU requirement

We recommend using a GPU with 8GB or more memory for inference.

Data preparation

Note: You can also download other CT datasets and place them any place you want. MedLSAM will automaticly apply the preprocessing procedure during the inference time, so please do not normalize the original CT images!!!

After downloading the datasets, you should sort the data into "support" and "query" groups. This does not require moving the actual image files. Rather, you need to create separate lists of file paths for each group.

For each group ("support" and "query"), create a .txt file listing the paths to the image files, and another .txt file listing the paths to the corresponding label files. Ensure that the ordering of images and labels aligns in both lists. These lists will be used to direct MedLSAM to the appropriate files during the inference process.

Config preparation

MedLAM and MedLSAM load their configurations from a .txt file. The structure of the file is as follows:

[data]
support_image_ls      =  config/data/StructSeg_HaN/support_image.txt
support_label_ls      =  config/data/StructSeg_HaN/support_label.txt
query_image_ls        =  config/data/StructSeg_HaN/query_image.txt
query_label_ls        =  config/data/StructSeg_HaN/query_label.txt
gt_slice_threshold    = 10
fg_class              = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22]
seg_save_path         = result/npz/StructSeg
seg_png_save_path     = result/png/StructSeg

[vit]
net_type                = vit_b

[weight]
medlam_load_path   = checkpoint/medlam.pth
vit_load_path  = checkpoint/medsam_20230423_vit_b_0.0.1.pth

Each of the parameters is explained as follows:

  • support_image_ls: The path to the list of support image files. It is recommended to use between 3 and 10 support images.
  • support_label_ls: The path to the list of support label files.
  • query_image_ls: The path to the list of query image files.
  • query_label_ls: The path to the list of query label files.
  • gt_slice_threshold: The threshold value for ground truth slice selection.
  • fg_class: The list of foreground class to be used for localization and segmentation. This could be a list of integers indicating the class labels. You can only select a part of them as target classes.
  • seg_save_path: The path to save the segmentation results in .npz format, only required for MedLSAM.
  • seg_png_save_path: The path to save the segmentation results in .png format, only required for MedLSAM.
  • net_type: The type of vision transformer model to be used, only required for MedLSAM. By default, this is set to vit_b.
  • medlam_load_path: The path to load the pretrained MedLAM model weights.
  • vit_load_path: The path to load the pretrained vision transformer model weights, only required for MedLSAM. You can change it to checkpoint/sam_vit_b_01ec64.pth to use the SAM model as segmentation basis.

Inference

  • MedLAM (Localize any anatomy target)
CUDA_VISIBLE_DEVICES=0 python MedLAM_Inference.py --config_file path/to/your/test_medlam_config.txt

Example:

CUDA_VISIBLE_DEVICES=0 python MedLAM_Inference.py --config_file config/test_config/test_structseg_medlam.txt
CUDA_VISIBLE_DEVICES=0 python MedLAM_Inference.py --config_file config/test_config/test_word_medlam.txt
  • MedLSAM (Localize and segment any anatomy target)
CUDA_VISIBLE_DEVICES=0 python MedLSAM_Inference.py --config_file path/to/your/test_medlsam_config.txt

Example:

CUDA_VISIBLE_DEVICES=0 python MedLSAM_Inference.py --config_file config/test_config/test_structseg_medlam_medsam.txt
CUDA_VISIBLE_DEVICES=0 python MedLSAM_Inference.py --config_file config/test_config/test_structseg_medlam_sam.txt

Results

  • MedLAM (Localize any anatomy target): MedLAM automatically calculates and saves the mean Intersection over Union (IoU) along with the standard deviation for each category in a .txt file. These files are stored under the result/iou directory.
  • MedLSAM (Localize and segment any anatomy target): MedLSAM automatically calculates and saves the mean Dice Similarity Coefficient (DSC) along with the standard deviation for each category in a .txt file. These files are stored under the result/dsc directory.

To do list

  • Support scribble prompts
  • Support MobliSAM

Feedback and Contact

๐Ÿ›ก๏ธ License

This project is under the CC-BY-NC 4.0 license. See LICENSE for details.

๐Ÿ™ Acknowledgement

  • A lot of code is modified from MedSAM.
  • We highly appreciate all the challenge organizers and dataset owners for providing the public dataset to the community.
  • We thank Meta AI for making the source code of segment anything publicly available.

๐Ÿ“ Citation

If you find this repository useful, please consider citing this paper:

@article{Lei2023medlam,
  title={MedLSAM: Localize and Segment Anything Model for 3D Medical Images},
  author={Wenhui Lei, Xu Wei, Xiaofan Zhang, Kang Li, Shaoting Zhang},
  journal={arXiv preprint arXiv:},
  year={2023}
}

About

MedLSAM: Localize and Segment Anything Model for 3D Medical Images

License:Apache License 2.0


Languages

Language:Python 100.0%