Computer-Aided Detection (CADe) is an AI system engineered to automatically identify and mark suspicious regions in medical images, such as microcalcifications in mammography or pulmonary nodules in CT scans. Unlike diagnostic systems that classify pathology, CADe focuses strictly on object detection—placing a visual prompt, typically a bounding box or circle, over areas that deviate from normal anatomy to direct the radiologist's visual attention.
Glossary
CADe (Computer-Aided Detection)

What is CADe (Computer-Aided Detection)?
An overview of the AI-driven technology designed to automatically highlight suspicious regions in medical imagery, acting as a second reader to reduce observational oversights.
The primary clinical value of CADe lies in mitigating observational oversights caused by fatigue, cognitive overload, or satisfaction of search. By operating as a concurrent or secondary reader, the system performs a pre-screen to flag potential lesion localization candidates. Modern implementations utilize deep convolutional neural networks and architectures like Feature Pyramid Networks (FPN) to detect abnormalities across vast scale variations, outputting a confidence score for each finding without replacing the clinician's final judgment.
Key Characteristics of CADe Systems
Computer-Aided Detection (CADe) systems are engineered to act as a vigilant second reader, automatically flagging suspicious regions in medical imagery to reduce observational oversights. The following characteristics define their technical architecture and clinical utility.
Automated Region-of-Interest Marking
The core function of a CADe system is the automated localization of potential abnormalities. Unlike manual screening, the system algorithmically scans the entire image volume and places bounding boxes or visual prompts over areas with statistically anomalous patterns. This process is designed to combat satisfaction of search, a perceptual error where a radiologist stops looking after finding the first abnormality, by ensuring all suspicious loci are highlighted for review.
High-Sensitivity Prioritization
CADe algorithms are explicitly tuned for maximum sensitivity, often at the expense of generating false positives. The clinical goal is to achieve a near-100% detection rate for actionable pathologies, ensuring no true lesion is missed. This design philosophy accepts a higher false-positive-per-image rate because the cost of a missed cancer far outweighs the radiologist's cognitive load of dismissing a false mark. The system acts as a safety net, not a definitive diagnostician.
Multi-Scale Feature Analysis
To detect abnormalities of vastly different sizes—from a 2mm micro-calcification to a large mass—CADe systems employ multi-scale architectures like Feature Pyramid Networks (FPN). These networks build a pyramidal hierarchy of feature maps, allowing the model to leverage high-resolution, semantically weak features for small objects and low-resolution, semantically strong features for large objects. This ensures robust detection across the entire size spectrum of potential findings.
Post-Processing for Mark Reduction
Raw neural network outputs often produce multiple overlapping detections for a single lesion. CADe systems apply Non-Maximum Suppression (NMS) or Weighted Boxes Fusion (WBF) to consolidate redundant bounding boxes into a single, precise mark. This post-processing step is critical for clinical usability; without it, a single mass could be obscured by a cluster of marks, increasing cognitive burden rather than reducing it.
DICOM Structured Reporting Integration
For seamless clinical workflow integration, CADe outputs must conform to the DICOM Structured Reporting (DICOM SR) standard. This encodes detection results—including bounding box coordinates, measurements, and confidence scores—into a structured format that can be ingested by a Picture Archiving and Communication System (PACS). This allows the CADe marks to be overlaid directly on the original scan in the radiologist's standard viewing environment.
Vendor-Agnostic Domain Adaptation
A significant engineering challenge is the domain shift caused by different scanner manufacturers and acquisition protocols. A CADe system trained on Siemens scans may fail on GE scans. Robust systems employ domain adaptation techniques, such as adversarial training or Hounsfield Unit (HU) normalization, to learn scanner-invariant features. This ensures consistent sensitivity regardless of the imaging hardware used to acquire the scan.
Frequently Asked Questions
Clear answers to the most common questions about Computer-Aided Detection systems, their clinical role, and the underlying AI mechanisms that power them.
Computer-Aided Detection (CADe) is an AI system designed to automatically mark suspicious regions in medical images to assist radiologists by reducing observational oversights. It functions as a 'second reader' by processing DICOM data through a deep convolutional neural network trained on thousands of annotated scans. The system outputs bounding boxes or visual prompts over potential abnormalities—such as micro-calcifications in mammography or pulmonary nodules in CT—without providing a definitive diagnosis. The core workflow involves image pre-processing (e.g., Hounsfield Unit normalization), feature extraction via a backbone like a Feature Pyramid Network (FPN), and region proposal generation. Crucially, CADe aims for high sensitivity to ensure no lesion is missed, often trading off specificity, which is why Non-Maximum Suppression (NMS) is applied to eliminate redundant overlapping detections before the radiologist reviews the final marks.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
CADe vs. CADx: Detection vs. Diagnosis
A technical comparison of Computer-Aided Detection (CADe) and Computer-Aided Diagnosis (CADx) systems, clarifying their distinct roles, outputs, and clinical integration points in the radiology workflow.
| Feature | CADe (Detection) | CADx (Diagnosis) |
|---|---|---|
Primary Objective | Localize suspicious regions | Characterize known lesions |
Core Output | Bounding box coordinates and centroid markers | Malignancy probability score or BI-RADS category |
Clinical Workflow Position | Pre-read: flags regions before radiologist review | Post-read: analyzes a segmented region after detection |
Reduces Observational Oversight | ||
Reduces Interpretive Error | ||
Typical Output Format | DICOM SR with spatial coordinates | DICOM SR with structured diagnostic codes |
Example Algorithm | Faster R-CNN, YOLO, RetinaNet | DenseNet, Vision Transformer, ResNet classifier |
Evaluation Metric | FROC (sensitivity vs. false positives/image) | ROC-AUC, sensitivity, specificity |
Related Terms
Mastering CADe requires a deep understanding of the underlying computer vision architectures and evaluation methodologies that make automated detection possible.
Bounding Box Regression
The core localization mechanism that refines the coordinates of a predicted region to tightly enclose a suspicious lesion. A regression head in the detection network learns to predict offsets (dx, dy, dw, dh) relative to an anchor box or initial proposal, minimizing a smooth L1 loss to align the prediction with the ground truth annotation.
Non-Maximum Suppression (NMS)
A critical post-processing algorithm that eliminates redundant, overlapping detections for the same object. NMS sorts all predicted boxes by their confidence score, selects the highest-scoring box, and suppresses any other box with an Intersection over Union (IoU) exceeding a set threshold (e.g., 0.5). This ensures a single, clean bounding box per finding.
FROC Analysis
The Free-Response Receiver Operating Characteristic curve is the standard evaluation metric for CADe systems. Unlike traditional ROC, FROC accommodates an unlimited number of marks per image. It plots sensitivity (true positive rate) against the average number of false positives per scan, providing a clinically relevant measure of a system's burden on the radiologist.
Region Proposal Network (RPN)
A fully convolutional network that serves as the 'attention' mechanism in two-stage detectors like Faster R-CNN. The RPN slides over a feature map and, at each spatial location, simultaneously predicts objectness scores and bounding box coordinates for multiple anchor boxes. This generates a sparse set of high-quality region proposals for the downstream classifier.
Feature Pyramid Network (FPN)
An architecture essential for detecting abnormalities at vastly different scales, from tiny micro-calcifications to large pulmonary masses. An FPN builds a multi-scale feature hierarchy with a top-down pathway and lateral connections. This allows high-level, semantically strong features to be combined with low-level, spatially precise features, creating rich representations at every level.
DICOM Structured Reporting (SR)
The interoperability standard for encoding CADe results into a clinical workflow. A DICOM SR object stores the coordinates, measurements, and finding classifications generated by the AI system in a structured, machine-readable format. This allows the detection marks to be seamlessly overlaid on the image in any compliant PACS viewer.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us