Generalist cell instance segmentation for microscopy, pairing a SAM ViT-B encoder with flow-field decoding trained on 15K annotated images.
In a confluent monolayer, two neighboring cells share their boundary pixel for pixel. A network that only labels each pixel "cell" or "background" merges the pair into one blob, and every transcript count and morphology measurement downstream is attributed to a chimera that does not exist. Instance segmentation — giving each cell its own label — is the step spatial-omics and high-content imaging pipelines rest on, and it has traditionally been solved by specialist models trained per imaging modality, per organism, sometimes per cell line.
VISTA-2D is NVIDIA's generalist answer to that fragmentation: a Segment Anything (SAM) ViT-B image encoder wrapped by a flow-field decoder in the style of Cellpose. Instead of emitting a mask directly, the network predicts horizontal and vertical gradient fields pointing toward each cell's center plus a cell-probability channel; pixels that converge on the same attractor are grouped into one instance. That separates cells whose borders touch, and it removes the inference-time hyperparameters earlier flow-based tools require — notably the cell diameter a user must estimate per acquisition in Cellpose. A single pretrained checkpoint, trained on roughly 15,000 annotated microscopy images pooled from TissueNet, LIVECell, Omnipose, DeepBacs and the Cellpose corpus, covers brightfield, phase-contrast, fluorescence, confocal, H&E and electron microscopy.
NVIDIA introduced VISTA-2D in April 2024 and ships it as a MONAI bundle alongside its volumetric sibling VISTA3D and the synthetic-CT generator MAISI. The two VISTA models share a repository and a product line but not a model: VISTA3D segments anatomy in 3D CT and MRI, VISTA-2D 2D microscopy fields. It has no preprint or publication — its reference documentation is the NVIDIA developer blog and the bundle README.
The network is a CellSamWrapper around SAM's ViT-B backbone, running on 256×256 RGB patches
and emitting three output channels; sliding-window inference at 0.625 overlap extends it to
full fields of view. NVIDIA puts the architecture at roughly 100 million
parameters, and the released checkpoint is about 360 MB. Training uses SGD with momentum 0.9
and a warmup-cosine schedule from a base learning rate of 0.01, in mixed precision for up to
200 epochs, with an optional weighted sampler so that no single corpus dominates. Evaluation
uses average precision at an IoU threshold of 0.5 on the
held-out test splits each contributing dataset defines. Across 24 such splits — thirteen
TissueNet tissue/platform combinations, seven LIVECell cell lines, two Omnipose bacterial
sets, DeepBacs and Cellpose — the generalist model averages roughly 0.78 against roughly 0.75
for the specialist baselines, winning most splits by a few points and losing a few, including
Omnipose fluorescent bacteria. Those numbers are published only as a blog figure, not in a
peer-reviewed table.
VISTA-2D targets the segmentation step in spatial-omics and cell-imaging workflows, where attributing RNA or protein signal to the correct boundary determines the validity of everything computed afterward. It suits labs running heterogeneous acquisitions — several microscopes, stains and organisms in one study — that would otherwise maintain a specialist segmenter for each. The per-cell embeddings extend its use to unsupervised morphology profiling and phenotype clustering in screening data, and the released checkpoint can be fine-tuned in-house when a rare cell type falls outside the training distribution.
VISTA-2D belongs to the wave of cell segmenters built by grafting a natural-image foundation backbone onto a biology-specific decoder, a design that Cellpose-SAM and CellSAM arrive at independently — evidence that SAM's pretraining transfers to microscopy even though it never saw a cell. Its constraints are worth weighing: the code is Apache-2.0 but the weights are CC-BY-NC-SA-4.0, which rules out commercial deployment; the training corpora point the same way, since the Cellpose images are governed by HHMI's non-commercial Research Content Terms and TissueNet by DeepCell's modified Apache 2.0, whose copyright grant is expressly "non-commercial, academic" — as are LIVECell (CC BY-NC 4.0) and Omnipose, under its own NonCommercial License; and the absence of a paper means the comparison against specialist baselines has not been independently reviewed. What it does deliver is a documented, GPU-optimized generalist checkpoint inside a maintained open-source framework that a wet-lab group can run without assembling a segmentation pipeline from scratch.
Much of this page is generated or calculated automatically. Flag anything that looks off and we will re-run it.