A radiology-AI team drops the Segment Anything Model into a CT pipeline expecting it to replace their task-specific U-Net, and the masks come back plausible-looking but clinically wrong at the organ boundaries that matter. This is the most common way SAM disappoints in medical imaging, and it comes from a single misread: treating a natural-image foundation model as a validated diagnostic component instead of what it actually is — a promptable, class-agnostic segmentation backbone that is very good at accelerating annotation and very weak zero-shot on modalities it never trained on. The Segment Anything Model (SAM), released by Meta AI in 2023, was trained on roughly 11 million natural images and over a billion masks from the SA-1B dataset. That scale is exactly why it generalises so well to everyday photographs — and exactly why it does not transfer cleanly to CT, MRI, or histopathology, where the imaging physics, tissue contrast, and boundary semantics are nothing like a photograph of a cat. Understanding SAM’s real role means separating two jobs that look identical from a distance but diverge completely at the clinical validation gate: preparing data, and making diagnoses. What does the Segment Anything Model (SAM) actually do? SAM is a promptable segmentation model. You give it an image plus a prompt — a click point, a bounding box, or a coarse mask — and it returns a segmentation mask for whatever object the prompt indicates. It does not classify the object. It does not know whether it segmented a liver, a tumour, or a coffee mug. This class-agnostic design is the point: instead of training one network per anatomical structure, SAM segments whatever you point at, which makes it a general-purpose cutout tool rather than a task-specific detector. The architecture has three parts. A heavy Vision Transformer (ViT) image encoder runs once per image to produce a dense embedding. A lightweight prompt encoder turns points, boxes, or masks into embeddings. A fast mask decoder then fuses the two and predicts masks in milliseconds — which is what makes interactive annotation feel responsive: you pay the encoder cost once, then iterate on prompts cheaply. That asymmetry (expensive encode, cheap decode) is the whole reason SAM works as an annotation loop rather than a one-shot batch tool. There are lighter variants worth knowing about when the ViT-H encoder is too heavy for your hardware or throughput target. If encoder latency is your bottleneck, FastSAM’s CNN-based approach to Segment Anything trades some quality for a large speedup, and the broader family of SAM models and how they fit medical imaging pipelines covers the encoder-size and deployment trade-offs in more detail. For this article the important claim is architectural, not variant-specific: SAM’s promptability is what makes it an annotation accelerator, and its class-agnosticism is what disqualifies it from being a standalone diagnostic model. Why does zero-shot SAM underperform on CT, MRI, and histopathology? The honest answer is distribution shift, and it shows up everywhere the training data did not go. SAM learned boundaries from RGB photographs with natural lighting and texture cues. A contrast-enhanced CT slice, a T2-weighted MRI, and a whole-slide H&E histopathology image share almost none of those statistics. Organ boundaries are defined by subtle intensity gradients, not by the sharp texture edges SAM was optimised to find; low-contrast lesions blend into surrounding tissue in ways no natural image ever does; and 3D volumetric context — which a radiologist uses constantly — is invisible to a model that processes 2D slices independently. The result is a recognisable failure signature. Zero-shot SAM will happily produce a mask that looks confident and is wrong at the exact boundary a clinician cares about. It over-segments across low-contrast interfaces, misses small pathology entirely, and cannot distinguish adjacent structures with similar intensity. In practice this is not a tuning problem you can prompt your way out of — it is a training-distribution problem. This is the same failure class we describe in why generative AI fails on production data: a model that never saw your data distribution does not degrade gracefully, it fails at the decisions that matter. Fine-tuning closes the gap, and MedSAM-class adaptations are the reference example. MedSAM took SAM’s architecture and fine-tuned it on a large corpus of medical images spanning multiple modalities, which recovers a large share of the boundary accuracy on CT and MRI that raw SAM leaves on the table. The mechanism is straightforward: you keep SAM’s promptable design and general segmentation prior, then re-teach the encoder and decoder what medical boundaries actually look like. Teams that skip this step and deploy raw SAM stall at clinical validation; teams that fine-tune, engineer prompts, and keep a human in the loop ship measurable annotation speedups inside the regulatory envelope (observed pattern across imaging engagements, not a published accuracy benchmark). How do SAM’s prompt modes map to annotation workflows? SAM’s three prompt types map directly onto how an annotator actually works, and choosing the right mode for a task is most of what determines whether the tool saves time or wastes it. Prompt mode What you provide Best-fit annotation task Where it struggles Point One or more click points (foreground / background) Quick single-structure selection; iterative refinement by adding correction clicks Ambiguous small or low-contrast lesions where one click underspecifies the target Box A bounding box around the region Organ or lesion delineation where extent is known; batch pre-annotation from detector outputs Overlapping or nested structures inside one box Mask A coarse/prior mask as input Refining an existing weak label; propagating a mask across similar slices Cases where the prior mask is itself badly wrong (error propagates) The productive pattern in a real annotation loop is a cascade: use a box or a detector’s output to seed the region, let SAM produce a first mask, then refine with correction clicks. Because the ViT encoder only runs once per image, each correction click costs milliseconds, so the annotator converges on a clean mask far faster than drawing it by hand. This is where the ROI lives — for many segmentation tasks, expert labelling time drops from hours-per-study to minutes-per-study (observed range in annotation engagements; not a benchmarked rate). Faster, cheaper labelled data is precisely what shortens the time-to-model milestone in a generative AI imaging programme. Where does SAM belong: annotation accelerator or diagnostic component? This is the decision that governs everything else, and getting it wrong is what stalls projects at the validation gate. The two roles carry completely different validation burdens. Dimension SAM as annotation accelerator SAM as diagnostic component Role in pipeline Speeds expert labelling and dataset augmentation Produces masks consumed as clinical output Human oversight Every mask reviewed and corrected by an expert Automated masks drive downstream decisions Validation burden Standard data-quality QA on the labelled set Full clinical/regulatory validation of SAM itself Regulatory exposure Low — SAM never touches the diagnostic path High — SAM becomes a regulated software function Where it ships Routinely, today Rarely without heavy fine-tuning + validation The defensible position for almost every team is the left column: SAM accelerates the labelling and augmentation stage that feeds your downstream imaging model, and the downstream model — not SAM — carries the clinical validation. This keeps SAM out of the regulated diagnostic path entirely, which is both the safe engineering choice and the fast one. The masks SAM generates are an input to training, subject to the same data-quality gate that sits behind most GenAI failures, not an output a clinician relies on. Moving SAM into the right column is possible but expensive: it requires MedSAM-class fine-tuning, rigorous evaluation on held-out clinical data, and validation against a reference standard. Frameworks like MedPerf’s federated benchmarking for medical AI exist precisely because validating a segmentation model across institutions and scanners is hard, and no amount of prompt engineering substitutes for it. What human-in-the-loop review is required before masks feed a model? Even in the accelerator role, SAM-generated masks are not free labels. The human-in-the-loop review is what converts a fast draft into a trustworthy training example, and it is non-negotiable. In practice that means an expert reviews every mask before it enters the training set, corrects boundary errors, and rejects masks where SAM confidently segmented the wrong thing. The review is faster than de-novo annotation — that is the whole point — but it is still expert time, and skipping it silently poisons the dataset. A workable review protocol looks like this in most imaging engagements: Pre-seed with SAM using box or point prompts, ideally from an existing detector’s outputs. Review and correct every mask; log correction rate as a data-quality signal. Flag and route low-confidence or high-correction cases for senior review. Audit a sample of accepted masks against a reference standard before training. The correction rate is worth tracking on its own — a rising correction rate on a new scanner or modality is an early signal that the SAM variant you are using has drifted out of distribution and needs re-tuning. Treating annotation as a monitored process rather than a one-time task is the data-centric discipline that separates imaging programmes that ship from ones that stall. What should the feasibility audit say about SAM? Before SAM enters a regulated imaging pipeline, the feasibility work has to draw the line explicitly. In our life sciences engagements, the audit scopes SAM as a data-preparation tool and nothing more: it names the annotation tasks SAM will accelerate, the fine-tuning plan if raw SAM is insufficient for the modality, the human-in-the-loop review protocol, and the correction-rate thresholds that trigger re-tuning. Crucially, it documents that clinical validation applies to the downstream model SAM helps train — not to SAM itself — which is what keeps SAM out of the regulated diagnostic path and keeps the validation plan tractable. The same audit should record the boundary conditions where SAM stops helping: modalities so far from natural images that even MedSAM-class fine-tunes underperform, tasks requiring true 3D context that 2D SAM cannot provide, and structures where the correction rate is so high that manual annotation would be faster. Naming those limits up front is cheaper than discovering them after you have built a pipeline around a tool that does not fit. FAQ What’s worth understanding about segment anything model sam first? SAM is a promptable, class-agnostic segmentation model: you give it an image and a prompt (a point, box, or coarse mask) and it returns a mask for the indicated object without classifying it. Architecturally it runs a heavy ViT image encoder once per image, then uses a lightweight prompt encoder and fast mask decoder to produce masks in milliseconds. In practice this makes it an excellent interactive annotation tool — a general-purpose cutout that segments whatever you point at rather than a task-specific detector. Why does zero-shot SAM underperform on CT, MRI, and histopathology, and what fine-tuning (e.g. MedSAM-class) closes the gap? SAM was trained on natural photographs, so it fails on medical modalities due to distribution shift: organ boundaries defined by subtle intensity gradients, low-contrast lesions, and 3D volumetric context are absent from its training data. It produces confident but clinically wrong masks at the boundaries that matter. MedSAM-class fine-tuning re-teaches SAM’s encoder and decoder on large medical-image corpora, recovering much of the boundary accuracy while keeping the promptable design. How do SAM’s prompt modes — points, boxes, masks — map to interactive medical-image annotation workflows? Point prompts suit quick single-structure selection and iterative correction; box prompts suit organ or lesion delineation and batch pre-annotation from detector outputs; mask prompts refine or propagate an existing weak label. The productive loop is a cascade — seed with a box, get a first mask, refine with correction clicks — and because the encoder runs only once per image, each correction costs milliseconds, so annotators converge on clean masks far faster than drawing by hand. Where does SAM fit as an annotation and dataset-augmentation accelerator versus a validated diagnostic component? As an accelerator, SAM speeds expert labelling and dataset augmentation under full human review, carries low regulatory exposure, and ships routinely today. As a diagnostic component its masks would drive clinical decisions, which demands MedSAM-class fine-tuning plus full clinical validation and puts SAM in the regulated software path. The defensible position for almost every team is the accelerator role, with the downstream model carrying clinical validation. What human-in-the-loop review is required before SAM-generated masks feed a clinical imaging model? Every SAM-generated mask must be reviewed and corrected by an expert before entering the training set; the review is faster than de-novo annotation but is still required. A workable protocol pre-seeds with prompts, reviews and corrects each mask while logging correction rate, routes high-correction cases for senior review, and audits accepted masks against a reference standard before training. How does using SAM to speed labelling reduce time and cost in building augmented imaging datasets? By pre-seeding masks and letting experts refine rather than draw from scratch, SAM cuts expert labelling time from hours-per-study to minutes-per-study for many segmentation tasks (observed range, not a benchmarked rate). Faster, cheaper labelled data directly lowers the cost of building augmented imaging datasets and shortens the time-to-model milestone — without moving SAM into the validated diagnostic path. What must the feasibility audit and validation plan say about SAM before it enters a regulated imaging pipeline? The audit must scope SAM as a data-preparation tool only: it names the annotation tasks it accelerates, the fine-tuning plan for the modality, the human-in-the-loop review protocol, and the correction-rate thresholds that trigger re-tuning. It must document that clinical validation applies to the downstream model SAM helps train, not to SAM itself, and record the boundary conditions where SAM stops helping. The question that decides whether SAM helps or hurts an imaging programme is not “is the model accurate?” — it is “which job did we hire it for?” Keep it in the labelling loop, keep an expert on every mask, and reserve clinical validation for the model it feeds. That is the difference between an annotation accelerator that shortens time-to-model and a diagnostic shortcut that stalls at the gate.