Datasets:

Languages:
English
ArXiv:
Libraries:
Datasets
License:
File size: 14,965 Bytes
61ecbda
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
<annotation>
    <folder>images</folder>
    <filename>MD_ROP_034.jpg</filename>
    <size>
        <width>3840</width>
        <height>2160</height>
        <depth>3</depth>
    </size>
    <object>
        <name>animal-31</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1593.585205</xmin>
            <ymin>169.921753</ymin>
            <xmax>1609.581055</xmax>
            <ymax>186.913879</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-110</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2199.427246</xmin>
            <ymin>588.727783</ymin>
            <xmax>2217.422607</xmax>
            <ymax>615.715271</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-27</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2034.470337</xmin>
            <ymin>873.595825</ymin>
            <xmax>2062.463135</xmax>
            <ymax>887.589355</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-25</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1264.670776</xmin>
            <ymin>1078.500977</ymin>
            <xmax>1297.662231</xmax>
            <ymax>1097.492188</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-23</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1227.680420</xmin>
            <ymin>1101.490234</ymin>
            <xmax>1246.675415</xmax>
            <ymax>1113.484619</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-22</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>594.845337</xmin>
            <ymin>1552.281494</ymin>
            <xmax>646.831787</xmax>
            <ymax>1570.273193</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-21</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1.000000</xmin>
            <ymin>1145.469849</ymin>
            <xmax>21.994534</xmax>
            <ymax>1167.459717</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-20</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1639.573120</xmin>
            <ymin>1144.470337</ymin>
            <xmax>1669.565308</xmax>
            <ymax>1165.460571</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-18</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>3694.038086</xmin>
            <ymin>1408.348145</ymin>
            <xmax>3723.030518</xmax>
            <ymax>1418.343506</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-17</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2114.449463</xmin>
            <ymin>1856.140747</ymin>
            <xmax>2132.444824</xmax>
            <ymax>1880.129639</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-44</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2235.417969</xmin>
            <ymin>135.937500</ymin>
            <xmax>2298.401611</xmax>
            <ymax>274.873169</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-51</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1619.578369</xmin>
            <ymin>122.943520</ymin>
            <xmax>1726.550537</xmax>
            <ymax>285.868042</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-16</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1242.676514</xmin>
            <ymin>479.778229</ymin>
            <xmax>1265.670532</xmax>
            <ymax>492.772217</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-15</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1442.624512</xmin>
            <ymin>713.669922</ymin>
            <xmax>1460.619873</xmax>
            <ymax>729.662537</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-14</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1556.594849</xmin>
            <ymin>708.672241</ymin>
            <xmax>1575.589844</xmax>
            <ymax>726.663879</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-82</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1692.559326</xmin>
            <ymin>861.601379</ymin>
            <xmax>1716.553101</xmax>
            <ymax>884.590759</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-61</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2002.478638</xmin>
            <ymin>953.558838</ymin>
            <xmax>2038.469238</xmax>
            <ymax>994.539795</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-13</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1965.488281</xmin>
            <ymin>1249.421753</ymin>
            <xmax>1988.482300</xmax>
            <ymax>1288.403687</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-11</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1985.483032</xmin>
            <ymin>2017.066162</ymin>
            <xmax>2017.474731</xmax>
            <ymax>2080.037109</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-12</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>378.901550</xmin>
            <ymin>972.549988</ymin>
            <xmax>438.885925</xmax>
            <ymax>1012.531494</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-99</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2121.447754</xmin>
            <ymin>547.746704</ymin>
            <xmax>2150.440186</xmax>
            <ymax>575.733765</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-67</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2982.223389</xmin>
            <ymin>680.685181</ymin>
            <xmax>3028.211426</xmax>
            <ymax>721.666199</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-70</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1617.578857</xmin>
            <ymin>808.625916</ymin>
            <xmax>1649.570435</xmax>
            <ymax>842.610168</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-28</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>669.825806</xmin>
            <ymin>866.599060</ymin>
            <xmax>987.742981</xmax>
            <ymax>1089.495850</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-60</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1458.620361</xmin>
            <ymin>657.695862</ymin>
            <xmax>1530.601562</xmax>
            <ymax>688.681519</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-29</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2193.428955</xmin>
            <ymin>821.619934</ymin>
            <xmax>2232.418701</xmax>
            <ymax>865.599548</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-26</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>625.837219</xmin>
            <ymin>776.640747</ymin>
            <xmax>1090.716064</xmax>
            <ymax>902.582397</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-34</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2616.318848</xmin>
            <ymin>650.699097</ymin>
            <xmax>2653.309326</xmax>
            <ymax>693.679199</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-19</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>3726.029785</xmin>
            <ymin>299.861572</ymin>
            <xmax>3807.008789</xmax>
            <ymax>460.787048</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-79</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2008.477051</xmin>
            <ymin>666.691650</ymin>
            <xmax>2117.448730</xmax>
            <ymax>832.614807</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-30</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2272.408447</xmin>
            <ymin>759.648621</ymin>
            <xmax>2333.392578</xmax>
            <ymax>794.632446</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-24</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2808.268799</xmin>
            <ymin>290.865753</ymin>
            <xmax>2855.256592</xmax>
            <ymax>406.812042</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-136</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1.000000</xmin>
            <ymin>1071.504150</ymin>
            <xmax>123.967964</xmax>
            <ymax>1138.473145</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-7</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>664.827087</xmin>
            <ymin>1270.411987</ymin>
            <xmax>718.813049</xmax>
            <ymax>1318.389771</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-6</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>707.815857</xmin>
            <ymin>1473.318115</ymin>
            <xmax>812.788513</xmax>
            <ymax>1554.280640</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-10</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>365.904938</xmin>
            <ymin>1640.240723</ymin>
            <xmax>475.876282</xmax>
            <ymax>1703.211548</ymax>
        </bndbox>
    </object>
    <object>
        <name>trash-1</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>221.942444</xmin>
            <ymin>726.663940</ymin>
            <xmax>1334.652588</xmax>
            <ymax>1273.410645</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-3</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1844.519775</xmin>
            <ymin>670.689758</ymin>
            <xmax>2196.842285</xmax>
            <ymax>888.588867</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-4</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>2340.390625</xmin>
            <ymin>1537.288452</ymin>
            <xmax>2415.371094</xmax>
            <ymax>1753.188477</ymax>
        </bndbox>
    </object>
    <object>
        <name>animal-8</name>
        <pose>Unspecified</pose>
        <truncated>0</truncated>
        <occluded>0</occluded>
        <difficult>0</difficult>
        <bndbox>
            <xmin>1124.707275</xmin>
            <ymin>1857.140259</ymin>
            <xmax>1229.679932</xmax>
            <ymax>1948.098145</ymax>
        </bndbox>
    </object>
</annotation>