-
-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathexample_anno.json
108 lines (108 loc) · 2.5 KB
/
example_anno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"videos": [
{
"file_name": "video1.mp4",
"width": 1080,
"height": 920,
"id": 0
},
{
"file_name": "video2.mp4",
"width": 1080,
"height": 920,
"id": 1
}
],
"annotations": [
{
"id": 0,
"video_id": 0,
"category_id": 0,
"track": [
{
"frame": 0,
"bbox": [
0,
15,
20,
30
],
"outside": 1,
"occluded": 0
},
{
"frame": 1,
"bbox": [
10,
15,
25,
30
],
"outside": 0,
"occluded": 0
},
{
"frame": 2,
"bbox": [
15,
15,
30,
30
],
"outside": 0,
"occluded": 0
}
]
},
{
"id": 1,
"video_id": 0,
"category_id": 1,
"track": [
{
"frame": 7,
"bbox": [
0,
15,
20,
30
],
"outside": 1,
"occluded": 0
},
{
"frame": 9,
"bbox": [
10,
15,
25,
30
],
"outside": 0,
"occluded": 0
},
{
"frame": 10,
"bbox": [
15,
15,
30,
30
],
"outside": 1,
"occluded": 0
}
]
}
],
"categories": [
{
"id": 0,
"name": "cat"
},
{
"id": 1,
"name": "dog"
}
]
}