SIFTReg

napari-sift-registration

Simple plugin for SIFT keypoint detection, and affine registration with RANSAC, based on scikit-image

License BSD-3 PyPI Python Version tests codecov napari hub

Simple plugin for 2D keypoint detection and affine registration with RANSAC.


moving image fixed image

Artificial data

moving image with inlier keypoints fixed image with inlier keypoints

Moving and fixed images showing inlier keypoints after RANSAC


This napari plugin was generated with Cookiecutter using @napari's cookiecutter-napari-plugin template. It uses the scikit-image SIFT keypoint detection routines to find distinctive image points and generate local descriptions of the image around them. Correspondences between the two images are then found by looking for pairs of keypoints, one in each of the two images, with closely matching descriptors.

For typical images, many of these correspondences will be wrong. To reduce these false correspondences, the plugin applies the RANSAC algorithm. This randomly selects a small subset of the matching pairs of keypoints, estimates the affine transformation between this subset of keypoints, and then evaluates how many of the other pairs of keypoints also closely agree with this affine transformation ("inliers"). A large number of random samples are tested, and the transformation with the most inliers retained.

The plugin outputs two points layers, one for each image, containing all the corresponding (inlier) SIFT keypoints. It also uses the estimated affine transformation between the two images to deform the "moving" image layer onto the "fixed" image layer.

This approach is an attempt to provide similar functionality to the Stephan Saalfeld's Fiji "Extract SIFT Correspondences" plugin extract, and more-or-less just provides a napari interface to the existing routines in scikit-image. There are great examples in the scikit-image documentation (e.g. SIFT-example and RANSAC-example) that can be used if you would like to use these routines in your own analysis scripts.

Installation

You can install napari-sift-registration via pip:

pip install napari-sift-registration

To install the latest development version :

pip install git+https://github.com/jfozard/napari-sift-registration.git

Usage

Basic usage

  • Load two 2D single channel images in Napari.
  • Select the menu item Plugins > napari-sift-registration
  • Select these two images as the "Moving image layer" and the "Fixed image layer". The moving image will be deformed by the transformation to look like the fixed image.
  • The remaining parameters are the default settings from scikit-image; try these default values first.

Advanced usage

The parameter values for SIFT feature detection, keypoint matching and RANSAC are accessible from the plugin gui. For further information about their use, see the appropriate scikit-image documentation:

Upsampling before feature detection, maximum number of octaves, maximum number of scales in every octave, blur level of seed image, feature descriptor size, feature descriptor orientation bins: see scikit-image-SIFT.

Closest/next closest ratio: see scikit-image-match_descriptors

Minimum number of points sampled for each RANSAC model, distance for points to be inliers in RANSAC model, maximum number of trials in RANSAC model: see scikit-image-RANSAC

Only show inlier keypoints: If checked, only show corresponding keypoints that are inliers after RANSAC. If unchecked, show all corresponding keypoints.

Limitations

Only 2D, single channel images (for now).

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the BSD-3 license, "napari-sift-registration" is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

Version:

  • 0.1.2

Last updated:

  • 27 July 2022

First released:

  • 27 July 2022

License:

Supported data:

  • Information not submitted

Plugin type:

GitHub activity:

  • Stars: 1
  • Forks: 0
  • Issues + PRs: 0

Python versions supported:

Operating system:

Requirements:

  • numpy
  • magicgui
  • qtpy
  • scikit-image

Sign up to receive updates