The problem — Most cell segmenters are tuned for one image type. Move to a new instrument, magnification, or stain protocol and the model transfers poorly, silently degrading the masks that every downstream feature depends on.
What it is / how it works — Cellpose frames segmentation as a flow-field prediction problem. Rather than predicting a binary foreground map, the model (a modified U-Net with residual blocks and global style vectors) predicts per-pixel vector flows that point toward each object's center. At inference, pixels "follow the flows" by gradient ascent; those that converge to the same point are grouped into an instance mask. This representation handles arbitrary cell shapes and dense, touching objects more robustly than distance-transform or watershed approaches. The original model was trained on more than 70,000 segmented objects drawn from highly varied image types, giving it strong out-of-the-box generalization. Cellpose 2.0 extended this with a model zoo and a human-in-the-loop GUI: roughly 100–200 corrected annotations in one to two hours are enough to build a specialist model that approaches the accuracy of a fully supervised effort.
Cellpose appears in the segment stage across Cell Painting, spatial omics, live-cell, organoids, light-sheet, and label-free modalities — the widest tool footprint of any segmenter in the platform.
Where it breaks — Generalization has a ceiling. On simple, uniform nuclei (e.g., sparse DAPI on a clean background) the flow-field overhead buys little and a tuned classical pipeline can match it with less compute. More importantly, the generalist model degrades on images that differ substantially from its training distribution — a novel stain, a confocal with unusual optics, or densely packed 3D volumes where under-segmentation (merges) is the dominant failure mode. Those merge errors propagate directly into per-cell feature distributions and corrupt profile reproducibility, which is why Evaluating Segmentation Models in Real Microscopy Workflows insists on instance-level evaluation rather than pixel Dice: a merge barely moves overlap scores but doubles a cell's apparent morphology.
For any image type outside the training distribution, the correct operating stance is to fine-tune on 100–200 representative annotations before committing masks to a production pipeline — not to trust the benchmark number.