Skip to main content

Create annotations for instance segmentation using Segment Anything models

Project description

napari-SAM4IS

English | 日本語

License Apache Software License 2.0 PyPI Python Version tests codecov napari hub

napari plugin for instance and semantic segmentation annotation using Segment Anything Model (SAM)

This is a plugin for napari, a multi-dimensional image viewer for Python, that allows for instance and semantic segmentation annotation. This plugin provides an easy-to-use interface for annotating images with the option to output annotations as COCO format.


This napari plugin was generated with Cookiecutter using @napari's cookiecutter-napari-plugin template.

Installation

Requirements: Python 3.10-3.13

Step 1: Install napari-SAM4IS

You can install napari-SAM4IS via pip:

pip install napari-SAM4IS

Or via conda:

conda install -c conda-forge napari-SAM4IS

To install the latest development version:

pip install git+https://github.com/hiroalchem/napari-SAM4IS.git

Step 2: Install Segment Anything Model (Optional - for local model usage)

Note: Installing the Segment Anything Model is only required if you plan to use local models. If you're using the API mode, you can skip this step.

To use local models, install SAM:

pip install git+https://github.com/facebookresearch/segment-anything.git

Or you can install from source by cloning the repository:

git clone https://github.com/facebookresearch/segment-anything.git
cd segment-anything
pip install -e .

For more detailed instructions, please refer to the SAM installation guide.

Usage

Preparation

  1. Open an image in napari and launch the plugin. (Opening an image after launching the plugin is also possible.)
  2. Upon launching the plugin, several layers will be automatically created: SAM-Box, SAM-Positive, SAM-Negative, SAM-Predict, and Accepted. The usage of these layers will be explained later.
  3. Choose between local model or API mode:
    • Local Model Mode: Select the model you want to use and click the load button. (The default option is recommended.)
    • API Mode: Check the "Use API" checkbox, then enter your API URL and API Key. No model loading is required. This mode is designed to work with the SAM API provided by LPIXEL Inc. via IMACEL. For API access, please contact IMACEL directly.
  4. Next, select the image layer you want to annotate.
  5. Then, select whether you want to do instance segmentation or semantic segmentation. (Note that for 3D images, semantic segmentation should be chosen in the current version.)
  6. Finally, select the output layer as "shapes" for instance segmentation or "labels" for semantic segmentation. (For instance segmentation, the "Accept" layer can also be used.)

Class Management

You can define annotation classes to assign to each segmented object. Classes support a hierarchical (parent–child) structure.

  1. In the Class Management section, type a class name and click Add (or press Enter) to add a new top-level class.
  2. To add a subclass, first select a parent class in the tree, type the subclass name, and click Add Sub.
  3. Click a class in the tree to select it. The selected class will be assigned to subsequent annotations.
  4. To reassign a class, select an existing annotation in the output Shapes layer, then click the desired class.
  5. Classes with subclasses cannot be deleted. Remove all subclasses first. Classes in use cannot be deleted either.
  6. You can load class definitions from a YAML file (click Load). The supported formats are:
    # New hierarchical format
    classes:
      - id: 0
        name: animal
        children:
          - id: 1
            name: cat
          - id: 2
            name: dog
      - id: 3
        name: vehicle
    
    # Legacy flat format (still supported)
    names:
      0: cat
      1: dog
      2: bird
    
  7. Class definitions are automatically saved as class.yaml alongside the COCO JSON output.

Annotation with SAM

  1. Select the SAM-Box layer and use the rectangle tool to enclose the object you want to segment.
  2. An automatic segmentation mask will be created and output to the SAM-Predict layer.
  3. You can refine the prediction by adding point prompts: click on the SAM-Positive layer to add points that should be included, or on the SAM-Negative layer to add points that should be excluded.
  4. If you want to make further adjustments, do so in the SAM-Predict layer.
  5. To accept or reject the annotation, press A or R on the keyboard, respectively.
  6. If you accept the annotation, it will be output as label 1 for semantic segmentation or converted to a polygon and output to the designated layer for instance segmentation. The currently selected class will be assigned to the annotation.
  7. If you reject the annotation, the segmentation mask in the SAM-Predict layer will be discarded.
  8. After accepting or rejecting the annotation, the SAM-Predict layer will automatically reset to blank and return to the SAM-Box layer.

Manual Annotation (without SAM)

You can also annotate without using SAM by enabling Manual Mode.

  1. Check the Manual Mode checkbox. SAM-related controls and layers will be hidden.
  2. The SAM-Predict layer switches to paint mode. Use napari's standard Labels tools (paint brush, eraser, fill) from the layer controls panel to draw your annotation.
  3. Adjust brush size using napari's standard Labels controls.
  4. Press A to accept or R to reject, just like SAM mode.
  5. After accepting, the painted mask is converted to a polygon (instance mode) or merged into the output Labels layer (semantic mode), with the selected class assigned.

Annotation Attributes

Each annotation can have additional attributes to support quality control workflows.

  1. Select one or more annotations in the output Shapes layer.
  2. In the Annotation Attributes panel, you can set:
    • Unclear boundary: Mark annotations where the object boundary is ambiguous.
    • Uncertain class: Mark annotations where the object class is uncertain.
  3. Click Accept Selected to mark the selected annotations as reviewed (sets status to "approved" with a timestamp), or Accept All to review all annotations at once.
  4. Attributes are saved as part of the COCO JSON output under each annotation's "attributes" field.
  5. When multiple annotations are selected with mixed attribute values, checkboxes show a mixed state indicator.

Display Settings

The Display Settings panel lets you customize the appearance of annotation layers and persist those preferences across sessions.

  • Accepted edge color: Click the color swatch to open a color picker and change the outline color of accepted annotations. The new color is applied immediately to all existing shapes on the Accepted layer and saved for future sessions.
  • Annotation text color: Click the color swatch to change the color of class label text shown on annotation shapes.
  • Annotation text size: Adjust the integer spinner to change the font size of class label text.

All settings are saved to settings.json in the OS user-config directory (e.g. ~/Library/Preferences/napari-SAM4IS/ on macOS) and restored automatically on the next launch.

Saving and Loading Annotations

  1. If you have output to the labels layer, use napari's standard functionality to save the mask.
  2. If you have output to the shapes layer, you can save the shapes layer using napari's standard functionality, or you can click the Save button to output a JSON file in COCO format for each image in the folder. (The JSON file will have the same name as the image.) Class definitions will also be saved as class.yaml in the same directory.
  3. To load previously saved annotations, click the Load button and select a COCO JSON file. Annotations, class definitions, and attributes will be restored.
  4. When switching images via the Image ComboBox, the plugin will:
    • Prompt to save unsaved annotations (Save / Discard / Cancel)
    • Automatically clear the output layer
    • Auto-load annotations from a matching JSON file if one exists

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 Apache Software License 2.0 license, "napari-SAM4IS" is free and open source software

Citation

If you use napari-SAM4IS in your research, please cite it:

@software{kawai_napari_sam4is,
  author  = {Kawai, Hiroki},
  title   = {napari-SAM4IS},
  url     = {https://github.com/hiroalchem/napari-SAM4IS},
  license = {Apache-2.0},
}

Issues

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

napari_sam4is-0.2.1.tar.gz (3.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

napari_sam4is-0.2.1-py3-none-any.whl (3.2 MB view details)

Uploaded Python 3

File details

Details for the file napari_sam4is-0.2.1.tar.gz.

File metadata

  • Download URL: napari_sam4is-0.2.1.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for napari_sam4is-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5695e55b06d114f089695192d6934f2dc24cebd3b91620f46151c1cbd643871b
MD5 40782dde69df77618fe1f3470ed8ba1c
BLAKE2b-256 d542cd0c408cc0a47a3534a1f553c7129a197a790d86e96680dd1cc1cc965bec

See more details on using hashes here.

File details

Details for the file napari_sam4is-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: napari_sam4is-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for napari_sam4is-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d078a7009d358fcda6e8bf01fe06255ea8fda038dfb183234e3b21192a78d4b7
MD5 eff98ef98e340e8e5a4621bb58cc2918
BLAKE2b-256 3c30f72b5f05f36db6479d696aaa94adfdd7559d9df06d67966ae7b3f1195dbf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page