- Introduction
- Dependencies
- Getting Started
- Datasets
- Registering your data
- Contributing
- Issues
- Citation
This repository hosts the version of the code used for the publication Registration of Multi-modal Volumetric Images by Establishing Cell Correspondence.
We refer to the techniques elaborated in the publication, here as PlatyMatch. PlatyMatch
performs a linear registration of volumetric, microscopy images of embryos by establishing correspondences between cells.
PlatyMatch
first detects nuclei in the two images being considered, next calculates unique shape context
features for each nucleus detection which encapsulates the neighborhood as seen by that nucleus, and finally identifies pairs of matching nuclei through maximum bipartite matching applied to the pairwise distance matrix generated from these features.
You can install PlatyMatch
via pip:
conda create -y -n PlatyMatchEnv python==3.8
conda activate PlatyMatchEnv
python -m pip install "napari[all]"
git clone https://github.com/juglab/PlatyMatch.git
cd PlatyMatch
git checkout v0.0.4
pip install -e .
Type in the following commands in a new terminal window.
conda activate PlatyMatchEnv
napari
Next, select PlatyMatch
from Plugins> Add Dock Widget
.
Datasets are available in bic_eccv_data.zip
as release assets here.
These comprise of images, nuclei detections and keypoint locations for confocal images of 12 individual specimens under the 01-insitus
directory and static snapshots of a live embryo imaged through Light Sheet Microscopy under the 02-live
directory.
Folders with the same name in these two directories correspond in their developmental age, for example, 01-insitus/02
corresponds to 02-live/02
, 01-insitus/03
corresponds to 02-live/03
and so on.
- Detect Nuclei
- Drag and drop your images in the viewer
- Click on
Sync with Viewer
button to refresh the drop-down menus - Select the appropriate image in the drop down menu (for which nuclei detections are desired)
- Select
Detect Nuclei
from the drop-down menu - Specify the anisotropy factor (
Anisotropy (Z)
) (i.e. the ratio of the size of the z pixel with respect to the x or y pixel. This factor is typically more than 1.0 because the z dimension is often undersampled) - Ideally min scales and max scales should be estimated from your data (
min_scale
should be set asmin_radius/sqrt(3)
andmax_scale
should be set asmax_radius/sqrt(3)
. The default values ofmin_scale=5
andmax_scale=9
generally works well). - Click
Run Scale Space Log
button. Please note that this step takes a few minutes. - Wait until a confirmation message suggesting that nuclei detection is over shows up on the terminal
- Export the nuclei locations (
Export detections to csv
) to a csv file - Repeat this step for all images which need to be matched
detect_nuclei.mp4
- Estimate Transform
- In case, nuclei were exported to a csv in the
Detect Nuclei
panel, tickcsv
checkbox - If the nuclei detected were specified in the order id, z, y and x in the csv file, then tick
IZYXR
checkbox - Additionally if there is a header in the csv file, tick
Header
checkbox - Load the detections for the
Moving Image
, which is defined as the image which will be transformed to later match anotherfixed
image - Load the detections for the
Fixed Image
- Click on
Run
pushbutton. Once the calculation is complete, a confirmation message shows up in the terminal. Export the transform matrix to a csv (Note that this step can take a few minutes) - It is also possible to estimate the transform in a
supervised
fashion. For this, upload the locations of a few matching keypoints in both images. These locations serve to provide a good starting point for the transform calculation. Once the keypoint files have been uploaded for both the images, then clickRun
and then export the transform matrix to a csv file
- In case, nuclei were exported to a csv in the
estimate_transform.mp4
- Evaluate Metrics
- Drag images which need to be transformed, in the viewer
- Click on
Sync with Viewer
button to refresh the drop-down menus - Specify the anisotropy factor (
Moving Image Anisotropy (Z)
andFixed Image Anisotropy (Z)
) (i.e. the ratio of the size of the z pixel with respect to the x or y pixel. This factor is typically more than 1.0 because the z dimension is often undersampled) - Load the transform which was calculated in the previous steps
- If you simply wish to export a transformed version of the moving image, click on
Export Transformed Image
- Additionally, one could quantify metrics such as average registration error evaluated on a few keypoints. To do so, tick the
csv
checkbox, if keypoints and detections are available as a csv file. Then load the keypoints for the moving image (Moving Kepoints
) and the fixed image (Fixed Keypoints
) - Also, upload the detections calculated in the previous steps (
Detect Nuclei
) by uploading theMoving Detections
and theFixed Detections
- Click on the
Run
push button - The text fields such as
Matching Accuracy
(0 to 1, with 1 being the best) andAverage Registration Error
(the lower the better) should become populated once the results are available
evaluate_metrics.mp4
Contributions are very welcome. Tests can be run with tox.
If you encounter any problems, please file an issue along with a detailed description.
If you find our work useful in your research, please consider citing:
@InProceedings{10.1007/978-3-030-66415-2_30,
author="Lalit, Manan and Handberg-Thorsager, Mette and Hsieh, Yu-Wen and Jug, Florian and Tomancak, Pavel",
editor="Bartoli, Adrien
and Fusiello, Andrea",
title="Registration of Multi-modal Volumetric Images by Establishing Cell Correspondence",
booktitle="Computer Vision -- ECCV 2020 Workshops",
year="2020",
publisher="Springer International Publishing",
address="Cham",
pages="458--473",
isbn="978-3-030-66415-2"
}
PlatyMatch
plugin was generated with Cookiecutter using with @napari's cookiecutter-napari-plugin template.