Liquid phase transmission electron microscopy (LPTEM) is an emerging microscopy technique with an unprecedented combination of spatial and temporal resolution, making it a promising method for single particle tracking. However, the lack of standardized video processing frameworks that can successfully identify and track nanoparticles moving in noisy LPTEM videos has impeded progress in the field to develop this method as a single particle tracking tool. We demonstrate the first implementation of the SAM 2 video segmentation foundation model for experimental microscopy data analysis, showing that SAM 2 successfully segments LPTEM videos in a zero-shot manner. Leveraging that, we present SAM4EM, a comprehensive suite with a promptable video segmentation module in conjunction with a particle tracking and statistical analysis module, as an end-to-end LPTEM analysis framework for single particle tracking. SAM4EM successfully segments and analyzes LPTEM videos with high accuracy compared to the state-of-the-art methods.
-First create a conda enviornment for SAM4EM using conda create -n SAM4EM python=3.10
-Next install the Meta Segment Anything Model 2 (SAM 2) module inside this envirnment by activating your environment first conda activate SAM4EM
. For installing SAM 2, follow the installations on the SAM 2 github repository. In short, first install torch>=2.5.1
:
conda install pytorch==2.5.1 torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
conda install pytorch==2.5.1 torchvision torchaudio cpuonly -c pytorch
-To make movies of masklets in the notebook later:
conda install -c conda-forge ffmpeg
-If using a Windows machine, open git bash;
-Then clone Meta SAM 2 repository in the desired directory:
git clone https://github.com/meta/SAM2.git
-In the command prompt, locate the SAM2 cloned directory
cd sam2
pip install -e ".[notebooks]"
-Next download the most recent sam2 model checkpoints into the checkpoint directory; first, use git bash (if using a Windows machine), and download checkpoints
cd sam2/checkpoints
./download_ckpts.sh
Alternatively, directly download them:
-For the Particle tracking module, install the following packages using the requirements.txt file in SAM4EM git repository:
pip install -r requirements.txt
-Next, add the Jupyter Notebook in this repository and your data folder to segment videos and analyze spatiotemporal trajectories
-You can now load the Jupyter notebook in the command prompt and start to use it.
Here is an example of how the masklets of the tracked particles look like in the
This project is funded by the National Science Foundation Division of Chemical, Bioengineering, Environmental, and Transport Systems under award 2338466, the American Chemical Society Petroleum Research Fund under award 67239-DNI5, and the Georgia Tech Institute for Matter and Systems, Exponential Electronics seed grant.
If you are using this code, please reference our paper:
@article{goel2025segment,
title={Segment Anything Model for Zero-shot Single Particle Tracking in Liquid Phase Transmission Electron Microscopy},
author={Goel, Risha and Shabeeb, Zain and Panicker, Isabel and Jamali, Vida},
journal={arXiv preprint arXiv:2501.03153},
year={2025}
}