Biomedical image analysis: Segmentation, datasets, metrics and loss functions

Biomedical image analysis

The success of deep learning in image analysis has encouraged the biomedical imaging researchers to investigate its potential in analyzing various medical modalities to aid clinicians in faster diagnosis and treatment of diseases or infections like the on-going pandemic of SARS-CoV-2 (COVID-19). Following the deep learning usecases, the implication of classification can ascertain the presence or absence of disease in some modality e.g. the ground glass opacification (GGO) in the lungs via CT imaging. Furthermore, in localization, normal anatomy can be identified e.g. lungs in the CT or X-ray imaging, and later segmentation can generate refined boundaries around the GGOs to understand its impact on the anatomical structures for further analysis. Since, segmentation is an extension to classification, localization or detection, it offers very rich information about the disease and infected regions. With this interest, many architectures have been proposed for the segmentation of the targeted regions from vivid modalities. In addition, segmentation is the most widely researched application of deep learning in biomedical image analysis, where U-Net based segmentation architectures have gained significant popularity to develop computer-aided diagnosis (CAD) systems.

More details can be found in the following paper:

Punn, Narinder Singh and Sonali Agarwal. Modality specific U-Net variants for biomedical image segmentation: a survey. Artificial Intelligence Reviews (2022). https://doi.org/10.1007/s10462-022-10152-1

Summary of popular datasets for biomedical image segmentation

DatasetDescriptionURL
ISBI 2012Electron microscopy cell slides for cell segmentationhttp://brainiac2.mit.edu/isbi_challenge/
ISBI2D and 3D videos of moving cells for cell trackinghttp://celltrackingchallenge.net/
KDSB 2018Histopathological cell images for nucleihttps://www.kaggle.com/c/data-science-bowl-2018
PanNukeHistopathological slides for nuclei segmentationhttps://jgamper.github.io/PanNukeDataset/
DRIVERetinal fundus images for vesselhttps://drive.grand-challenge.org/
STARERetinal fundus imaging for blood vesselhttp://cecas.clemson.edu/%7Eahoover/stare/
CHASE_DB1Retinal fundus imaging for blood vesselhttps://blogs.kingston.ac.uk/retinal/chasedb1/
LiTSLiver CT scans for tumor segmentationhttps://competitions.codalab.org/competitions/17094
LIDC-IDRILung CT scans for cancer segmentationhttps://wiki.cancerimagingarchive.net/display/Public/LIDC-IDRI
LUNA 2016CT scans for lung nodule segmentationhttps://luna16.grand-challenge.org/
xVertSegCT spine images for vertebra segmentationhttp://lit.fe.uni-lj.si/xVertSeg/
SIIM-ACRChest X-rays for pneumothorax segmentationhttps://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/data
ISICDermoscopy images for skin lesion segmentationhttps://www.isic-archive.com/
BraTS 2012 – 2020MRI modalities (T1, T2, FLAIR) for brain tumor segmentationhttp://braintumorsegmentation.org/
ISLESMRI scans for stroke lesion segmentationhttp://www.isles-challenge.org/
ICCVBProstate MRI and retinal fundus imaginghttp://i2cvb.github.io/
IBSRRepository of MRI imaginghttps://www.nitrc.org/projects/ibsr
ACDC 2017MRI imaging for cardiac diagnosis and segmentationhttps://www.creatis.insa-lyon.fr/Challenge/acdc/index.html
PROMIS 2012Prostate MRI image segmentationhttps://promise12.grand-challenge.org/
Medical Segmentation DecathlonMRI and CT modalities for tumor segmentation in various organs like liver, brain, lung, etc.http://medicaldecathlon.com/
OASISMRI and PET images for aging analysis and segmentationhttps://www.oasis-brains.org/
Head-Neck-PET-CTPET and CT imaging for tumor segmentationhttps://wiki.cancerimagingarchive.net/display/Public/Head-Neck-PET-CT
BUSISUltrasound imaging for breast tumor segmentationhttp://cvprip.cs.usu.edu/busbench/
BUSIBreast ultrasound scans for tumor segmentationhttps://scholar.cu.edu.eg/?q=afahmy/pages/dataset

Summary of performance metrics for biomedical image segmentation

Summary of performance metrics for BIS in terms of number of true positive (TP), true negative (TN), false positive (FP) and false negative (FN), predicted mask (\mathcal{P}) and ground truth (\mathcal{G}), \mathcal{H}(X,Y) is the directed AHD from X to Y with d as euclidean distance, \mathcal{V}_p and \mathcal{V}_g refer to the volumes of generated and reference segmentation.

Summary of performance metrics for biomedical image segmentation

In BIS, mostly the datasets are imbalanced i.e. the number of pixels/voxels concerning the target region (region of interest) are relatively less than the dark pixels/voxels (background region), due to which the metrics such as accuracy, which are best suited for a balanced distribution of data samples, are not recommended for BIS evaluation of the models. Among the shown metrics intersection-over-union (IoU or Jaccard index) and dice similarity coefficient are the most widely used evaluation metrics in BIS for various modalities. More details can be found here.

Summary of popular loss functions for biomedical image segmentation

Below table shows the summary of loss functions for biomedical image segmentation with respect to the predicted mask (\mathcal{P}) and ground truth mask (\mathcal{G}), \alpha and \gamma as constants, h is Hausdorff distance and d is the operator for Euclidean distance. More details can be found here.

Loss functions
Summary of loss functions for biomedical image segmentation

Leave a Reply