Image Annotation
For each image, we store the annotations in a separate JSON file named image_name.image_format.json
with the following file structure:
Fields definitions:
name
- string - image namedescription
- string - (optional) - This field is used to store the text we want to assign to the image. In the labeling interface it corresponds to the 'data' filed.size
- stores image size. Mostly, it is used to get the image size without the actual image reading to speed up some data processing steps.width
- image width in pixelsheight
- image height in pixels
tags
- list of strings that will be interpreted as image tagsobjects
- list of objects on the image which can be of different types (point, rectangle, polygon, line, bitmap, etc.)
Full image annotation example with objects and tags
Example:
Last updated