Medical Image Segmentation Models: A Comparative Guide for Clinical Deployment
Medical image segmentation is the process of partitioning imaging data such as CT, MRI, ultrasound, or histology slides into meaningful anatomical or pathological regions. For researchers and developers working in clinical deployment, the central decision is selecting a model architecture that balances segmentation accuracy, computational cost, training data requirements, and integration complexity. This article compares established and emerging segmentation models including U-Net variants, nnU-Net, Transformer-based architectures, and hybrid approaches, with emphasis on practical deployment considerations drawn from peer-reviewed evidence.
Scope and Reader Context
This guide serves students, researchers, analysts, and life-science professionals who need to select and implement segmentation models for medical imaging tasks. The comparison focuses on models with published performance data across multiple modalities including CT, MRI, ultrasound, and histopathology. Deployment considerations include hardware constraints, annotation availability, inference speed requirements, and regulatory or clinical workflow integration. The evidence base draws from peer-reviewed studies published between 2021 and 2026, covering both established architectures and recent innovations.
At a Glance: Model Comparison for Deployment Decisions
The following table summarizes key characteristics of representative segmentation models discussed in this guide. Performance metrics are reported from the cited studies and should be interpreted within their specific clinical contexts.
| Model | Architecture Type | Reported Performance | Resource Requirements | Best Suited For |
|---|---|---|---|---|
| U-Net (classic) | CNN encoder-decoder | DSC 0.61 in DLBCL PET/CT study | Moderate GPU memory, manual configuration | Baseline comparisons, established workflows |
| nnU-Net | Self-configuring CNN | DSC 0.83 in DLBCL PET/CT study | Automated pipeline, higher compute during configuration | Out-of-the-box deployment, multi-center generalization |
| Swin-Unet | Pure Transformer | DSC 0.94-0.96 in pancreatic CT study | Extended training time, attention mechanism overhead | Multi-structure segmentation with global context needs |
| Attention U-Net | CNN with attention gates | DSC 0.71 in DLBCL PET/CT study | Moderate, similar to U-Net | Tasks benefiting from focused feature selection |
| SC-Unext | Lightweight CNN | DSC 75.29% on BUSI, 92.72 ms CPU inference | 1.46M parameters, 2.13 GFlops | Resource-constrained environments, real-time ultrasound |
| MetaSwin | Meta vision transformer | DSC 79.12% on BTCV, 300 min training | 15.4M parameters | Faster Transformer training with competitive accuracy |
| CMT-BUSNet | Hybrid CNN-Mamba-Transformer | DSC 0.9037 on BUS-BRA | Higher complexity, built-in explainability | Breast ultrasound with interpretability requirements |
Core Principles of Segmentation Model Selection
Understanding the U-Net Legacy
The U-shaped architecture with skip connections has become the standard baseline for medical image segmentation. The original design uses convolutional encoders to capture context and decoders to restore spatial resolution, with skip connections preserving fine details. Studies consistently show that U-Net variants remain competitive, but their performance depends heavily on configuration choices. In a three-way comparison of classic U-Net, Attention U-Net, and nnU-Net for lymphoma lesion segmentation on PET/CT, the manually configured classic U-Net achieved a mean Dice Similarity Coefficient of 0.61, while nnU-Net reached 0.83 on the same 217 annotated whole-body scans. This gap illustrates that architecture alone does not determine outcomes, the configuration pipeline matters substantially.
The Rise of Self-Configuring Frameworks
nnU-Net represents a paradigm shift by automating pipeline decisions including preprocessing, network topology, training strategy, and postprocessing. The same DLBCL study found nnU-Net achieved higher mean DSC (0.83 versus 0.61 and 0.71), Intersection over Union (0.71 versus 0.52 and 0.62), sensitivity (0.85 versus 0.56 and 0.72), and specificity (0.94 versus 0.87 and 0.92) compared to manually tuned U-Net and Attention U-Net. Critically, nnU-Net also showed lower performance variability across cross-validation folds, indicating greater stability. For deployment teams without deep architecture expertise, nnU-Net reduces the risk of suboptimal manual configuration.
Transformer Architectures and Global Context
Transformers address a known limitation of convolutional networks, the inability to model long-range dependencies effectively. Swin-Unet, a pure Transformer with U-shaped encoder-decoder design, demonstrated that tokenized image patches can be processed through hierarchical Swin Transformer blocks with shifted windows for local-global feature learning. In a multi-center pancreatic segmentation study of 1,968 CT scans from six institutions, Swin-Unet outperformed all other models including U-Net, nnU-Net, Attention-based Residual U-Net, DeepLabV3+, and SegNet, achieving Dice scores from 0.94 to 0.96 with Hausdorff Distance at the 95th percentile as low as 2.9 mm. Transformer and attention-enhanced models significantly outperformed classical CNNs, particularly for ducts and vascular anatomy.
Hybrid CNN-Transformer Designs
Hybrid architectures attempt to combine the local feature extraction strength of CNNs with the global context modeling of Transformers. TransUNet uses a CNN feature map as input to a Transformer encoder, then combines encoded features with high-resolution CNN maps in the decoder for precise localization. MixFormer integrates global and local information during downsampling with multiscale spatial-aware fusion and mixed multibranch dilated attention modules. On the Synapse dataset, MixFormer achieved a mean DSC of 82.64% and mean Hausdorff distance of 12.67 mm. These hybrids often outperform pure architectures but introduce additional design complexity.
Practical Workflow for Model Selection and Deployment
Step 1: Define the Clinical Task and Performance Targets
Begin by specifying the anatomical structures or pathologies to segment, the imaging modality, and the clinical use case. Performance targets should include volumetric metrics such as Dice Similarity Coefficient and boundary metrics such as Hausdorff Distance. For tasks requiring precise boundary delineation, such as surgical planning, boundary metrics carry more weight than for tasks focused on volume estimation. The pancreatic multi-structure study demonstrated that different structures present different challenges, with small tortuous structures like ducts and vessels requiring models with strong global context understanding.
Step 2: Assess Available Data and Annotation Resources
Data availability often determines architecture choice. Supervised deep learning methods require sufficient labeled training data, and insufficient annotations lead to overfitting, low accuracy, and poor generalization. Medical image annotation is labor-intensive and requires professional expertise. If labeled data is limited, consider semi-supervised approaches that leverage unlabeled data through consistency constraints, or deformable model frameworks that are less dependent on training dataset size. Deep-DM, a learning-guided deformable model, demonstrated feasibility for segmenting left ventricle and fetal head in ultrasound, left atrium in MRI, and bladder in CT using limited training volumes.
Step 3: Evaluate Computational Resources
Compute constraints affect both training and inference. Lightweight models such as SC-Unext, with 1.46M parameters and 2.13 GFlops, achieved 92.72 ms inference speed per instance on CPU-only devices, making them suitable for resource-constrained clinical environments. At the other extreme, Transformer-based models require substantial GPU memory and extended training time. MetaSwin was designed specifically to address the extended training duration of SwinUNETR, achieving a Dice score of 79.12% on the BTCV dataset in 300 minutes compared to 467 minutes for SwinUNETR, with fewer parameters (15,407,384 versus 15,703,304).
Step 4: Consider Generalization Across Institutions
Models trained on data from a single institution may fail on external cohorts due to differences in imaging hardware and acquisition protocols. The pancreatic study included scans from six medical institutions to cover a large range of imaging hardware and protocols, with external validation on an independent cohort of 536 scans. nnU-Net proved highly generalizable in this study, achieving second place behind Swin-Unet. For deployment across multiple sites, prioritize models with demonstrated external validation performance.
Step 5: Plan for Uncertainty Quantification
Segmentation models produce probability maps, but these do not directly indicate confidence in the segmentation output. Uncertainty estimates can serve as potential diagnostic indicators. A study using the TotalSegmentator model with test-time augmentation across 14 abdominal organs found uncertainty estimates were significantly higher in pathologic tissue versus healthy tissue across the pancreas, liver, colon, and kidneys. Receiver operating characteristic analysis showed fair voxel-level pathology detection performance with AUC values from 0.7097 for pancreas to 0.7605 for left kidney. For clinical deployment, uncertainty maps can flag regions requiring radiologist review.
Options and Tradeoffs Across Model Families
Convolutional Neural Networks
Classic CNNs remain the most established approach with extensive documentation and tooling. Their inductive biases from convolution operations make them efficient for local feature extraction, but they lack explicit long-range dependency modeling. The missed diagnosis rate for small regions of interest remains high in CNN-based medical image segmentation, attributed to small ROIs and limited context information. Multi-scale contextual dependency frameworks that aggregate local features with global dependencies in both spatial and channel dimensions have shown state-of-the-art performance on liver tumor segmentation with 91.18% sensitivity, COVID-19 lung infection with 75.73% sensitivity, and retinal vessel detection with 82.68% sensitivity.
Self-Configuring Pipelines
nnU-Net automates the entire pipeline including preprocessing, architecture configuration, training, and postprocessing. This reduces the expertise barrier for deployment teams. The DLBCL study demonstrated nnU-Net's superiority over manually configured models across all metrics, with higher mean DSC, IoU, sensitivity, and specificity, plus lower variability. For teams without specialized deep learning engineers, nnU-Net offers a reliable default choice. However, the automated configuration process requires computational resources for the configuration phase.
Pure Transformers
Swin-Unet demonstrated that pure Transformer architectures can outperform convolutional and hybrid approaches for multi-organ segmentation. The shifted window mechanism enables efficient global context modeling while maintaining computational tractability. However, Transformer-based architectures generally require large-scale datasets to train properly, and medical imaging datasets are typically smaller than natural image datasets. The Medical Transformer (MedT) addressed this with a Gated Axial-Attention model and Local-Global training strategy, achieving better performance than convolutional and other Transformer architectures on three medical datasets.
Lightweight and Efficient Models
For deployment in resource-constrained environments, lightweight models offer practical advantages. SC-Unext, inspired by cellular apoptosis and division mechanisms, reduced model parameters and computational consumption while improving segmentation performance for breast ultrasound tumors. The model achieved Dice scores of 75.29% and accuracy of 97.09% on the BUSI dataset, with inference speed of 92.72 ms on CPU-only devices. LW-CTrans, a lightweight hybrid network combining CNN and Transformer strengths, achieved competitive Dice scores on stroke lesion, pancreas cancer, and brain tumor segmentation with parameters ranging from 2.08M to 2.21M.
Foundation Models and Generalist Approaches
The Segment Anything Model (SAM) represents the first foundational model in general image segmentation with outstanding generalization across natural image tasks. However, medical images differ fundamentally from natural images in modality characteristics, semantic structure, and clinical objectives. A review of SAM in medical imaging identified five key challenges: data gap, dimensionality barrier, precision bottleneck, semantic disconnect, and deployment hurdles. While SAM shows promise, systematic adaptation strategies are still under development, and task-specific models often remain more reliable for clinical use.
Observations and Measurements for Model Evaluation
Volumetric Metrics
Dice Similarity Coefficient measures the overlap between predicted and ground truth segmentations. Reported values vary widely by task and structure. In the DLBCL study, nnU-Net achieved a mean DSC of 0.83 compared to 0.61 for classic U-Net and 0.71 for Attention U-Net. In pancreatic segmentation, Swin-Unet achieved Dice scores from 0.94 to 0.96. For hepatic structures in whole-slide histology images, nnU-Net variants achieved Dice scores of 0.968 for lobules, 0.795 for central veins, 0.895 for hepatic arteries, 0.665 for portal veins, and 0.694 for bile ducts. These differences highlight that performance is structure-specific and should not be compared across unrelated tasks.
Boundary Metrics
Hausdorff Distance at the 95th percentile (HD95) measures the maximum distance between predicted and ground truth boundaries, capturing clinically relevant errors that volumetric metrics may miss. In the pancreatic study, Swin-Unet achieved HD95 as low as 2.9 mm. For breast ultrasound, CMT-BUSNet achieved HD95 of 10.07 pixels compared to 13.54 pixels for nnU-Net v2, despite nnU-Net having marginally higher DSC. When boundary precision matters for surgical planning or radiation therapy, prioritize models with strong boundary metrics.
Sensitivity and Specificity
Sensitivity measures the proportion of true positives correctly identified, while specificity measures true negatives. In the DLBCL study, nnU-Net achieved 0.85 sensitivity and 0.94 specificity. For lung tumor detection at CT, an ensemble 3D U-Net model trained on 1,504 CT scans achieved 92% sensitivity and 82% specificity. These metrics matter for screening applications where missed lesions have serious consequences.
Computational Efficiency
Training time, inference speed, and parameter count determine practical deployability. MetaSwin reduced training time from 467 to 300 minutes compared to SwinUNETR while improving Dice score. SC-Unext achieved 92.72 ms inference on CPU. LW-CTrans maintained competitive accuracy with 2.08M to 2.21M parameters. For clinical deployment, consider whether inference must run on hospital hardware or cloud infrastructure.
Records and Documentation for Reproducibility
Dataset Documentation
Record the imaging modality, acquisition protocol, patient demographics, and annotation protocol for each dataset used. The FAIR Guiding Principles provide a framework for making data findable, accessible, interoperable, and reusable. For clinical deployment, document data provenance and any preprocessing steps applied. The NCBI Data Resources and EMBL-EBI Training offer guidance on data standards and sharing practices.
Model Configuration Records
Document the exact architecture configuration, hyperparameters, training strategy, and data augmentation pipeline. nnU-Net automates this documentation through its self-configuring protocol, which is an advantage for reproducibility. For manually configured models, maintain detailed records of all configuration decisions and their rationale.
Validation and Testing Records
Record internal validation results from cross-validation and external validation results from independent cohorts. The pancreatic study used 3-fold cross-validation for internal validation and an independent external cohort of 536 scans for external validation. Document the statistical tests used for comparison, such as Wilcoxon signed-rank tests with Bonferroni correction for multiple comparisons.
Version Control and Model Registry
Maintain version control for both code and trained models. Record the training data version, code version, and model weights for each deployment. This enables auditing and rollback if issues are detected in clinical use.
Common Failure Patterns and Mitigation Strategies
Data Scarcity and Overfitting
Insufficient labeled training data leads to overfitting, low accuracy, and poor generalization. Medical image annotation is labor-intensive and requires professional expertise. Mitigation strategies include semi-supervised learning with consistency constraints on unlabeled data, deformable model frameworks less dependent on dataset size, and text-augmented approaches that incorporate medical text annotations to compensate for image data quality deficiencies. LViT demonstrated superior performance in both fully-supervised and semi-supervised settings using text information to guide pseudo label generation.
Small Structure Segmentation Failure
Small regions of interest are frequently missed by segmentation models. The multi-scale contextual dependency framework was designed specifically to reduce missed diagnosis rates for small ROIs by enhancing representative capability in deep layers and explicitly learning global contextual dependencies. LW-CTrans achieved the best performance for small lesion segmentation among 16 state-of-the-art methods by projecting 3D feature maps onto 2D subspaces to handle small objects.
Domain Shift Across Institutions
Models trained on data from one institution often fail on data from another due to differences in imaging hardware and acquisition protocols. The pancreatic study addressed this by including data from six institutions and validating on an independent external cohort. For deployment across multiple sites, use models with demonstrated external validation performance and consider fine-tuning on local data when feasible.
Class Imbalance
In histology images, small vascular structures may be underrepresented compared to larger structures. The weight-boosted nnU-Net framework used an adaptive performance-based weight adjustment mechanism to manage class imbalances and improve detection of smaller vascular structures. For tasks with significant class imbalance, consider specialized loss functions or weighting strategies.
Computational Resource Constraints
Transformer-based models may be impractical for deployment in resource-constrained environments. Lightweight models such as SC-Unext and LW-CTrans offer alternatives with acceptable accuracy and substantially lower computational requirements. Evaluate the deployment environment early in the model selection process.
Limitations and Interpretation Boundaries
Performance Metrics Are Task-Specific
Dice scores and other metrics reported in the literature are not directly comparable across different tasks, modalities, and structures. A Dice score of 0.83 for lymphoma lesions on PET/CT represents different clinical significance than a Dice score of 0.968 for hepatic lobules in histology. Always evaluate models on task-specific validation data instead of relying on published benchmarks from unrelated tasks.
Internal Validation Limitations
Some studies report internal validation folds that are image-disjoint but not guaranteed to be patient-disjoint. This can lead to optimistic performance estimates due to data leakage. When evaluating published results, check whether patient-level splitting was used. The CMT-BUSNet study explicitly noted this limitation, stating that internal validation folds were image-disjoint but not guaranteed to be patient-disjoint.
Ground Truth Variability
Manual segmentation is subject to physician variability. The DLBCL study used a consensus process between two expert annotators to generate final ground-truth segmentations. When deploying segmentation models, consider how ground truth variability affects performance measurement and clinical acceptance.
Physics-Based Alternatives
Not all segmentation approaches are deep learning based. A porosity model using image greyscale intensity to infer voxel partial volumes and formulate a porous medium analogy demonstrated effectiveness for extracting cerebral aneurysms, nasal cavities, and aortic arch from CT images. This physics-based approach may be appropriate for specific applications where deep learning training data is unavailable.
Safety and Regulatory Context
Clinical Validation Requirements
Models intended for clinical use require validation on appropriate clinical datasets. The lung tumor detection study used CT simulation scans and clinical lung tumor segmentations from radiotherapy plans, with evaluation on internal and external test sets from two affiliated medical centers. For clinical deployment, document the validation evidence and any limitations in the patient population studied.
Data Privacy and Sharing
Medical imaging data contains protected health information. The NIH Genomic Data Sharing Policy provides a framework for data sharing that balances privacy concerns with research utility. When using public datasets or sharing models trained on clinical data, ensure compliance with applicable privacy regulations and institutional policies.
Explainability and Interpretability
Clinical acceptance of segmentation models requires understanding of model behavior. CMT-BUSNet incorporated built-in explainability with quantitative validation of attribution faithfulness and uncertainty-error correlation. Uncertainty estimates from segmentation models can serve as potential diagnostic indicators, with significantly higher uncertainty in pathologic tissue versus healthy tissue across multiple organs. For clinical deployment, consider models that provide uncertainty information or explainability features.
Professional Escalation Criteria
Segmentation models should support clinical decision-making instead of replace it. Establish clear criteria for when model output requires human review. Uncertainty maps can flag regions requiring radiologist review. For tasks where segmentation errors could affect patient safety, such as radiation therapy planning, implement quality checks and escalation procedures. If model performance on local validation data falls below acceptable thresholds, escalate to clinical and technical teams for investigation.
Frequently Asked Questions
What is the difference between U-Net and nnU-Net?
U-Net is a convolutional neural network architecture with an encoder-decoder structure and skip connections. nnU-Net is a framework that automates the entire segmentation pipeline, including preprocessing, network topology configuration, training strategy, and postprocessing. In a direct comparison on lymphoma lesion segmentation, nnU-Net achieved a mean Dice Similarity Coefficient of 0.83 compared to 0.61 for a manually configured classic U-Net, demonstrating that automated configuration can substantially improve performance.
When should I choose a Transformer-based model over a CNN?
Transformer-based models excel at modeling long-range dependencies and global context, which is particularly important for segmenting small or tortuous structures such as ducts and vascular anatomy. In a multi-center pancreatic segmentation study, Swin-Unet outperformed all CNN-based models with Dice scores from 0.94 to 0.96. However, Transformers generally require more training data and computational resources. If your dataset is small or your compute is limited, CNN-based models or lightweight hybrids may be more practical.
How much training data do I need for medical image segmentation?
The required amount of training data depends on the architecture, task complexity, and imaging modality. Supervised deep learning methods typically require sufficient labeled data, and insufficient annotations lead to overfitting and poor generalization. Semi-supervised approaches can leverage unlabeled data, and deformable model frameworks like Deep-DM are less dependent on training dataset size. For limited data scenarios, consider these alternatives instead of standard supervised training.
What metrics should I use to evaluate segmentation models?
Use a combination of volumetric and boundary metrics. Dice Similarity Coefficient measures overlap between predicted and ground truth segmentations. Intersection over Union provides a related measure. Hausdorff Distance at the 95th percentile captures boundary errors that volumetric metrics may miss. Sensitivity and specificity measure detection performance. The choice of metrics should reflect the clinical use case, with boundary metrics weighted more heavily for surgical planning and radiation therapy.
Can I deploy the same model across multiple institutions?
Generalization across institutions is a significant challenge due to differences in imaging hardware and acquisition protocols. Models trained on single-institution data may fail on external cohorts. The pancreatic study included data from six institutions and validated on an independent external cohort, with nnU-Net proving highly generalizable. For multi-site deployment, prioritize models with demonstrated external validation and consider fine-tuning on local data.
What is the Segment Anything Model and can I use it for medical imaging?
The Segment Anything Model (SAM) is the first foundational model in general image segmentation with outstanding generalization across natural image tasks. However, medical images differ fundamentally from natural images in modality characteristics, semantic structure, and clinical objectives. A review identified five key challenges for SAM in medical imaging: data gap, dimensionality barrier, precision bottleneck, semantic disconnect, and deployment hurdles. While SAM shows promise, task-specific models often remain more reliable for clinical use.
How do I handle class imbalance in segmentation tasks?
Class imbalance occurs when some structures are underrepresented in the training data. The weight-boosted nnU-Net framework used an adaptive performance-based weight adjustment mechanism to manage class imbalances and improve detection of smaller vascular structures in histology images. Consider specialized loss functions, weighting strategies, or data augmentation to address class imbalance in your specific task.
What computational resources do I need for deployment?
Resource requirements vary widely by model. Lightweight models like SC-Unext achieve 92.72 ms inference speed on CPU-only devices with 1.46M parameters and 2.13 GFlops. Transformer-based models require substantial GPU memory and extended training time. MetaSwin was designed to reduce training time, achieving competitive performance in 300 minutes compared to 467 minutes for SwinUNETR. Evaluate your deployment environment early and select models that match available hardware.
Related Bioinformatics Guides
- The Protein Data Bank (PDB): Archival Standards, Structural Validation Metrics, and Bioinformatics Integration Protocols
- Structure-Based Drug Design in Bioinformatics: Computational Pipelines, Active Site Grid Mapping, and Virtual Screening Workflows
- Ethical Considerations in Computational Genomics
- Computational Strategies in Structure Based Drug Design
- Markov State Models in Molecular Dynamics Simulations
References and Further Reading
- EMBL-EBI Training. European Bioinformatics Institute.
- NCBI Data Resources. National Center for Biotechnology Information.
- Genomic Data Sharing Policy. National Institutes of Health.
- The FAIR Guiding Principles. Scientific Data.
- Segment Anything Model for medical image segmentation: A review.. Computerized medical imaging and graphics : the official journal of the Computerized Medical Imaging Society, 2026.
- A porosity model for medical image segmentation of vessels.. International journal for numerical methods in biomedical engineering, 2022.
- 2D medical image segmentation via learning multi-scale contextual dependencies.. Methods (San Diego, Calif.), 2022.
- Shape and boundary-aware multi-branch model for semi-supervised medical image segmentation.. Computers in biology and medicine, 2022.
- MetaSwin: a unified meta vision transformer model for medical image segmentation.. PeerJ. Computer science, 2024.
- Automated Deep Learning-Based Detection and Segmentation of Lung Tumors at CT.. Radiology, 2025.
- SC-Unext: A Lightweight Image Segmentation Model with Cellular Mechanism for Breast Ultrasound Tumor Diagnosis.. Journal of imaging informatics in medicine, 2024.
- Deep-DM: Deep-Driven Deformable Model for 3D Image Segmentation Using Limited Data.. IEEE journal of biomedical and health informatics, 2024.
- Clinically reliable and stable automated segmentation of DLBCL lesions on PET/CT using self-configuring nnU-Net for robust TMTV quantification.. 2026.
- Pancreatic multi structure segmentation on CT using transformer and deep learning approaches.. 2026.
- CT-Based Liver Segmentation for Liver Surgery: A Hybrid Approach Based on 3D U-Net-ELM Model. 2026.
- CMT-BUSNet: Adaptive Fusion-Based Triple-Branch Hybrid Architecture for Explainable Breast Ultrasound Tumor Segmentation.. 2026.
- Leveraging data-driven segmentation uncertainty estimates as potential diagnostic indicators.. 2026.
- Automated segmentation of hepatic vessels and lobules in whole-slide images using U-net models.. 2026.
- Swin-Unet: Unet-like Pure Transformer for Medical Image Segmentation. ECCV Workshops, 2021.
- TransUNet: Transformers Make Strong Encoders for Medical Image Segmentation. arXiv.org, 2021.
- Medical Transformer: Gated Axial-Attention for Medical Image Segmentation. International Conference on Medical Image Computing and Computer-Assisted Intervention, 2021.
- LW-CTrans: A lightweight hybrid network of CNN and Transformer for 3D medical image segmentation.. Medical Image Analysis, 2025.
- MixFormer: A Mixed CNN-Transformer Backbone for Medical Image Segmentation. IEEE Transactions on Instrumentation and Measurement, 2025.
- Medical image segmentation by combining feature enhancement Swin Transformer and UperNet. Scientific Reports, 2025.
- LViT: Language Meets Vision Transformer in Medical Image Segmentation. IEEE Transactions on Medical Imaging, 2022.
- Visual comparison of 3D medical image segmentation algorithms based on statistical shape models. Lecture Notes in Computer Science Including Subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics, 2015.
- Generalist models in medical image segmentation: A survey and performance comparison with task-specific approaches. Information Fusion, 2026.
- Comparison Analysis of Deep Learning Models In Medical Image Segmentation. Proceedings of the 13th International Conference on Cloud Computing Data Science and Engineering Confluence 2023, 2023.
- Advances in Deep Learning Models for Resolving Medical Image Segmentation Data Scarcity Problem: A Topical Review. Archives of Computational Methods in Engineering, 2024.
- Deep learning model-based segmentation of medical diseases from MRI and CT images. IEEE Region 10 Annual International Conference Proceedings TENCON, 2021.
This article is educational and does not replace validated analysis plans, institutional policy, clinical interpretation, or specialist review.