Ai Powered Medical Imaging
Expert-defined terms from the Advanced Skill Certificate in AI for Healthcare Leaders course at London School of Planning and Management. Free to read, free to share, paired with a professional course.
Algorithmic Bias – fairness, data disparity Systematic error intro… #
Example: a lung‑nodule detector trained mainly on Caucasian patients may miss nodules in darker‑skinned individuals. Practical application includes auditing model outputs across demographic groups. Challenge: identifying hidden bias sources and obtaining balanced datasets.
Artificial Intelligence (AI) – machine learning, deep learning Com… #
In medical imaging, AI automates detection, segmentation, and classification tasks. Example: AI‑assisted chest X‑ray interpretation reduces radiologist reading time. Challenge: ensuring explainability and regulatory compliance.
Attention Mechanism – self‑attention, transformer A neural network… #
Example: Vision transformers use attention to focus on subtle tumor borders. Practical use: improving detection of small lesions. Challenge: high computational cost and need for large annotated datasets.
Autoencoder – dimensionality reduction, reconstruction Neural netw… #
Example: Denoising autoencoders clean low‑dose CT scans while preserving details. Application: reducing radiation exposure. Challenge: avoiding loss of clinically relevant features.
Batch Normalization – training stability, internal covariate shift … #
Example: Faster convergence of a CNN for MRI segmentation. Practical benefit: shorter development cycles. Challenge: careful tuning when batch sizes are small due to limited data.
Bounding Box – object detection, localization Rectangular coordina… #
Example: Bounding boxes around pulmonary nodules in CT scans for automated measurement. Application: feeding coordinates to downstream quantification pipelines. Challenge: precise placement in overlapping structures.
Convolutional Neural Network (CNN) – feature extraction, pooling D… #
Example: A CNN segments brain tumors on MRI with high Dice scores. Practical use: real‑time triage in emergency departments. Challenge: susceptibility to domain shift when scanners change.
Cross‑Validation – model evaluation, k‑fold Statistical method tha… #
Example: 5‑fold cross‑validation assesses robustness of a thyroid nodule classifier. Application: preventing overfitting on limited datasets. Challenge: computational overhead for large 3‑D volumes.
Data Augmentation – synthetic variation, rotation Process of creat… #
Example: Random flipping and elastic deformation of retinal fundus images. Practical benefit: improves generalization to unseen patients. Challenge: ensuring augmented images remain clinically plausible.
Deep Learning (DL) – hierarchical representation, end‑to‑end Subse… #
Example: End‑to‑end DL predicts stroke onset time from CT perfusion maps. Application: decision support in time‑critical pathways. Challenge: opaque decision logic requiring interpretability tools.
Dice Coefficient – segmentation metric, overlap Statistical measur… #
Example: Dice of 0.92 for liver segmentation indicates high accuracy. Practical use: benchmark for model comparison. Challenge: insensitive to small false positives in large organs.
Domain Adaptation – transfer learning, distribution shift Techniqu… #
Example: Adapting a chest X‑ray classifier from a US hospital to a low‑resource clinic using unlabeled images. Application: extending AI reach across regions. Challenge: preserving performance without labeled target data.
Ensemble Learning – model averaging, voting Combining predictions… #
Example: An ensemble of three CNNs reduces false‑positive rate in breast cancer detection. Practical benefit: higher confidence scores. Challenge: increased inference time and resource consumption.
Explainable AI (XAI) – interpretability, saliency maps Methods tha… #
Example: Grad‑CAM heatmaps highlight regions driving a pneumonia prediction. Application: building clinician trust. Challenge: ensuring explanations are faithful and not misleading.
F1 Score – precision‑recall balance, harmonic mean Metric that com… #
Example: F1 of 0.85 for fracture detection indicates balanced performance. Practical use: selecting thresholds for clinical deployment. Challenge: may mask poor performance on rare classes.
Feature Pyramid Network (FPN) – multi‑scale representation, detection<… #
Example: FPN improves detection of microcalcifications in mammography. Application: comprehensive screening tools. Challenge: added complexity and memory usage.
Generative Adversarial Network (GAN) – synthetic data, image translati… #
Example: GANs synthesize high‑resolution MRI from low‑resolution scans. Practical use: data augmentation for rare pathologies. Challenge: mode collapse and ensuring synthetic data do not introduce artifacts.
Gradient Descent – optimization, learning rate Iterative algorithm… #
Example: Adam optimizer (a variant of gradient descent) speeds convergence in 3‑D segmentation. Application: training large DL models efficiently. Challenge: selecting appropriate hyperparameters to avoid local minima.
Ground Truth reference standard, annotation The accurate label or… #
Example: Expert‑annotated tumor boundaries serve as ground truth for supervised learning. Practical need: high‑quality labeling protocols. Challenge: inter‑observer variability and cost of expert time.
Histogram Equalization – contrast enhancement, preprocessing Techn… #
Example: Equalizing CT histograms before feeding them to a CNN improves edge detection. Application: standardizing images from different scanners. Challenge: may amplify noise in low‑dose scans.
Hybrid Model – rule‑based + ML, combined approach Integration of t… #
Example: A rule‑based lung segmentation algorithm refined by a CNN. Practical benefit: leveraging domain knowledge while gaining flexibility. Challenge: balancing hand‑crafted rules with data‑driven learning.
Inference Time – latency, real‑time processing Duration required f… #
Example: 150 ms per CT slice enables on‑site decision support. Application: time‑critical workflows like stroke triage. Challenge: hardware constraints in low‑resource settings.
Instance Segmentation – mask R‑CNN, object‑level labeling Task of… #
Example: Instance segmentation separates overlapping liver lesions in ultrasound. Practical use: precise volumetric measurement. Challenge: high annotation cost for pixel‑level masks.
Jaccard Index – Intersection over Union, similarity metric Ratio o… #
Example: Jaccard of 0.78 for kidney segmentation indicates good overlap. Application: standardized reporting of segmentation quality. Challenge: sensitive to small boundary errors.
K #
Means Clustering – unsupervised grouping, centroid Algorithm that partitions data into k clusters based on feature similarity. Example: Clustering PET voxels to differentiate tumor from normal tissue. Practical benefit: pre‑processing for semi‑automatic segmentation. Challenge: choosing appropriate k and handling noisy data.
Knowledge Distillation – model compression, teacher‑student Proces… #
Example: Distilling a deep CNN into a lightweight network for mobile ultrasound devices. Application: deploying AI on edge hardware. Challenge: retaining accuracy while reducing size.
Label Smoothing – regularization, confidence calibration Technique… #
g., 0 → 0.1, 1 → 0.9) to prevent over‑confidence. Example: Improves calibration of a multi‑class brain tumor classifier. Practical benefit: more reliable probability outputs. Challenge: may lower peak accuracy on well‑separated classes.
Latent Space – embedding, feature representation Compressed repres… #
Example: Latent vectors of chest X‑rays enable retrieval of similar cases for teaching. Application: case‑based reasoning in radiology. Challenge: interpreting what latent dimensions encode.
Loss Function – objective, cross‑entropy Metric that quantifies th… #
Example: Dice loss improves segmentation of small lesions. Practical use: guiding optimization toward clinically relevant outcomes. Challenge: selecting a loss that aligns with evaluation metrics.
Medical Imaging Modalities – MRI, CT, US, PET Different technologi… #
Example: Combining MRI and PET improves tumor delineation. Application: multimodal AI pipelines. Challenge: harmonizing disparate image resolutions and contrast mechanisms.
Neural Architecture Search (NAS) – automated design, meta‑learning … #
Example: NAS discovers a lightweight model for bedside ultrasound analysis. Application: reducing manual model engineering. Challenge: high computational expense and need for validation on clinical data.
Normalization – z‑score, min‑max Scaling of image intensities to a… #
Example: Normalizing CT Hounsfield units before feeding them to a DL model reduces variability across scanners. Practical use: improving model portability. Challenge: preserving diagnostic information while scaling.
Object Detection – YOLO, Faster R‑CNN Identifying and localizing o… #
Example: Detecting intracranial hemorrhage on head CT. Application: automated triage alerts. Challenge: high false‑positive rates in noisy images.
Overfitting – generalization gap, regularization Situation where a… #
Example: A CNN memorizes specific scanner artifacts, failing on a new hospital’s scans. Practical mitigation: dropout, early stopping. Challenge: limited datasets increase risk.
Patch‑Based Training – tiles, local context Dividing large 3‑D vol… #
Example: Training on 64³ voxel patches for brain tumor segmentation. Application: handling memory constraints. Challenge: ensuring patches capture sufficient contextual information.
Precision – positive predictive value, specificity Ratio of true p… #
Example: Precision of 0.92 for fracture detection indicates few false alarms. Practical use: selecting thresholds that minimize unnecessary follow‑ups. Challenge: trade‑off with recall in imbalanced datasets.
Quantitative Imaging Biomarkers – radiomics, texture features Nume… #
Example: Radiomic texture predicts tumor grade on MRI. Application: risk stratification and treatment planning. Challenge: reproducibility across acquisition protocols.
Radiomics – feature extraction, high‑throughput Process of convert… #
Example: 200 texture features from CT predict response to chemotherapy. Practical benefit: augmenting clinical decision models. Challenge: feature stability and need for robust validation.
Recall – sensitivity, true positive rate Ratio of true positives t… #
Example: Recall of 0.95 for COVID‑19 detection ensures most cases are captured. Application: prioritizing sensitivity in screening. Challenge: high recall may increase false positives.
Regularization – L2 penalty, dropout Techniques that constrain mod… #
Example: L2 regularization reduces weight magnitude in a CNN for prostate segmentation. Practical use: smoother decision boundaries. Challenge: selecting appropriate regularization strength.
ResNet – skip connections, deep architecture Neural network design… #
Example: ResNet‑50 achieves state‑of‑the‑art performance on chest X‑ray classification. Application: deep models for complex anatomical variations. Challenge: increased parameters may demand more memory.
Segmentation – semantic, pixel labeling Task of assigning each pix… #
g., organ, lesion). Example: Automatic liver segmentation on CT for volumetric analysis. Practical benefit: rapid organ quantification. Challenge: boundary ambiguity in low‑contrast regions.
Sharpening Filter – edge enhancement, preprocessing Convolution ke… #
Example: Applying a sharpening filter before feeding ultrasound images to a CNN improves edge detection of cysts. Application: improving visibility of fine structures. Challenge: amplifying noise.
Softmax Activation – probability distribution, multiclass Function… #
Example: Softmax layer outputs likelihoods for each disease category on a chest X‑ray. Application: interpretable confidence scores. Challenge: over‑confidence in out‑of‑distribution inputs.
Spatial Transformer Network (STN) – learned alignment, geometric invar… #
Example: STN aligns rotated knee MRIs before classification. Practical benefit: reducing need for manual preprocessing. Challenge: training stability and increased model size.
Super‑Resolution – image upsampling, detail recovery AI technique… #
Example: GAN‑based super‑resolution improves visualization of tiny vessels in angiography. Application: enhancing legacy low‑quality scans. Challenge: avoiding hallucinated structures that could mislead clinicians.
Support Vector Machine (SVM) – linear classifier, kernel trick Tra… #
Example: SVM classifies benign vs malignant breast lesions using radiomic features. Practical use: interpretable baseline models. Challenge: scaling to high‑dimensional deep features.
TensorFlow – framework, computational graph Open‑source library fo… #
Example: TensorFlow serves a deployed lung disease detection model via REST API. Application: scalable inference in hospital PACS. Challenge: version compatibility and hardware optimization.
Transfer Learning – pre‑trained weights, fine‑tuning Reusing a mod… #
Example: Fine‑tuning ImageNet‑pretrained ResNet on a limited pediatric MRI dataset. Practical benefit: reduced training time and data requirements. Challenge: negative transfer if source and target domains differ significantly.
U‑Net – encoder‑decoder, skip connections Architecture specificall… #
Example: U‑Net achieves >0.90 Dice for brain tumor segmentation on multimodal MRI. Application: rapid organ delineation in radiotherapy planning. Challenge: memory consumption for 3‑D extensions.
Uncertainty Quantification – Monte Carlo dropout, Bayesian nets Me… #
Example: Predictive variance highlights ambiguous regions in a liver lesion classifier. Practical benefit: flagging cases for radiologist review. Challenge: calibrating uncertainty to clinical risk thresholds.
Validation Cohort – external dataset, generalization Independent p… #
Example: A model trained on European hospitals is validated on an Asian cohort. Application: demonstrating transportability. Challenge: data sharing restrictions and differing annotation standards.
Voxel – 3‑D pixel, volumetric element Smallest unit of a 3‑D medic… #
Example: Voxel intensities in CT represent Hounsfield units. Practical relevance: DL models process voxel grids for volumetric segmentation. Challenge: high memory demand for full‑resolution volumes.
Weighted Loss – class imbalance, focal loss Adjusting loss contrib… #
Example: Applying focal loss reduces missed detections of rare spinal fractures. Application: improving sensitivity for under‑represented pathologies. Challenge: tuning weighting factors without over‑compensating.
X‑Ray Computed Tomography (CT) – axial imaging, Hounsfield scale C… #
Example: AI detects pulmonary embolism on contrast‑enhanced CT angiography. Practical use: rapid emergency diagnostics. Challenge: balancing dose reduction with image quality for AI training.
YOLO (You Only Look Once) – real‑time detection, single‑stage Obje… #
Example: YOLOv5 identifies rib fractures in chest X‑rays within milliseconds. Application: bedside triage alerts. Challenge: maintaining accuracy on small, subtle findings.
Z‑Score Normalization – standardization, mean subtraction Transfor… #
Example: Z‑scoring MRI intensity values before feeding them to a CNN reduces scanner‑specific bias. Practical benefit: harmonized inputs across sites. Challenge: requires accurate estimation of population statistics.