Deep Learning Techniques for Prostate Cancer Analysis and Detection: Survey of the State of the Art

J Imaging 2025 Deep Learning 7 Explanations View Original
Original Paper (PDF)

Unable to display PDF. Download it here or view on PMC.

Plain-English Explanations
Pages 1-2
Why Prostate Cancer Demands Better Detection Tools

Prostate cancer is the second leading cause of cancer-related death in men in the United States, following only lung cancer. The American Cancer Society projected approximately 299,010 new cases and 35,250 deaths in 2024 alone. African American men and men of Caribbean descent face a significantly higher risk compared to other racial groups.

Traditional detection has relied on manual examination by pathologists who visually inspect tissue and imaging samples. This process is time-consuming, error-prone, and carries a risk of unnecessary biopsies caused by the limits of human visual interpretation.

Medical images of prostate lesions present specific challenges: blood vessels and image noise interfere with lesion detection, contrast is often low in key tissue zones, and lesions vary widely in size, shape, and color. These factors make distinguishing benign from malignant tissue genuinely difficult.

Recent advances in machine learning (ML) and deep learning (DL) have opened the door to automated, computer-aided diagnosis systems that can assist pathologists, reduce errors, and enable earlier, more accurate detection of prostate cancer.

TL;DR: Prostate cancer is a major cause of male cancer death worldwide, and limitations of manual image inspection have driven the need for AI-based detection tools.
Pages 2-5
From Raw Images to Diagnosis: The Detection Pipeline

Automated prostate cancer detection follows a multi-stage pipeline. Image pre-processing comes first, involving contrast and intensity normalization, histogram equalization, binarization, and morphological operations such as erosion and dilation to clean up images and prepare them for analysis.

Image segmentation then isolates regions of interest, separating suspected lesion areas from normal tissue. This step is critical because it directly affects how accurately features can be extracted from the lesion itself.

Multiple segmentation approaches have been explored, ranging from classical methods like edge detection, thresholding, and region growing, to more advanced intelligence-based methods including artificial neural networks, fuzzy logic, and deep learning architectures.

After segmentation, feature extraction pulls meaningful measurements from lesion images using methods such as Gabor filters, Fourier descriptors, and gradient-based features. Finally, classification algorithms determine whether the identified region is benign or malignant.

TL;DR: Automated prostate cancer detection pipelines move through pre-processing, segmentation, feature extraction, and classification to convert raw medical images into diagnostic decisions.
Pages 7-12
CNN Architectures: From AlexNet to ResNet

Convolutional neural networks (CNNs) form the backbone of modern deep learning-based prostate cancer detection. Early architectures like AlexNet demonstrated that deeper networks with GPU acceleration could dramatically outperform earlier models, establishing a new era in image classification.

VGG networks extended this depth to 16 or 19 layers using simple, uniform 3x3 filters, achieving strong results in image classification and lesion detection. Their straightforward architecture made them relatively interpretable for clinical applications, though their approximately 140 million parameters made them computationally demanding.

Inception (GoogLeNet) introduced parallel multi-scale convolutions within a single layer, allowing the model to capture features at multiple resolutions simultaneously while reducing parameter count from 40 million to just 5 million through global average pooling. This made it highly efficient without sacrificing accuracy.

ResNet solved the vanishing gradient problem that plagued very deep networks by introducing shortcut connections, also called skip connections, that allow information to bypass layers. Despite being 20 times deeper than AlexNet, ResNet requires less computation than VGG and has been successfully applied to Gleason grading, lesion detection, and MRI-based segmentation.

TL;DR: Classic CNN architectures like AlexNet, VGG, Inception, and ResNet laid the groundwork for deep learning prostate cancer detection, each addressing limitations of earlier designs.
Pages 12-17
Advanced Architectures: Attention, Transformers, and Hybrid Models

DenseNet connects every layer directly to every subsequent layer within dense blocks, improving gradient flow and feature reuse. Xception replaces standard convolutions with depthwise separable convolutions, achieving greater efficiency and fine-grained feature extraction useful for differentiating cancerous from non-cancerous tissue.

Attention mechanisms such as the Convolutional Block Attention Module (CBAM) and the Residual Attention Neural Network (RAN) allow models to focus on the most diagnostically relevant regions of an image while suppressing irrelevant background. These models also produce visual attention maps that help clinicians understand and trust the AI's decisions.

Transformer-based networks, including vision transformers (ViTs), use self-attention to capture long-range relationships across entire images rather than just local regions. They have demonstrated superior performance in whole-slide image analysis and Gleason grading but require large datasets and substantial computational resources.

Hybrid models like CSWin U-Net, ProstAttention-Net, and AMTNet combine CNN feature extraction with transformer-based global context modeling. The PCDM model, which pairs ResNet50 with Faster R-CNN, achieved 95.2% accuracy, 97.4% sensitivity, and 97.1% specificity for lesion detection on prostate MRI.

TL;DR: More advanced architectures incorporating attention mechanisms, transformers, and hybrid designs achieve state-of-the-art performance while also improving the interpretability that clinicians need.
Pages 21-23
How Well Do These Models Actually Perform?

Deep learning models applied to multiparametric MRI (mpMRI) have demonstrated strong diagnostic performance. One study using 400 patients achieved AUC values of 0.89 for distinguishing cancerous from non-cancerous tissue and 0.78 for separating high-risk from low-risk prostate disease.

For histopathological Gleason grading, an InceptionV3-based model achieved 92% accuracy distinguishing non-atypical from malignant regions, with 90% sensitivity and 93% specificity on 96 prostate biopsies. A deep residual CNN achieved 91.5% coarse-level and 85.4% fine-level classification accuracy.

Segmentation studies produced encouraging results: a U-Net-based model applied to 312 patients reported 96% sensitivity and 88% specificity. The ProGNet model, trained on 805 cases across 29 institutions, required only 35 seconds per patient compared to 10 minutes for a radiologist, highlighting potential efficiency gains.

Eff4-Attn, combining EfficientNet-B4 with efficient channel attention, achieved 96.18% cancer detection accuracy and 94.86% Gleason grade accuracy on histopathological whole-slide images. The ProViCNet 3D model achieved an AUROC of 0.907 for clinically significant prostate cancer classification using multiparametric MRI.

TL;DR: Leading deep learning models achieve accuracy rates above 90% for Gleason grading and cancer detection, with some also dramatically reducing the time required for clinical image analysis.
Pages 2-4
The Key Challenges Holding Back Clinical AI

Several major challenges remain before deep learning prostate cancer detection can be routinely used in clinical practice. Imaging variability is a fundamental problem: MRI protocols differ between institutions, scanner strengths vary from 1.5T to 3T, and acquisition parameters are inconsistent, all of which introduce variability that undermines model generalizability.

Data scarcity and annotation inconsistency create a second major barrier. Medical imaging datasets are often small compared to those used in general computer vision. Multiple radiologists annotating the same images frequently disagree, producing inconsistent ground truth labels that degrade training quality.

Lesion heterogeneity compounds these difficulties. Prostate lesions in the transitional zone particularly can appear similar to benign conditions like benign prostatic hyperplasia or prostatitis, and variations in lesion size, shape, and internal composition cause overlapping imaging signatures that confuse both human and algorithmic readers.

Explainability is a critical clinical adoption barrier. Many powerful models function as black boxes whose reasoning cannot be inspected. Integrating techniques like Grad-CAM, saliency maps, and attention visualization is essential to help clinicians verify that AI models focus on clinically relevant features rather than spurious artifacts.

TL;DR: Imaging variability, small annotated datasets, lesion heterogeneity, and the need for explainable AI are the primary obstacles preventing deep learning models from moving into routine clinical practice.
Pages 1, 20, 21
Transfer Learning and the Path to Clinical Deployment

Transfer learning has emerged as the most practical strategy for overcoming data scarcity in medical imaging. By starting with networks pre-trained on large general image databases like ImageNet and then fine-tuning them on medical data, researchers can achieve strong performance even with limited labeled prostate cancer cases.

Multimodal fusion approaches that combine T2-weighted MRI, diffusion-weighted imaging (DWI), and apparent diffusion coefficient (ADC) maps together provide more information than any single imaging sequence alone. Models like ProViCNet and AMTNet that integrate these modalities have shown particularly strong clinical performance.

The review highlights that models must be validated across diverse patient populations and multiple imaging centers before clinical deployment. Protocol harmonization and standardized annotation guidelines across institutions would significantly improve the quality of training data available.

If these challenges are addressed, AI-assisted prostate cancer diagnosis holds the potential to reduce missed diagnoses, lower the rate of unnecessary biopsies, enable earlier detection, and support more personalized treatment planning, ultimately improving survival outcomes for patients worldwide.

TL;DR: Transfer learning and multimodal imaging fusion are the most promising paths forward, but clinical deployment requires multi-center validation and standardized protocols to ensure models work reliably across diverse settings.
Citation: Open Access, . Available at: PMC12387416.