Deep Learning Techniques for Medical Image Segmentation: Achievements and Challenges

前言:
該篇文章較爲全面但稍偏簡單的介紹醫學圖像分割的常見數據集、各種神經網絡,以及常見的訓練技巧等問題。
一、重點摘錄

  1. 2.5D approaches are inspired by the fact that 2.5D has the richer spatial information of neighboing pixels wiht less computational costs than 3D.
  2. The 3D network is trained to predict the label of a central voxel according to the content fo surrounding 3D patches.
  3. To address the deimensionality issue and reduce the processing time, Dou et al. in [23] proposed to utilize a set of 3D kernels that shared the weights spatially, which helped to reduce the number of parameters.
  4. The authors in [66] applied a hierarchical coarse-to-fine strategy that significantly improved the segmentation results of small organs.
  5. Focal FCN
    Zhou et al. [93] proposed to apply the focal loss on the FCN to reduce the number of false positives occurred due to the unbalanced ration of background and foreground pixels in medical images. In this structure, the FCN was used to produce the intermediate segmentation results and then the focal FCN was used to remove the false positives.
  6. In an attempt to enpower the U-Net structure with richer spatial information, Cicek et al. developed a 3D U-Net model [17]. The average IoU (i.e., Intersection over Union) of 0.863 demonstrated that network was able to find the whole 3D volume from few annotated slices successfully by using a weighted softmax loss function.
  7. The deeper networks not only suffer from gradient vanishing problem but also face the more pressing issue of degradation [33]. It means with the depth increasing, the accuracy gets saturated and then rapidly degrades. To take advantage from deeper network structure, He et al. [33] introduced the residual networks which were initially developed for natural image segmentation on 2D images.
  8. Data Augmentation
    references papers: [30] [52]
  9. Class Imbalance
    A popular solution for this issue is sample re-weighting, where a higher weight is applied to the foreground patches during training [16]. Automatic modification of sample re-weighting has been developed by using Dice loss layer and Dice coefficent [44,62,95]. Yet, the effectiveness is limited in dealing with extreme class imbalance [93]. Patch-wise training combind with patch selection can help to address the issue of class imbalance [18]. Fundamentally, during the creation of the training set, a control mechanism can be set to have a balanced number of pathces from the background and foreground [52]. Another approach to deal with this issue is sampled loss in which the loss will not be calculated for the entire image and just some random pixels(areas) will be selected for loss calculation [56].

二、肝臟分割相關的數據集

Dataset name Dataset size Dimension Modality Used in
SLiver07 30 samples 3D CT [23,37]
3DIRCADb 20 samples 3D CT [16]

三、讀文章的時候遇到的幾個問題
1、什麼是濾波器,爲什麼需要濾波器?
【參考博客】圖像卷積與濾波的一些知識點
2、什麼是感受野?
【參考博客】深度學習之感受野的計算和舉例
3、什麼是激活函數,爲什麼需要激活函數?
【參考博客】深度學習中【激活函數】存在的意義是什麼?

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章