Image Metadata

To extract the annotations metadata from the images then you will find it in the following format.

This is stored in the EXIF as a JSON string in the image caption/description field.

Root Object #

All the fields are optional.

KeyTypeDescription
metadataObjectSee below for a description of the metadata object keys.
imageLabelStringA string label that maps to the label’s classification field in ToolZ. This is not the same string that is used for display. This string needs to be unique within ToolZ.
annotationsArrayAn array of annotation objects. See below for a description of the annotation keys.
Metadata Object #
KeyTypeDescription
isTaggedBooleanIndicates if the file is marked as tagged. This is an open interpretation.
Annotation Object #

All the fields are mandatory.

KeyTypeDescription
uniqueIdentifierStringA UUID that uniquely identifies the annotation.
labelStringA string label the maps to the label’s classification field in ToolZ. This is not the same string that is used for display. This string needs to be unique within ToolZ.
coordinatesObjectSee below for a description of the coordinate object
Coordinate Object #

All the fields are mandatory.

KeyTypeDescription
xNumberThe centre x coordinate for the box.
yNumberThe centre y coordinate for the box.
widthNumberThe width of the box.
heightNumberThe height of the box.