WAMAWAMA / TNSCUI2020-Seg-Rank1st

This is the source code of the 1st place solution for segmentation task in MICCAI 2020 TN-SCUI challenge.
481 stars 78 forks source link
1st-place miccai-grand-challenge segmentation thyroid-ultrasound-image tnscui

1st place solution in MICCAI 2020 TN-SCUI challenge

This is the source code of the 1st place solution for segmentation task (with IoU 82.54%) in 2020 TN-SCUI challenge.

[Challenge leaderboardπŸ†] [δΈ­ζ–‡η‰ˆreadmeπŸ‘]

Open In Colab Fold1 test results of DDTI dataset in colab

Pipeline of our solution

We use a simple cascaded framework for segmenting nodules, it can be easily extended to other single-target segmentation tasks.

Our pipeline is shown in the figure below. something

Click here to view more details of method ## Method ### Data preprocessing Due to different acquisition protocols, some thyroid ultrasound images have irrelevant regions (as shown in the first Figure). First, we remove these regions which may bring redundant features by using a threshold-based approach. Specifically, we perform the operation of averaging along the x and y axes on original images with pixel values from 0 to 255, respectively, after which rows and columns with mean values less than 5 are removed. Then the processed images are resized to 256Γ—256 pixels as the input of the first segmentation network. ### Cascaded segmentation framework We train two networks which share the same encoder-decoder structure with Dice loss function. In practice, we choose **`DeeplabV3+ with efficientnet-B6 encoder`** as the first network and the second network. The first segmentation network (at stage β…  of cascade) is trained to provide the rough localization of nodules, and the second segmentation network (at stage β…‘ of cascade) is trained for fine segmentation based on the rough localization.Our preliminary experiments show that the provided context information in first network may do not play a significant auxiliary role for refinement of the second network. Therefore, we only train the second network using images within region of interest (ROI) obtained from ground truth (GT). (The input data is the only difference in the process of training the two networks.) ![something](https://github.com/WAMAWAMA/TNSCUI2020-Seg-Rank1st/blob/master/pic/%E5%A4%A7%E5%B0%8F%E7%BB%93%E8%8A%82%E5%AF%B9%E6%AF%94.svg) When training the second network, we expand the nodule ROI obtained from GT, then the image in the expanded ROI is cropped out and resized to 512Γ—512 pixels for feeding the second network. We observe that, in most cases, the large nodule generally has a clear boundary, and the gray value of small nodule is quite different from that of surrounding normal thyroid tissue (as shown in the above figure). Therefore, background information (the tissue around the nodule) is significant for segmenting small nodules. As shown in Figure below, in the preprocessed image with the size of 256Γ—256 pixels, the minimum external square of the nodule ROI is obtained first, and then the external expansion m is set to 20 if the edge length n of the square is greater than 80, otherwise the m is set to 30. ![something](https://github.com/WAMAWAMA/TNSCUI2020-Seg-Rank1st/blob/master/pic/%E5%88%86%E5%89%B2%E9%A2%84%E5%A4%84%E7%90%86%E8%BF%87%E7%A8%8B.svg) ### Data augmentation and test time augmentation In both two task, following methods are performed in data augmentation: 1) horizontal flipping, 2) vertical flipping, 3) random cropping, 4) random affine transformation, 5) random scaling, 6) random translation, 7) random rotation, and 8) random shearing transformation. In addition, one of the following methods was randomly selected for additional augmentation: 1) sharpening, 2) local distortion, 3) adjustment of contrast, 4) blurring (Gaussian, mean, median), 5) addition of Gaussian noise, and 6) erasing. Test time augmentation (TTA) generally improves the generalization ability of the segmentation model. In our framework, the TTA includes vertical flipping, horizontal flipping, and rotation of 180 degrees for the segmentation task. ### Cross validation with a size and category balance strategy 5-fold cross validation is used to evaluate the performance of our proposed method. In our opinion, it is necessary to keep the size and category distribution of nodules similar in the training and validation sets. In practice, the size of a nodule is the number of pixels of the nodule after unifying preprocessed image to 256Γ—256 pixels. We stratified the size into three grades: 1) less than 1722 pixels, 2) less than 5666 pixels and greater than 1722 pixels, and 3) greater than 5666 pixels. These two thresholds, 1722 pixels and 5666 pixels, were close to the tertiles, and the size stratification was statistically significantly associated with the benign and malignant categories by the chisquare test (p<0.01). We divided images in each size grade group into 5 folds and combined different grades of single fold into new single fold. This strategy ensured that final 5 folds had similar size and category distributions.

In summary, what we do in our solution are:

Segmentation results on 2020 TN-SCUI training dataset and DDTI dataset

We test our method on 2020 TN-SCUI training dataset(with 3644 images or nodules, malignant 2003 : benign 1641). The segmentation results of 5-fold CV based on "DeeplabV3+ with efficientnet-B6 encoder" are as following: fold Stage β…  TTA at stage β…  Stage β…‘ TTA at stage β…‘ DsC IoU (%)
1 √ 0.8699 79.00
1 √ √ 0.8775 80.01
1 √ √ 0.8814 80.75
1 √ √ √ 0.8841 81.05
1 √ √ √ 0.8840 81.16
1 √ √ √ √ 0.8864 81.44
2 √ √ √ √ 0.8900 81.99
3 √ √ √ √ 0.8827 81.07
4 √ √ √ √ 0.8803 80.56
5 √ √ √ √ 0.8917 82.07
Click here to view complete TNSCUI segmentation results |fold|Stage β… |TTA at stage β… |Stage β…‘|TTA at stage β…‘|DsC|IoU (%)| |-------------|:-:|:-:|:-:|:-:|:--:|:--:| | 1 |√ | | | |0.8699|79.00| | 1 |√ |√ | | |0.8775|80.01| | 1 |√ | |√ | |0.8814|80.75| | 1 |√ |√ |√ | |0.8841|81.05| | 1 |√ | |√ |√ |0.8840|81.16| | 1 |√ |√ |√ |√ |0.8864|81.44| | 2 |√ | | | |0.8780|80.16| | 2 |√ |√ | | |0.8825|80.80| | 2 |√ | |√ | |0.8872|81.52| | 2 |√ |√ |√ | |0.8873|81.56| | 2 |√ | |√ |√ |0.8894|81.91| | 2 |√ |√ |√ |√ |0.8900|81.99| | 3 |√ | | | |0.8612|78.22| | 3 |√ |√ | | |0.8744|79.77| | 3 |√ | |√ | |0.8710|79.59| | 3 |√ |√ |√ | |0.8808|80.66| | 3 |√ | |√ |√ |0.8753|80.30| | 3 |√ |√ |√ |√ |0.8827|81.07| | 4 |√ | | | |0.8664|78.53| | 4 |√ |√ | | |0.8742|79.44| | 4 |√ | |√ | |0.8742|79.80| | 4 |√ |√ |√ | |0.8777|80.12| | 4 |√ | |√ |√ |0.8771|80.27| | 4 |√ |√ |√ |√ |0.8803|80.56| | 5 |√ | | | |0.8820|80.44| | 5 |√ |√ | | |0.8874|81.22| | 5 |√ | |√ | |0.8869|81.38| | 5 |√ |√ |√ | |0.8871|81.37| | 5 |√ | |√ |√ |0.8913|82.05| | 5 |√ |√ |√ |√ |0.8917|82.07|
We also test our method on another open access thyroid nodule ultrasound image dataset (DDTI public database [https://doi.org/10.1117/12.2073532], with 637 images or nodules after our preprocessing and data cleaning). The segmentation results of 5-fold CV based on "DeeplabV3+ with efficientnet-B6 encoder" are as following: fold Stage β…  TTA at stage β…  Stage β…‘ TTA at stage β…‘ DsC IoU (%)
1 √ 0.8391 74.80
1 √ √ 0.8435 75.49
1 √ √ 0.8380 74.79
1 √ √ √ 0.8406 75.16
1 √ √ √ 0.8440 75.77
1 √ √ √ √ 0.8469 76.17
2 √ √ √ √ 0.8392 74.57
3 √ √ √ √ 0.8756 79.61
4 √ √ √ √ 0.8131 72.48
5 √ √ √ √ 0.8576 77.74
Click here to view complete DDTI segmentation results |fold|Stage β… |TTA at stage β… |Stage β…‘|TTA at stage β…‘|DsC|IoU (%)| |-------------|:-:|:-:|:-:|:-:|:--:|:--:| | 1 |√ | | | |0.8391|74.80| | 1 |√ |√ | | |0.8435|75.49| | 1 |√ | |√ | |0.8380|74.79| | 1 |√ |√ |√ | |0.8406|75.16| | 1 |√ | |√ |√ |0.8440|75.77| | 1 |√ |√ |√ |√ |0.8469|76.17| | 2 |√ | | | |0.8242|72.23| | 2 |√ |√ | | |0.8295|72.99| | 2 |√ | |√ | |0.8373|74.30| | 2 |√ |√ |√ | |0.8373|74.33| | 2 |√ | |√ |√ |0.8373|74.71| | 2 |√ |√ |√ |√ |0.8373|74.57| | 3 |√ | | | |0.8588|77.15| | 3 |√ |√ | | |0.8672|78.26| | 3 |√ | |√ | |0.8663|78.42| | 3 |√ |√ |√ | |0.8717|78.95| | 3 |√ | |√ |√ |0.8712|79.16| | 3 |√ |√ |√ |√ |0.8756|79.61| | 4 |√ | | | |0.8081|71.27| | 4 |√ |√ | | |0.8110|72.05| | 4 |√ | |√ | |0.8037|70.85| | 4 |√ |√ |√ | |0.8004|70.79| | 4 |√ | |√ |√ |0.8151|72.35| | 4 |√ |√ |√ |√ |0.8131|72.48| | 5 |√ | | | |0.8445|75.45| | 5 |√ |√ | | |0.8523|76.47| | 5 |√ | |√ | |0.8495|76.53| | 5 |√ |√ |√ | |0.8528|77.06| | 5 |√ | |√ |√ |0.8535|77.19| | 5 |√ |√ |√ |√ |0.8576|77.74|

Reproducing the experiment results

You can follow the step-by-step tutorial below, or just download the pretrained weights and run test_fold1.py to reproduce our results. (note that we only provide the weights of 1st fold in 5-fold CV).

How to run this code on the TN-SCUI dataset or your own custom dataset?

This code can be easily performed on single-target segmentation tasks. Here, we split the whole process into 5 steps so that you can easily replicate our results or perform the whole pipeline on your private custom dataset.

You should prepare your data in the format of 2020 TN-SCUI dataset, this is very simple, you only need to prepare:

Since the sponsor of TNSCUI challenge does not allow the dissemination of the 2020 TN-SCUI dataset, we give another thyroid ultrasound dataset demo for your reference. The demo dataset was derived from the DDTI open access dataset, and we have processed the dataset into the format of 2020 TN-SCUI dataset,you can download it from [GoogleDrive] [BaiduWP, password:qxds].

Step0 preparation of environment

We have tested our code in following environment:

For installing segmentation_models_pytorch (smp), there are two commands:

pip install segmentation-models-pytorch

Use the above command, you can install the released version that can run with torch <= 1.1.0, but without some decoders such as deeplabV3, deeplabV3+ and PAN.

pip install git+https://github.com/qubvel/segmentation_models.pytorch

Use the above command, you will install the latest version which includes decoders such as deeplabV3, deeplabV3+ and PAN, but requiring torch >= 1.2.0.

We modified the original code of smp, to make it can be run with torch <= 1.1.0, and also have the latest version of the smp library encoder such as deeplabV3, deeplabV3+ and PAN. The modified smp is in the filefolder segmentation_models_pytorch_4TorchLessThan120, here are two ways to use it:

  1. install smp with pip install segmentation-models-pytorch firstly, then just copy the segmentation_models_pytorch_4TorchLessThan120 into your project folder to use it
  2. copy the segmentation_models_pytorch_4TorchLessThan120 into your project folder, then install these libs: torchvision>=0.3.0, pretrainedmodels==0.7.4, efficientnet-pytorch>=0.5.1

Step1 preprocessing

πŸ‘€This step is optional, if you donot wanna preprocess image, just prepare your data as the demo format and skip to the Step2"training and validatation".

In step1, you should run the script step1_preprocessing.m in MATLAB to perform the preprocessing. For both TN-SCUI and DDTI dataset, there are some irrelevant regions to be removed. Because we used a cross-validation with a nodule size and category balance strategy, we should get the size of nodules for cross-validation.

After the code runs, you will get two folders and a csv file:

id cate size
001.PNG 0 2882
002.PNG 1 3277
003.PNG 1 3222
004.PNG 1 256
β”‹ β”‹ β”‹

The example of preprocessed DDTI dataset was given here [GoogleDrive] [BaiduWP, password:qxds]

Step2 training and validatation

For training phase:

In step2, you should run the script step2_TrainAndValidate.py to train the first or second network in the cascaded framework (you need to train the two networks separately), that is, the training process (such as hyperparameters) is the same for both first and second network except for the different training datasets used. With the csv file train.csv, you can directly perform K-fold cross validation (default is 5-fold), and the script uses a fixed random seed to ensure that the K-fold cv of each experiment is repeatable (please note that the same random seed may cause different K-fold under different versions of scikit-learn).

For example, you can train the first fold of the first network in two ways:

  1. modify (set) following parameters in the script step2TrainAndValidate.py and run the script.
    """ just set your param as the default value """
    # hyperparameters
    parser.add_argument('--image_size', type=int, default=256)  # recommended: 256 for 1st(stageβ… ) network, 512 for 2nd(stage β…‘) networkπŸ‘
    parser.add_argument('--batch_size', type=int, default=3)
    parser.add_argument('--batch_size_test', type=int, default=30)
    # custom parameters
    parser.add_argument('--Task_name', type=str, default='dpv3plus_stage1_', help='DIR name,Task name')
    parser.add_argument('--csv_file', type=str, default='./DDTI/2_preprocessed_data/train.csv')
    parser.add_argument('--filepath_img', type=str, default='./DDTI/2_preprocessed_data/stage1/p_image')
    parser.add_argument('--filepath_mask', type=str, default='./DDTI/2_preprocessed_data/stage1/p_mask')
    parser.add_argument('--fold_K', type=int, default=5, help='number of cross-validation folds')
    parser.add_argument('--fold_idx', type=int, default=1)
  2. use the following command at the terminal to transmit parameters and run the script.
    python step2_TrainAndValidate.py \
    --batch_size=3 \
    --Task_name='dpv3plus_stage1_'\
    --csv_file='./DDTI/2_preprocessed_data/train.csv' \
    --filepath_img='./DDTI/2_preprocessed_data/stage1/p_image' \
    --filepath_mask='./DDTI/2_preprocessed_data/stage1/p_mask' \
    --fold_idx=1

Something else in training process:

For validation and testing phase

In fact, there is no need to re-run the script, because the test has been performed during the training process, and the detailed information of the result is recorded in the record.xlsx or record.txt. But you can also confirm the final training effect by running the script step2TrainAndValidate.py after the training by setting the parameter mode as test.

It should be noted that the dataset validated in the training phase is preprocessed. Therefore, if you want to perform test based on the original unprocessed images, please refer to step3.

Step3 testing (or inference or predicting)

In step3, you should run the script step3_TestOrInference.py to perform inference based on the original unprocessed image. By using the script step3_TestOrInference.py, you can:

Here are some parameters should be noticed (Especially c1_size and c2_size):

fold_flag = False # False for inference on new data, and True for cross-validation
mask_path = None  # None for inference on new data
save_path = None  # If you don't want to save the inference result, set it to None
c1_size = 256  # The input image size for training the first network ❗
c1_tta = False # Whether to use TTA for the first network
orimg=False    # False for no preprocessing to remove irrelevant areas
use_c2_flag = False # Whether to use the second network
c2_size = 512 # The input image size for training the second network ❗
c2_tta = False # Whether to use TTA for the second network

When you get multiple results after inference, you can use the script step4_Merge.py to integrate all the results. We use a pixel-wised voting method, and recommend voting on odd numbers of results to avoid fluctuations in making decision.

Acknowledgement