Add Segmentation Annotations

📘

Click for Python SDK

Dataset.annotate(
    annotations: List[SegmentationAnnotation],
    update: bool,
    asynchronous: bool
) -> Union[dict, AsyncJob]

When uploading a mask annotation, Nucleus expects the mask file to be in PNG format. Currently, Nucleus only supports uploading masks from URL (local upload coming soon). For each mask, specify the mask_url, as well as the DatasetItem you are annotating. A DatasetItem can be referenced by either its internal ID, or the reference ID you provided when uploading the image.

Nucleus automatically enforces the constraint that each DatasetItem can have at most one ground truth segmentation mask. As a consequence, if during upload a duplicate mask is detected for a given image, by default it will be ignored. You can change this behavior by specifying the optional 'onConflict' flag. Setting the 'onConflict' flag to 'update' will replace the existing segmentation with the new mask specified in the request body.

Path Params
string
required

The Scale-generated ID of the Dataset.

Body Params
segmentations
array of objects
required

An array of SegmentationAnnotation objects.

segmentations*
boolean
Defaults to false

Whether to overwrite existing annotation masks upon annotation_id and reference_id collision.

Responses

Language
Credentials
:
Click Try It! to start a request and see the response here! Or choose an example:
application/json