Mask Type
프로퍼티 | 형식 | 설명 |
---|---|---|
image_id | number (0 이상 정수) | 업로드 완료된 이미지의 ID |
file_name | string | 마스크 파일의 경로 |
id | number (0 이상 정수) | 구분을 위한 annotation별 ID |
category_id | number (0 이상 정수) | 등록 완료된 카테고리의 ID |
model_metric | string | 어노테이션별 model metric 정보 |
Format 예시
[
{
"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 | json문법이 아니거나, ID에 0 이상 정수가 아닌 수가 있거나, 템플릿에 맞지 않는 key (Bbox, ModelMetric등)가 작성되어있습니다. |
Dupliacated Annotation ID | 동일 Key 내에 중복된 Annotation ID가 존재합니다. |
Dupliacated Image ID | 동일 Key 내에 중복된 Image ID가 존재합니다. |
Image ID does not exist | 업로드하지 않은 Image ID가 존재합니다. |
Category ID does not exist | 등록되지 않은 Category ID가 존재합니다. |
Category Type does not exist | Mask가 아닌 Category ID입니다. |