Mask Type
Property | Type | Description |
---|---|---|
image_id | number (integer greater than or equal to 0) | ID of the uploaded image |
file_name | string | Path to the mask file |
id | number (integer greater than or equal to 0) | ID for annotation differentiation |
category_id | number (integer greater than or equal to 0) | ID of the registered category |
model_metric | string | Model metric information for each annotation |
Format Example
[
{
"image_id" : 1,
"file_name" : "foldere/filename.jpg",
"segments_info" : [
{
"id" : 1,
"category_id" : 17,
"model_metric": "confidencescore:0.17",
},
...
]
},
...
]
Invalid Code
Error Type | 설명 |
---|---|
Syntax error | The JSON syntax is incorrect, or the ID is not a non-negative integer, or a key that does not match the template (such as Bbox, ModelMetric, etc.) is written. |
Dupliacated Annotation ID | Duplicate Annotation ID exists within the same key. |
Dupliacated Image ID | Duplicate Image ID exists within the same key. |
Image ID does not exist | An Image ID that has not been uploaded exists. |
Category ID does not exist | A Category ID that has not been registered exists. |
Category Type does not exist | This is a Category ID that is not a mask. |