| Literature DB >> 31729403 |
Veit Sandfort1, Ke Yan1, Perry J Pickhardt2, Ronald M Summers3.
Abstract
Labeled medical imaging data is scarce and expensive to generate. To achieve generalizable deep learning models large amounts of data are needed. Standard data augmentation is a method to increase generalizability and is routinely performed. Generative adversarial networks offer a novel method for data augmentation. We evaluate the use of CycleGAN for data augmentation in CT segmentation tasks. Using a large image database we trained a CycleGAN to transform contrast CT images into non-contrast images. We then used the trained CycleGAN to augment our training using these synthetic non-contrast images. We compared the segmentation performance of a U-Net trained on the original dataset compared to a U-Net trained on the combined dataset of original data and synthetic non-contrast images. We further evaluated the U-Net segmentation performance on two separate datasets: The original contrast CT dataset on which segmentations were created and a second dataset from a different hospital containing only non-contrast CTs. We refer to these 2 separate datasets as the in-distribution and out-of-distribution datasets, respectively. We show that in several CT segmentation tasks performance is improved significantly, especially in out-of-distribution (noncontrast CT) data. For example, when training the model with standard augmentation techniques, performance of segmentation of the kidneys on out-of-distribution non-contrast images was dramatically lower than for in-distribution data (Dice score of 0.09 vs. 0.94 for out-of-distribution vs. in-distribution data, respectively, p < 0.001). When the kidney model was trained with CycleGAN augmentation techniques, the out-of-distribution (non-contrast) performance increased dramatically (from a Dice score of 0.09 to 0.66, p < 0.001). Improvements for the liver and spleen were smaller, from 0.86 to 0.89 and 0.65 to 0.69, respectively. We believe this method will be valuable to medical imaging researchers to reduce manual segmentation effort and cost in CT imaging.Entities:
Mesh:
Year: 2019 PMID: 31729403 PMCID: PMC6858365 DOI: 10.1038/s41598-019-52737-x
Source DB: PubMed Journal: Sci Rep ISSN: 2045-2322 Impact factor: 4.379
Figure 1Examples of true IV contrast CT scans (left column) and synthetic non-contrast CT scans generated by a CycleGAN. The rightmost column shows unrelated example non-contrast images. Overall the synthetic non-contrast images appear convincing - even when significant abnormalities are present in the contrast CT scans.
Segmentation performance measured as Dice score for kidney, liver and spleen. Shown are mean scores and standard deviation of 5 cross-validation experiments.
| Organ | Evaluation Dataset* | Augmentation Method | |||
|---|---|---|---|---|---|
| None | Standard | Histogram Eq | CycleGAN | ||
| Kidney | in-distribution (contrast CT) | 0.920 ± 0.013 | 0.940 ± 0.007 | 0.939 ± 0.006 | |
| out-of-distribution (non-contrast CT) | 0.059 ± 0.034 | 0.090 ± 0.039 | 0.066 ± 0.027 | ||
| Liver | in-distribution (contrast CT) | 0.944 ± 0.005 | 0.941 ± 0.006 | 0.947 ± 0.003 | |
| out-of-distribution (non-contrast CT) | 0.207 ± 0.209 | 0.860 ± 0.009 | 0.873 ± 0.015 | ||
| Spleen | in-distribution (contrast CT) | 0.884 ± 0.029 | 0.890 ± 0.037 | 0.904 ± 0.032 | |
| out-of-distribution (non-contrast CT) | 0.038 ± 0.009 | 0.654 ± 0.031 | 0.648 ± 0.051 | ||
| All Averaged | in-distribution (contrast CT) | 0.916 | 0.924 | 0.932 | |
| out-of-distribution (non-contrast CT) | 0.101 | 0.535 | 0.529 | ||
*For definitions see section Experimental Setup. Mean ± sd.
Figure 2Dice scores of different organs for the tested augmentation methods in the two test sets (in-distribution (contrast CT) vs. out-of-distribution (non-contrast).
Volume estimation error for kidney, liver and spleen segmentations.
| Organ | Evaluation Dataset* | Augmentation Method | |||
|---|---|---|---|---|---|
| None | Standard | Histogram Eq | CycleGAN | ||
| Kidney | in-distribution (contrast CT) | 0.051 ± 0.016 | 0.038 ± 0.010 | 0.041 ± 0.0123 | |
| out-of-distribution (non-contrast CT) | 0.334 ± 0.076 | 0.450 ± 0.126 | 0.361 ± 0.071 | ||
| Liver | in-distribution (contrast CT) | 0.047 ± 0.007 | 0.047 ± 0.008 | 0.043 ± 0.010 | |
| out-of-distribution (non-contrast CT) | 0.583 ± 0.247 | 0.107 ± 0.030 | 0.090 ± 0.026 | ||
| Spleen | in-distribution (contrast CT) | 0.112 ± 0.014 | 0.104 ± 0.068 | 0.083 ± 0.051 | |
| out-of-distribution (non-contrast CT) | 1.487 ± 0.642 | 0.355 ± 0.0657 | 0.311 ± 0.060 | ||
| All Averaged | in-distribution (contrast CT) | 0.070 | 0.063 | 0.046 | 0.053 |
| out-of-distribution (non-contrast CT) | 0.801 | 0.304 | 0.254 | 0.178 | |
Average volume estimation error and standard deviation of 5 cross-validation experiments are shown. Lower volume estimation error indicates higher performance, and bold numbers represent the best result in each line.
Figure 3Examples of segmentations. Original CT and expert segmentation are shown in the first and second columns and CycleGAN and standard augmented training results are shown in the third and fourth columns, respectively. For detailed comments see main text.
Numbers of images in each dataset.
| Dataset | N in-Distribution Total | Train/Val/Test | N Out-of-Distribution Test | Typical Dimensions |
|---|---|---|---|---|
| Kidney NIH | 66 | 50/3/13 | 10 | 512 × 512 × 220 |
| Liver DataDecathlon | 231 | 179/9/43 | 10 | 512 × 512 × 500 |
| Spleen DataDecathlon | 40 | 30/2/8 | 10 | 512 × 512 × 90 |
Figure 4Overview of the experimental setup.
Figure 5Basic architecture of the U-Net used. We inserted a strided convolution (green) as the first layer (stride 2) with a large kernel (7 × 7 × 7). This modification is complemented by a transposed convolution in the last layer (yellow). This reduces greatly the need for feature map memory and significantly increases the maximum input size. Curved arrows denote residual connections. Note that there is no skip connection at the highest level.