From 9c8d12d2deafae057353d0ecefee0bb09f1116ce Mon Sep 17 00:00:00 2001 From: lxm <1367240116@qq.com> Date: Mon, 24 Jul 2023 19:21:16 +0800 Subject: [PATCH 1/2] Eval model on COCO val --- CMakeLists.txt | 3 + .../test/eval_mAP_on_coco_val/coco_eval.py | 29 + .../eval_mAP_on_coco_val.cpp | 99 + .../test/eval_mAP_on_coco_val/gt_coco.json | 15382 ++++++++++++++++ .../test/eval_mAP_on_coco_val/pd2coco_json.py | 73 + 5 files changed, 15586 insertions(+) create mode 100644 samples/test/eval_mAP_on_coco_val/coco_eval.py create mode 100644 samples/test/eval_mAP_on_coco_val/eval_mAP_on_coco_val.cpp create mode 100644 samples/test/eval_mAP_on_coco_val/gt_coco.json create mode 100644 samples/test/eval_mAP_on_coco_val/pd2coco_json.py diff --git a/CMakeLists.txt b/CMakeLists.txt index e35dffe..d19ed0c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -269,6 +269,9 @@ target_link_libraries(GimbalUdpDetectionInfoSender sv_world) add_executable(EvalFpsOnVideo samples/test/eval_fps_on_video.cpp) target_link_libraries(EvalFpsOnVideo sv_world) +add_executable(EvalModelOnCocoVal samples/test/eval_mAP_on_coco_val/eval_mAP_on_coco_val.cpp) +target_link_libraries(EvalModelOnCocoVal sv_world) + include_directories(${CMAKE_CURRENT_SOURCE_DIR}/samples/calib) add_executable(CameraCalibrarion samples/calib/calibrate_camera_charuco.cpp) target_link_libraries(CameraCalibrarion ${OpenCV_LIBS}) diff --git a/samples/test/eval_mAP_on_coco_val/coco_eval.py b/samples/test/eval_mAP_on_coco_val/coco_eval.py new file mode 100644 index 0000000..89ac998 --- /dev/null +++ b/samples/test/eval_mAP_on_coco_val/coco_eval.py @@ -0,0 +1,29 @@ +from pycocotools.coco import COCO +from pycocotools.cocoeval import COCOeval + +if __name__ == '__main__': + pred_json = '/home/amov/SpireCV/samples/test/eval_mAP_on_coco_val/pd_coco.json' + anno_json = '/home/amov/SpireCV/samples/test/eval_mAP_on_coco_val/gt_coco.json' + + # use COCO API to load forecast results and annotations + cocoGt = COCO(anno_json) + cocoDt = cocoGt.loadRes(pred_json) + + # create COCO eval object + cocoEval = COCOeval(cocoGt, cocoDt, 'bbox') + + # assessment + cocoEval.evaluate() + cocoEval.accumulate() + cocoEval.summarize() + + # save results + with open('coco_eval.txt', 'w') as f: + f.write(str(cocoEval.stats)) + + + + + + + diff --git a/samples/test/eval_mAP_on_coco_val/eval_mAP_on_coco_val.cpp b/samples/test/eval_mAP_on_coco_val/eval_mAP_on_coco_val.cpp new file mode 100644 index 0000000..c4da828 --- /dev/null +++ b/samples/test/eval_mAP_on_coco_val/eval_mAP_on_coco_val.cpp @@ -0,0 +1,99 @@ +#include +#include +// 包含SpireCV SDK头文件 +#include + +using namespace std; +using namespace cv; + +//extract name +std::string GetImageFileName(const std::string& imagePath) { + size_t lastSlash = imagePath.find_last_of("/\\"); + if (lastSlash == std::string::npos) { + return imagePath; + } else { + std::string fileName = imagePath.substr(lastSlash + 1); + size_t lastDot = fileName.find_last_of("."); + if (lastDot != std::string::npos) { + return fileName.substr(0, lastDot); + } + return fileName; + } +} + + +int main(int argc, char *argv[]) +{ + // 实例化 通用目标 检测器类 + sv::CommonObjectDetector cod; + // 手动导入相机参数,如果使用Amov的G1等吊舱或相机,则可以忽略该步骤,将自动下载相机参数文件 + cod.loadCameraParams(sv::get_home() + "/SpireCV/calib_webcam_640x480.yaml"); + + //load data + string val_path = sv::get_home() + "/SpireCV/datasets/coco128/images/train2017"; + vector val_image; + glob(val_path, val_image, false); + if (val_image.size() == 0) + { + printf("val_image error!!!\n"); + exit(1); + } + + //preds folder + std::string folder = sv::get_home() + "/SpireCV/datasets/coco128/preds"; + int checkStatus = std::system(("if [ -d \"" + folder + "\" ]; then echo; fi").c_str()); + if(checkStatus == 0) + { + int removeStatus = std::system(("rm -rf \"" + folder + "\"").c_str()); + if(removeStatus != 0) + { + printf("remove older preds folder error!!!\n"); + exit(1); + } + } + + int status = std::system(("mkdir \""+folder+"\"").c_str()); + if(status != 0) + { + printf("create preds folder error!!!\n"); + exit(1); + } + + + for (int i = 0; i < val_image.size(); i++) { + + //create pred file + std::string val_image_name = GetImageFileName(val_image[i]); + std::string filename = sv::get_home() + "/SpireCV/datasets/coco128/preds/"+ val_image_name + ".txt"; + std::ofstream file(filename); + file.is_open(); + file< Date: Tue, 25 Jul 2023 09:13:01 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20samp?= =?UTF-8?q?les/test/eval=5FmAP=5Fon=5Fcoco=5Fval/gt=5Fcoco.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/eval_mAP_on_coco_val/gt_coco.json | 15382 ---------------- 1 file changed, 15382 deletions(-) delete mode 100644 samples/test/eval_mAP_on_coco_val/gt_coco.json diff --git a/samples/test/eval_mAP_on_coco_val/gt_coco.json b/samples/test/eval_mAP_on_coco_val/gt_coco.json deleted file mode 100644 index 42183ae..0000000 --- a/samples/test/eval_mAP_on_coco_val/gt_coco.json +++ /dev/null @@ -1,15382 +0,0 @@ -{ - "info": { - "description": "COCOVal Dataset", - "url": "www.amov.com", - "version": "1.0", - "year": 2023, - "contributor": "lxm", - "date_created": "2023-07-23 08:34:00.041111" - }, - "licenses": [ - { - "url": "http://creativecommons.org/licenses/by-nc-sa/2.0/", - "id": 1, - "name": "Attribution-NonCommercial-ShareAlike License" - } - ], - "images": [ - { - "id": 283, - "file_name": "000000000283.jpg", - "width": 428, - "height": 640, - "date_captured": "2023-07-23 08:34:00.047606", - "license": 1 - }, - { - "id": 307, - "file_name": "000000000307.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.052902", - "license": 1 - }, - { - "id": 92, - "file_name": "000000000092.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.056006", - "license": 1 - }, - { - "id": 94, - "file_name": "000000000094.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.059178", - "license": 1 - }, - { - "id": 397, - "file_name": "000000000397.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.061494", - "license": 1 - }, - { - "id": 394, - "file_name": "000000000394.jpg", - "width": 640, - "height": 611, - "date_captured": "2023-07-23 08:34:00.064406", - "license": 1 - }, - { - "id": 71, - "file_name": "000000000071.jpg", - "width": 640, - "height": 426, - "date_captured": "2023-07-23 08:34:00.066454", - "license": 1 - }, - { - "id": 74, - "file_name": "000000000074.jpg", - "width": 640, - "height": 426, - "date_captured": "2023-07-23 08:34:00.068339", - "license": 1 - }, - { - "id": 520, - "file_name": "000000000520.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.070507", - "license": 1 - }, - { - "id": 544, - "file_name": "000000000544.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.072769", - "license": 1 - }, - { - "id": 78, - "file_name": "000000000078.jpg", - "width": 612, - "height": 612, - "date_captured": "2023-07-23 08:34:00.075729", - "license": 1 - }, - { - "id": 61, - "file_name": "000000000061.jpg", - "width": 640, - "height": 488, - "date_captured": "2023-07-23 08:34:00.078364", - "license": 1 - }, - { - "id": 389, - "file_name": "000000000389.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.080374", - "license": 1 - }, - { - "id": 443, - "file_name": "000000000443.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.082045", - "license": 1 - }, - { - "id": 643, - "file_name": "000000000643.jpg", - "width": 500, - "height": 375, - "date_captured": "2023-07-23 08:34:00.083212", - "license": 1 - }, - { - "id": 326, - "file_name": "000000000326.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.084604", - "license": 1 - }, - { - "id": 572, - "file_name": "000000000572.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.086156", - "license": 1 - }, - { - "id": 34, - "file_name": "000000000034.jpg", - "width": 640, - "height": 425, - "date_captured": "2023-07-23 08:34:00.088522", - "license": 1 - }, - { - "id": 562, - "file_name": "000000000562.jpg", - "width": 423, - "height": 640, - "date_captured": "2023-07-23 08:34:00.089787", - "license": 1 - }, - { - "id": 247, - "file_name": "000000000247.jpg", - "width": 640, - "height": 424, - "date_captured": "2023-07-23 08:34:00.091459", - "license": 1 - }, - { - "id": 36, - "file_name": "000000000036.jpg", - "width": 481, - "height": 640, - "date_captured": "2023-07-23 08:34:00.094022", - "license": 1 - }, - { - "id": 636, - "file_name": "000000000636.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.096117", - "license": 1 - }, - { - "id": 133, - "file_name": "000000000133.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.098074", - "license": 1 - }, - { - "id": 612, - "file_name": "000000000612.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.100815", - "license": 1 - }, - { - "id": 472, - "file_name": "000000000472.jpg", - "width": 640, - "height": 226, - "date_captured": "2023-07-23 08:34:00.101617", - "license": 1 - }, - { - "id": 529, - "file_name": "000000000529.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.103551", - "license": 1 - }, - { - "id": 263, - "file_name": "000000000263.jpg", - "width": 591, - "height": 640, - "date_captured": "2023-07-23 08:34:00.106215", - "license": 1 - }, - { - "id": 196, - "file_name": "000000000196.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.108640", - "license": 1 - }, - { - "id": 431, - "file_name": "000000000431.jpg", - "width": 640, - "height": 389, - "date_captured": "2023-07-23 08:34:00.110328", - "license": 1 - }, - { - "id": 488, - "file_name": "000000000488.jpg", - "width": 640, - "height": 406, - "date_captured": "2023-07-23 08:34:00.111933", - "license": 1 - }, - { - "id": 110, - "file_name": "000000000110.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.113905", - "license": 1 - }, - { - "id": 294, - "file_name": "000000000294.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.115429", - "license": 1 - }, - { - "id": 400, - "file_name": "000000000400.jpg", - "width": 638, - "height": 640, - "date_captured": "2023-07-23 08:34:00.118089", - "license": 1 - }, - { - "id": 321, - "file_name": "000000000321.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.120123", - "license": 1 - }, - { - "id": 428, - "file_name": "000000000428.jpg", - "width": 640, - "height": 360, - "date_captured": "2023-07-23 08:34:00.121456", - "license": 1 - }, - { - "id": 81, - "file_name": "000000000081.jpg", - "width": 640, - "height": 425, - "date_captured": "2023-07-23 08:34:00.122798", - "license": 1 - }, - { - "id": 471, - "file_name": "000000000471.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.124268", - "license": 1 - }, - { - "id": 623, - "file_name": "000000000623.jpg", - "width": 375, - "height": 500, - "date_captured": "2023-07-23 08:34:00.125594", - "license": 1 - }, - { - "id": 486, - "file_name": "000000000486.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.127656", - "license": 1 - }, - { - "id": 536, - "file_name": "000000000536.jpg", - "width": 448, - "height": 336, - "date_captured": "2023-07-23 08:34:00.128666", - "license": 1 - }, - { - "id": 491, - "file_name": "000000000491.jpg", - "width": 500, - "height": 313, - "date_captured": "2023-07-23 08:34:00.129820", - "license": 1 - }, - { - "id": 322, - "file_name": "000000000322.jpg", - "width": 640, - "height": 481, - "date_captured": "2023-07-23 08:34:00.131694", - "license": 1 - }, - { - "id": 260, - "file_name": "000000000260.jpg", - "width": 500, - "height": 333, - "date_captured": "2023-07-23 08:34:00.132859", - "license": 1 - }, - { - "id": 436, - "file_name": "000000000436.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.134429", - "license": 1 - }, - { - "id": 387, - "file_name": "000000000387.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.136644", - "license": 1 - }, - { - "id": 257, - "file_name": "000000000257.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.138606", - "license": 1 - }, - { - "id": 109, - "file_name": "000000000109.jpg", - "width": 640, - "height": 416, - "date_captured": "2023-07-23 08:34:00.140524", - "license": 1 - }, - { - "id": 127, - "file_name": "000000000127.jpg", - "width": 640, - "height": 481, - "date_captured": "2023-07-23 08:34:00.142522", - "license": 1 - }, - { - "id": 192, - "file_name": "000000000192.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.144542", - "license": 1 - }, - { - "id": 349, - "file_name": "000000000349.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.146172", - "license": 1 - }, - { - "id": 241, - "file_name": "000000000241.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.147996", - "license": 1 - }, - { - "id": 502, - "file_name": "000000000502.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.150055", - "license": 1 - }, - { - "id": 208, - "file_name": "000000000208.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.151766", - "license": 1 - }, - { - "id": 138, - "file_name": "000000000138.jpg", - "width": 640, - "height": 573, - "date_captured": "2023-07-23 08:34:00.154266", - "license": 1 - }, - { - "id": 605, - "file_name": "000000000605.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.156635", - "license": 1 - }, - { - "id": 154, - "file_name": "000000000154.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.158462", - "license": 1 - }, - { - "id": 49, - "file_name": "000000000049.jpg", - "width": 381, - "height": 500, - "date_captured": "2023-07-23 08:34:00.159785", - "license": 1 - }, - { - "id": 595, - "file_name": "000000000595.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.162223", - "license": 1 - }, - { - "id": 142, - "file_name": "000000000142.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.163959", - "license": 1 - }, - { - "id": 626, - "file_name": "000000000626.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.165649", - "license": 1 - }, - { - "id": 315, - "file_name": "000000000315.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.167397", - "license": 1 - }, - { - "id": 165, - "file_name": "000000000165.jpg", - "width": 640, - "height": 536, - "date_captured": "2023-07-23 08:34:00.169999", - "license": 1 - }, - { - "id": 629, - "file_name": "000000000629.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.172192", - "license": 1 - }, - { - "id": 564, - "file_name": "000000000564.jpg", - "width": 520, - "height": 640, - "date_captured": "2023-07-23 08:34:00.174100", - "license": 1 - }, - { - "id": 589, - "file_name": "000000000589.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.175850", - "license": 1 - }, - { - "id": 312, - "file_name": "000000000312.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.178035", - "license": 1 - }, - { - "id": 620, - "file_name": "000000000620.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.179930", - "license": 1 - }, - { - "id": 30, - "file_name": "000000000030.jpg", - "width": 640, - "height": 428, - "date_captured": "2023-07-23 08:34:00.181386", - "license": 1 - }, - { - "id": 446, - "file_name": "000000000446.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.183136", - "license": 1 - }, - { - "id": 438, - "file_name": "000000000438.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.185075", - "license": 1 - }, - { - "id": 144, - "file_name": "000000000144.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.187591", - "license": 1 - }, - { - "id": 625, - "file_name": "000000000625.jpg", - "width": 640, - "height": 446, - "date_captured": "2023-07-23 08:34:00.189659", - "license": 1 - }, - { - "id": 599, - "file_name": "000000000599.jpg", - "width": 640, - "height": 407, - "date_captured": "2023-07-23 08:34:00.191364", - "license": 1 - }, - { - "id": 584, - "file_name": "000000000584.jpg", - "width": 640, - "height": 426, - "date_captured": "2023-07-23 08:34:00.192986", - "license": 1 - }, - { - "id": 395, - "file_name": "000000000395.jpg", - "width": 640, - "height": 580, - "date_captured": "2023-07-23 08:34:00.195117", - "license": 1 - }, - { - "id": 136, - "file_name": "000000000136.jpg", - "width": 500, - "height": 374, - "date_captured": "2023-07-23 08:34:00.196284", - "license": 1 - }, - { - "id": 86, - "file_name": "000000000086.jpg", - "width": 512, - "height": 640, - "date_captured": "2023-07-23 08:34:00.197988", - "license": 1 - }, - { - "id": 415, - "file_name": "000000000415.jpg", - "width": 359, - "height": 640, - "date_captured": "2023-07-23 08:34:00.199313", - "license": 1 - }, - { - "id": 64, - "file_name": "000000000064.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.201173", - "license": 1 - }, - { - "id": 560, - "file_name": "000000000560.jpg", - "width": 460, - "height": 312, - "date_captured": "2023-07-23 08:34:00.202467", - "license": 1 - }, - { - "id": 474, - "file_name": "000000000474.jpg", - "width": 333, - "height": 500, - "date_captured": "2023-07-23 08:34:00.203831", - "license": 1 - }, - { - "id": 581, - "file_name": "000000000581.jpg", - "width": 473, - "height": 500, - "date_captured": "2023-07-23 08:34:00.205896", - "license": 1 - }, - { - "id": 42, - "file_name": "000000000042.jpg", - "width": 640, - "height": 478, - "date_captured": "2023-07-23 08:34:00.208346", - "license": 1 - }, - { - "id": 328, - "file_name": "000000000328.jpg", - "width": 640, - "height": 491, - "date_captured": "2023-07-23 08:34:00.210556", - "license": 1 - }, - { - "id": 531, - "file_name": "000000000531.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.212300", - "license": 1 - }, - { - "id": 73, - "file_name": "000000000073.jpg", - "width": 565, - "height": 640, - "date_captured": "2023-07-23 08:34:00.215713", - "license": 1 - }, - { - "id": 194, - "file_name": "000000000194.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.217783", - "license": 1 - }, - { - "id": 338, - "file_name": "000000000338.jpg", - "width": 640, - "height": 327, - "date_captured": "2023-07-23 08:34:00.219248", - "license": 1 - }, - { - "id": 9, - "file_name": "000000000009.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.221479", - "license": 1 - }, - { - "id": 368, - "file_name": "000000000368.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.224307", - "license": 1 - }, - { - "id": 508, - "file_name": "000000000508.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.226225", - "license": 1 - }, - { - "id": 201, - "file_name": "000000000201.jpg", - "width": 640, - "height": 428, - "date_captured": "2023-07-23 08:34:00.227985", - "license": 1 - }, - { - "id": 532, - "file_name": "000000000532.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.230102", - "license": 1 - }, - { - "id": 332, - "file_name": "000000000332.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.231988", - "license": 1 - }, - { - "id": 490, - "file_name": "000000000490.jpg", - "width": 500, - "height": 495, - "date_captured": "2023-07-23 08:34:00.233446", - "license": 1 - }, - { - "id": 357, - "file_name": "000000000357.jpg", - "width": 640, - "height": 218, - "date_captured": "2023-07-23 08:34:00.234403", - "license": 1 - }, - { - "id": 597, - "file_name": "000000000597.jpg", - "width": 640, - "height": 248, - "date_captured": "2023-07-23 08:34:00.235490", - "license": 1 - }, - { - "id": 459, - "file_name": "000000000459.jpg", - "width": 516, - "height": 640, - "date_captured": "2023-07-23 08:34:00.237553", - "license": 1 - }, - { - "id": 309, - "file_name": "000000000309.jpg", - "width": 600, - "height": 600, - "date_captured": "2023-07-23 08:34:00.240245", - "license": 1 - }, - { - "id": 164, - "file_name": "000000000164.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.241908", - "license": 1 - }, - { - "id": 590, - "file_name": "000000000590.jpg", - "width": 409, - "height": 500, - "date_captured": "2023-07-23 08:34:00.243262", - "license": 1 - }, - { - "id": 450, - "file_name": "000000000450.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.245054", - "license": 1 - }, - { - "id": 404, - "file_name": "000000000404.jpg", - "width": 426, - "height": 640, - "date_captured": "2023-07-23 08:34:00.246596", - "license": 1 - }, - { - "id": 650, - "file_name": "000000000650.jpg", - "width": 640, - "height": 427, - "date_captured": "2023-07-23 08:34:00.248117", - "license": 1 - }, - { - "id": 542, - "file_name": "000000000542.jpg", - "width": 640, - "height": 484, - "date_captured": "2023-07-23 08:34:00.249917", - "license": 1 - }, - { - "id": 359, - "file_name": "000000000359.jpg", - "width": 500, - "height": 332, - "date_captured": "2023-07-23 08:34:00.250818", - "license": 1 - }, - { - "id": 250, - "file_name": "000000000250.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.252748", - "license": 1 - }, - { - "id": 384, - "file_name": "000000000384.jpg", - "width": 446, - "height": 640, - "date_captured": "2023-07-23 08:34:00.254301", - "license": 1 - }, - { - "id": 77, - "file_name": "000000000077.jpg", - "width": 500, - "height": 375, - "date_captured": "2023-07-23 08:34:00.255724", - "license": 1 - }, - { - "id": 370, - "file_name": "000000000370.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.257448", - "license": 1 - }, - { - "id": 72, - "file_name": "000000000072.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.259603", - "license": 1 - }, - { - "id": 634, - "file_name": "000000000634.jpg", - "width": 427, - "height": 640, - "date_captured": "2023-07-23 08:34:00.261127", - "license": 1 - }, - { - "id": 149, - "file_name": "000000000149.jpg", - "width": 640, - "height": 428, - "date_captured": "2023-07-23 08:34:00.262598", - "license": 1 - }, - { - "id": 113, - "file_name": "000000000113.jpg", - "width": 416, - "height": 640, - "date_captured": "2023-07-23 08:34:00.264427", - "license": 1 - }, - { - "id": 514, - "file_name": "000000000514.jpg", - "width": 360, - "height": 640, - "date_captured": "2023-07-23 08:34:00.265851", - "license": 1 - }, - { - "id": 25, - "file_name": "000000000025.jpg", - "width": 640, - "height": 426, - "date_captured": "2023-07-23 08:34:00.268072", - "license": 1 - }, - { - "id": 540, - "file_name": "000000000540.jpg", - "width": 640, - "height": 425, - "date_captured": "2023-07-23 08:34:00.270028", - "license": 1 - }, - { - "id": 575, - "file_name": "000000000575.jpg", - "width": 640, - "height": 513, - "date_captured": "2023-07-23 08:34:00.273106", - "license": 1 - }, - { - "id": 641, - "file_name": "000000000641.jpg", - "width": 640, - "height": 428, - "date_captured": "2023-07-23 08:34:00.274890", - "license": 1 - }, - { - "id": 89, - "file_name": "000000000089.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.276625", - "license": 1 - }, - { - "id": 308, - "file_name": "000000000308.jpg", - "width": 640, - "height": 426, - "date_captured": "2023-07-23 08:34:00.278407", - "license": 1 - }, - { - "id": 151, - "file_name": "000000000151.jpg", - "width": 480, - "height": 640, - "date_captured": "2023-07-23 08:34:00.280801", - "license": 1 - }, - { - "id": 382, - "file_name": "000000000382.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.282307", - "license": 1 - }, - { - "id": 510, - "file_name": "000000000510.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.284442", - "license": 1 - }, - { - "id": 360, - "file_name": "000000000360.jpg", - "width": 500, - "height": 375, - "date_captured": "2023-07-23 08:34:00.285677", - "license": 1 - }, - { - "id": 419, - "file_name": "000000000419.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.288161", - "license": 1 - }, - { - "id": 143, - "file_name": "000000000143.jpg", - "width": 600, - "height": 500, - "date_captured": "2023-07-23 08:34:00.289727", - "license": 1 - }, - { - "id": 569, - "file_name": "000000000569.jpg", - "width": 640, - "height": 480, - "date_captured": "2023-07-23 08:34:00.291849", - "license": 1 - } - ], - "annotations": [ - { - "image_id": 283, - "category_id": 40, - "bbox": [ - 63.18029, - 42.58015999999998, - 82.399844, - 311.74976000000004 - ], - "id": 0, - "area": 25688.131591037443, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 283, - "category_id": 57, - "bbox": [ - 0.22996440000000362, - 142.60992000000002, - 59.560052, - 86.35007999999999 - ], - "id": 1, - "area": 5143.015255004159, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 283, - "category_id": 57, - "bbox": [ - 148.650178, - 67.01983999999999, - 279.350036, - 289.02976 - ], - "id": 2, - "area": 80740.47386107135, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 283, - "category_id": 61, - "bbox": [ - 0.0, - 210.82016000000002, - 424.65988799999997, - 420.14016 - ], - "id": 3, - "area": 178416.67328990207, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 283, - "category_id": 41, - "bbox": [ - 164.760098, - 156.23968000000002, - 88.26002, - 214.22016 - ], - "id": 4, - "area": 18907.0756060032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 307, - "category_id": 17, - "bbox": [ - 406.30048, - 197.82000000000005, - 171.63968, - 167.76 - ], - "id": 5, - "area": 28794.2727168, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 307, - "category_id": 3, - "bbox": [ - 384.00006400000007, - 49.379808, - 48.220032, - 16.569983999999998 - ], - "id": 6, - "area": 799.005158719488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 307, - "category_id": 30, - "bbox": [ - 351.64000000000004, - 366.73992, - 70.11008000000001, - 106.78992000000001 - ], - "id": 7, - "area": 7487.0498343936015, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 92, - "category_id": 43, - "bbox": [ - 418.65024, - 118.60010399999999, - 164.67968, - 308.399896 - ], - "id": 8, - "area": 50787.19618531328, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 92, - "category_id": 56, - "bbox": [ - 125.70016000000001, - 0.9598959999999863, - 376.14016, - 292.659822 - ], - "id": 9, - "area": 110081.11227265152, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 94, - "category_id": 3, - "bbox": [ - 356.230272, - 275.21979695000005, - 42.870016, - 38.4600181 - ], - "id": 10, - "area": 1648.7815913072895, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 94, - "category_id": 8, - "bbox": [ - 542.0, - 263.00018850000004, - 82.59968, - 93.51001099999999 - ], - "id": 11, - "area": 7723.89698539648, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 57, - "bbox": [ - 477.94016000000005, - 0.0, - 143.47968, - 98.06016 - ], - "id": 12, - "area": 14069.6403775488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 54, - "bbox": [ - 4.310079999999971, - 44.22, - 631.02016, - 412.05024000000003 - ], - "id": 13, - "area": 260012.00837283843, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 42, - "bbox": [ - -3.200000000092018e-05, - 294.56976000000003, - 36.750016, - 71.88 - ], - "id": 14, - "area": 2641.59115008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 42, - "bbox": [ - 479.99968, - 315.42984, - 150.86016, - 158.33999999999997 - ], - "id": 15, - "area": 23887.197734399997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 43, - "bbox": [ - 595.23984, - 404.53008, - 44.76, - 52.10016 - ], - "id": 16, - "area": 2332.0031616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 61, - "bbox": [ - 1.249920000000003, - 349.08984, - 503.69024, - 130.90992 - ], - "id": 17, - "area": 65938.0490231808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 397, - "category_id": 1, - "bbox": [ - 3.740159999999989, - -0.000240000000005125, - 225.66016000000002, - 205.33008 - ], - "id": 18, - "area": 46334.81870561281, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 394, - "category_id": 17, - "bbox": [ - 0.0, - 16.169809499999985, - 625.80992, - 572.390299 - ], - "id": 19, - "area": 358207.5272259661, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 394, - "category_id": 30, - "bbox": [ - 235.34976000000003, - 185.44980350000003, - 355.47008, - 291.990179 - ], - "id": 20, - "area": 103793.77228834432, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 467.819712, - 216.92985, - 27.750016, - 14.150016 - ], - "id": 21, - "area": 392.663170400256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 522.6902719999999, - 223.400151, - 24.350016, - 11.999994 - ], - "id": 22, - "area": 292.20004589990396, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 436.9, - 217.8298389, - 23.32, - 8.6199822 - ], - "id": 23, - "area": 201.01798490400003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 586.359712, - 231.3100125, - 27.150016, - 14.309979000000002 - ], - "id": 24, - "area": 388.5161588096641, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 7, - "bbox": [ - 47.87040000000002, - 185.71981200000002, - 483.42976, - 119.65999199999999 - ], - "id": 25, - "area": 57847.20121416191, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 497.00976, - 223.9498614, - 23.56, - 11.1399852 - ], - "id": 26, - "area": 262.458051312, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 601.86016, - 216.63995699999998, - 16.72, - 5.419998 - ], - "id": 27, - "area": 90.62236655999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 8, - "bbox": [ - 333.480288, - 192.5999889, - 23.889984000000002, - 10.1799942 - ], - "id": 28, - "area": 243.1998985580928, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 8, - "bbox": [ - 362.36019200000004, - 197.28013140000002, - 24.310016, - 7.069981199999999 - ], - "id": 29, - "area": 171.8713560916992, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 617.670208, - 237.4300563, - 22.329984, - 12.7999794 - ], - "id": 30, - "area": 285.8233352023296, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 479.14988800000003, - 219.99986159999997, - 23.929984, - 12.6499848 - ], - "id": 31, - "area": 302.71393386424324, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 387.490048, - 200.7899028, - 16.009984, - 4.2899904 - ], - "id": 32, - "area": 68.68267766415359, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 366.690176, - 196.9501731, - 19.699968000000002, - 7.8099858 - ], - "id": 33, - "area": 153.85647034045442, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 348.790272, - 198.22007910000002, - 19.350016, - 5.1099978 - ], - "id": 34, - "area": 98.87853918996481, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 499.8800959999999, - 219.1800885, - 19.179968000000002, - 6.210015 - ], - "id": 35, - "area": 119.10788897952003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 71, - "category_id": 3, - "bbox": [ - 460.42016, - 217.17991199999997, - 18.799999999999997, - 11.59998 - ], - "id": 36, - "area": 218.07962399999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 17, - "bbox": [ - 61.87007999999997, - 276.24971099999993, - 296.41984, - 103.180182 - ], - "id": 37, - "area": 30584.653039610883, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 2, - "bbox": [ - 2.749759999999995, - 3.6599789999999928, - 159.40032, - 312.399858 - ], - "id": 38, - "area": 49796.637333154555, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 295.549664, - 93.960051, - 18.420032, - 58.830174 - ], - "id": 39, - "area": 1083.653687645568, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 326.94019199999997, - 97.0499355, - 13.550016, - 25.929980999999998 - ], - "id": 40, - "area": 351.35165742969593, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 356.619872, - 95.470008, - 15.710016, - 52.080204 - ], - "id": 41, - "area": 818.180838123264, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 462.079776, - 105.0901956, - 31.659968, - 41.8999968 - ], - "id": 42, - "area": 1326.5525578881022, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 277.110048, - 103.839843, - 15.329984000000001, - 46.880022000000004 - ], - "id": 43, - "area": 718.6699871796482, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 74, - "category_id": 1, - "bbox": [ - 282.649728, - 103.41003029999999, - 11.689983999999999, - 24.2500074 - ], - "id": 44, - "area": 283.48219850588157, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 300.039808, - 140.73016800000002, - 32.009984, - 20.259984 - ], - "id": 45, - "area": 648.5217636802561, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 230.029888, - 131.18992799999998, - 34.169984, - 13.959984 - ], - "id": 46, - "area": 477.012429920256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 1, - "bbox": [ - 242.019968, - 307.83988800000003, - 15.209984, - 34.269984 - ], - "id": 47, - "area": 521.245908320256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 449.26016000000004, - 217.60019999999997, - 18.560000000000002, - 17.79 - ], - "id": 48, - "area": 330.18240000000003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 0.1099839999999972, - 187.55999999999997, - 23.220032000000003, - 15.48 - ], - "id": 49, - "area": 359.4460953600001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 444.38012800000007, - 174.05980799999998, - 21.969984, - 16.089984 - ], - "id": 50, - "area": 353.49669104025605, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 599.289888, - 178.810008, - 19.649984, - 10.419984 - ], - "id": 51, - "area": 204.752518880256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 97.32969599999998, - 194.510088, - 35.819968, - 22.839984 - ], - "id": 52, - "area": 818.1274960005121, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 15, - "bbox": [ - 155.50025599999998, - 184.440192, - 25.499968000000003, - 11.870016 - ], - "id": 53, - "area": 302.685028159488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 1, - "bbox": [ - 453.08022399999993, - 316.95012, - 17.860032, - 18.87 - ], - "id": 54, - "area": 337.01880384000003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 520, - "category_id": 1, - "bbox": [ - 508.049856, - 323.609832, - 8.099968, - 13.700016 - ], - "id": 55, - "area": 110.96969119948801, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 33, - "bbox": [ - 596.5702080000001, - 293.77986434999997, - 13.809984, - 7.440005299999999 - ], - "id": 56, - "area": 102.74635415291519, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 253.31968000000003, - 243.72989199999995, - 113.23008, - 161.200186 - ], - "id": 57, - "area": 18252.70995679488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 107.47008000000001, - 301.2999535, - 129.53984, - 111.309933 - ], - "id": 58, - "area": 14419.07091123072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 25.529920000000004, - 269.28989850000005, - 101.66976, - 142.79008100000001 - ], - "id": 59, - "area": 14517.433265650561, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 76.23024, - 191.66001749999998, - 28.84, - 44.779917000000005 - ], - "id": 60, - "area": 1291.4528062800002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 247.290208, - 185.43990849999997, - 29.169984000000003, - 50.009813 - ], - "id": 61, - "area": 1458.7854450529921, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 193.14, - 209.98000415, - 30.04, - 27.5300137 - ], - "id": 62, - "area": 827.001611548, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 148.910112, - 193.7000527, - 31.150015999999997, - 41.9799926 - ], - "id": 63, - "area": 1307.6774411698816, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 0.0699840000000016, - 221.16977400000002, - 33.48, - 77.900172 - ], - "id": 64, - "area": 2608.09775856, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 544.8100159999999, - 211.75008995, - 21.739967999999998, - 20.999988100000003 - ], - "id": 65, - "area": 456.5390692943808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 35, - "bbox": [ - 223.139744, - 300.79020090000006, - 52.740032, - 7.6000022000000005 - ], - "id": 66, - "area": 400.8243592280704, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 36, - "bbox": [ - 218.389792, - 324.92012035000005, - 20.270016000000002, - 30.579989299999998 - ], - "id": 67, - "area": 619.8568723908288, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 20.460031999999998, - 237.09004199999998, - 42.72, - 59.440107999999995 - ], - "id": 68, - "area": 2539.28141376, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 174.279936, - 213.9899398, - 18.899968, - 24.9099844 - ], - "id": 69, - "area": 470.79790804049924, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 18.770016, - 194.86999, - 25.64, - 45.630074 - ], - "id": 70, - "area": 1169.95509736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 544, - "category_id": 1, - "bbox": [ - 512.309952, - 203.12989935000002, - 16.390016, - 29.720011299999996 - ], - "id": 71, - "area": 487.1114607271807, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 78, - "category_id": 75, - "bbox": [ - 359.799696, - 2.0697839999999985, - 214.13023199999998, - 235.910088 - ], - "id": 72, - "area": 50515.48187458041, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 61, - "category_id": 1, - "bbox": [ - 261.20032, - 205.92014, - 48.08, - 57.239959999999996 - ], - "id": 73, - "area": 2752.0972767999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 61, - "category_id": 1, - "bbox": [ - 393.39004800000004, - 210.34010239999998, - 32.529984, - 39.7399872 - ], - "id": 74, - "area": 1292.7411477762048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 61, - "category_id": 21, - "bbox": [ - 370.11008, - 248.89976400000003, - 83.08992, - 47.640024000000004 - ], - "id": 75, - "area": 3958.4057829580806, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 61, - "category_id": 21, - "bbox": [ - 223.24992, - 250.09999999999997, - 141.92000000000002, - 77.710096 - ], - "id": 76, - "area": 11028.61682432, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 61, - "category_id": 1, - "bbox": [ - 261.54012800000004, - 196.57005999999998, - 34.209984000000006, - 54.1802 - ], - "id": 77, - "area": 1853.5037751168004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 28, - "bbox": [ - 306.65024, - 300.72983999999997, - 65.42976, - 179.26992 - ], - "id": 78, - "area": 11729.587840819202, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 0.00031999999998788553, - 256.72008, - 141.29984000000002, - 222.20016 - ], - "id": 79, - "area": 31396.847055974406, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 467.34015999999997, - 292.19016, - 97.71008, - 187.81008 - ], - "id": 80, - "area": 18350.9379416064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 91.30016, - 249.63024, - 91.69984, - 170.61984 - ], - "id": 81, - "area": 15645.8120288256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 566.9401600000001, - 270.66984, - 73.05984, - 124.88015999999999 - ], - "id": 82, - "area": 9123.724508774398, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 41.339968, - 172.709928, - 14.070016, - 44.319984 - ], - "id": 83, - "area": 623.582883999744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 170.84019199999997, - 285.240048, - 47.990016000000004, - 47.349984000000006 - ], - "id": 84, - "area": 2272.3264897597446, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 429.70012800000006, - 257.19, - 43.329984, - 48.18 - ], - "id": 85, - "area": 2087.63862912, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 394.45984000000004, - 242.340168, - 32.559999999999995, - 26.679984 - ], - "id": 86, - "area": 868.7002790399999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 562.50016, - 371.80992, - 77.23968, - 108.02976000000001 - ], - "id": 87, - "area": 8344.184092876802, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 25, - "bbox": [ - 385.90016, - 266.44992, - 77.13024, - 213.55008 - ], - "id": 88, - "area": 16471.1689224192, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 140.99039999999997, - 84.04968, - 368.06976, - 389.60016 - ], - "id": 89, - "area": 143400.0373871616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 517.460288, - 269.93987999999996, - 8.409984, - 9.63 - ], - "id": 90, - "area": 80.98814592000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 389, - "category_id": 1, - "bbox": [ - 516.91008, - 269.97, - 73.79968, - 145.98 - ], - "id": 91, - "area": 10773.277286399998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 16, - "bbox": [ - 198.61983999999995, - 53.27999999999997, - 372.41024000000004, - 380.68992000000003 - ], - "id": 92, - "area": 141772.82447278083, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 1, - "bbox": [ - 117.57024000000001, - 1.0797599999999932, - 519.90976, - 472.45008 - ], - "id": 93, - "area": 245631.4077047808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 1, - "bbox": [ - 488.62976000000003, - 2.1599999999999966, - 151.37024, - 303.09984 - ], - "id": 94, - "area": 45880.2955247616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 66, - "bbox": [ - 500.59007999999994, - 194.87016, - 139.40992, - 152.58 - ], - "id": 95, - "area": 21271.165593600002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 58, - "bbox": [ - 1.080319999999972, - 1.9000800000000027, - 568.84992, - 470.24016 - ], - "id": 96, - "area": 267496.0773967872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 443, - "category_id": 1, - "bbox": [ - 2.3699199999999934, - 152.68992, - 143.40992, - 311.71008 - ], - "id": 97, - "area": 44702.317635993604, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 63, - "bbox": [ - 105.93, - 169.32993750000003, - 210.31, - 198.70987499999998 - ], - "id": 98, - "area": 41790.673811249995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 40, - "bbox": [ - 66.89999999999999, - 252.6200625, - 46.559999999999995, - 115.549875 - ], - "id": 99, - "area": 5380.0021799999995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 358.28000000000003, - 122.3000625, - 5.8, - 47.350125 - ], - "id": 100, - "area": 274.630725, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 403.21000000000004, - 116.24981249999999, - 48.01, - 63.160125 - ], - "id": 101, - "area": 3032.31760125, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 332.17, - 123.1599375, - 6.23, - 48.250125000000004 - ], - "id": 102, - "area": 300.59827875, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 337.67, - 122.82993750000001, - 5.11, - 48.880125 - ], - "id": 103, - "area": 249.77743875000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 342.93, - 124.54012499999999, - 6.42, - 47.25 - ], - "id": 104, - "area": 303.34499999999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 332.31, - 256.330125, - 29.35, - 57.0 - ], - "id": 105, - "area": 1672.95, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 347.25, - 121.83993750000002, - 8.79, - 48.910124999999994 - ], - "id": 106, - "area": 429.9199987499999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 331.56, - 122.42999999999999, - 72.05, - 48.96 - ], - "id": 107, - "area": 3527.5679999999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 290.73, - 338.76013125000003, - 122.19, - 32.0299875 - ], - "id": 108, - "area": 3913.7441726249995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 78, - "bbox": [ - 192.97, - 3.2199375000000003, - 48.239999999999995, - 53.140125 - ], - "id": 109, - "area": 2563.47963, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 46, - "bbox": [ - 154.34, - 72.12999375, - 40.52, - 23.8300125 - ], - "id": 110, - "area": 965.5921065, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 65, - "bbox": [ - 98.39000000000001, - 357.09, - 36.08, - 17.73 - ], - "id": 111, - "area": 639.6984, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 87.59, - 90.60013124999999, - 54.760000000000005, - 5.2699875 - ], - "id": 112, - "area": 288.5845155, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 86.26, - 94.92013125, - 55.559999999999995, - 5.2699875 - ], - "id": 113, - "area": 292.8005055, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 88.63000000000001, - 100.36987500000001, - 53.73, - 4.74 - ], - "id": 114, - "area": 254.68019999999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 78, - "bbox": [ - 385.45, - 34.08, - 39.86, - 55.17 - ], - "id": 115, - "area": 2199.0762, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 74, - "bbox": [ - 88.9, - 104.99986874999999, - 53.72, - 5.2000125 - ], - "id": 116, - "area": 279.3446715, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 643, - "category_id": 40, - "bbox": [ - 205.86999999999998, - 47.73018749999999, - 27.18, - 66.139875 - ], - "id": 117, - "area": 1797.6818025, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 326, - "category_id": 1, - "bbox": [ - 152.56992000000002, - 90.6800685, - 364.67008, - 335.770169 - ], - "id": 118, - "area": 122445.33439084352, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 326, - "category_id": 41, - "bbox": [ - 231.68992, - 34.86988750000003, - 246.89983999999998, - 264.11017499999997 - ], - "id": 119, - "area": 65208.75994987199, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 572, - "category_id": 1, - "bbox": [ - 139.78015799999997, - 58.220159999999964, - 145.309808, - 541.7702400000001 - ], - "id": 120, - "area": 78724.52955451392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 572, - "category_id": 1, - "bbox": [ - 70.739809, - 254.79968000000005, - 128.86006, - 346.27007999999995 - ], - "id": 121, - "area": 44620.3832850048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 572, - "category_id": 29, - "bbox": [ - 289.2799035, - 378.9104, - 137.719883, - 221.77983999999998 - ], - "id": 122, - "area": 30543.49361655872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 34, - "category_id": 23, - "bbox": [ - 0.960000000000008, - 20.060000000000002, - 441.23008, - 379.15015 - ], - "id": 123, - "area": 167292.451016512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 562, - "category_id": 80, - "bbox": [ - 139.72007250000001, - 159.84031999999996, - 78.609897, - 118.68992 - ], - "id": 124, - "area": 9330.20238613824, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 562, - "category_id": 80, - "bbox": [ - 188.56980450000003, - 57.49024, - 78.40008900000001, - 221.98976 - ], - "id": 125, - "area": 17404.01694108864, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 562, - "category_id": 80, - "bbox": [ - 63.279954, - 81.54016000000001, - 83.41983, - 182.65024 - ], - "id": 126, - "area": 15236.651970259201, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 562, - "category_id": 42, - "bbox": [ - 63.00013949999999, - 77.44959999999998, - 309.259953, - 526.8902400000001 - ], - "id": 127, - "area": 162946.05085855874, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 55.619839999999996, - 186.0100932, - 85.71008, - 35.559989599999994 - ], - "id": 128, - "area": 3047.8495534151675, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 514.32016, - 179.7700428, - 35.0, - 18.209994400000003 - ], - "id": 129, - "area": 637.3498040000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 478.50992, - 175.7998764, - 30.92, - 22.7099912 - ], - "id": 130, - "area": 702.192927904, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 5, - "bbox": [ - 2.859839999999963, - 0.4799680000000137, - 637.13984, - 418.270064 - ], - "id": 131, - "area": 266496.52165374975, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 544.06992, - 172.3098052, - 8.120000000000001, - 6.1700056 - ], - "id": 132, - "area": 50.100445472000004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 533.6599679999999, - 171.51012, - 7.449984, - 6.599984 - ], - "id": 133, - "area": 49.169775200256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 5, - "bbox": [ - 420.19968000000006, - 85.509776, - 219.80032, - 56.090112 - ], - "id": 134, - "area": 12328.62456643584, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 247, - "category_id": 3, - "bbox": [ - 503.74982400000005, - 169.88017920000001, - 15.580032, - 7.7000096000000005 - ], - "id": 135, - "area": 119.9663959683072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 36, - "category_id": 26, - "bbox": [ - 0.0, - 50.11967999999999, - 457.680158, - 430.35008 - ], - "id": 136, - "area": 196962.69260971263, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 36, - "category_id": 1, - "bbox": [ - 167.5801595, - 162.88991999999993, - 310.610079, - 465.18976000000004 - ], - "id": 137, - "area": 144492.62810359104, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 636, - "category_id": 62, - "bbox": [ - 80.71991999999997, - 89.37023999999997, - 265.23024000000004, - 536.2201600000001 - ], - "id": 138, - "area": 142221.80172963845, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 133, - "category_id": 60, - "bbox": [ - 13.990079999999978, - 2.8699200000000076, - 626.0102400000001, - 418.65024 - ], - "id": 139, - "area": 262079.33721845763, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 133, - "category_id": 78, - "bbox": [ - 525.340192, - 20.929992, - 47.950016, - 28.719984 - ], - "id": 140, - "area": 1377.123692319744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 60, - "bbox": [ - 117.84032000000002, - 235.14, - 425.93984, - 240.0 - ], - "id": 141, - "area": 102225.5616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 320.4, - 271.38984, - 71.07968, - 87.70992 - ], - "id": 142, - "area": 6234.393046425599, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 260.31968, - 281.72016, - 62.0, - 81.09984 - ], - "id": 143, - "area": 5028.19008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 268.68, - 249.82008000000002, - 123.98016, - 108.44016 - ], - "id": 144, - "area": 13444.4283872256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 355.44992, - 218.98992, - 73.48032, - 80.11008 - ], - "id": 145, - "area": 5886.5143136256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 423.219968, - 247.70999999999998, - 34.409983999999994, - 38.1 - ], - "id": 146, - "area": 1311.0203903999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 180.88960000000003, - 189.88992, - 103.37024, - 96.60000000000001 - ], - "id": 147, - "area": 9985.565184000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 328.16988799999996, - 242.37984000000003, - 43.169984, - 17.64 - ], - "id": 148, - "area": 761.51851776, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 390.42976, - 254.00976000000003, - 58.0, - 66.24000000000001 - ], - "id": 149, - "area": 3841.9200000000005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 402.65984000000003, - 285.78000000000003, - 138.52032, - 103.70016000000001 - ], - "id": 150, - "area": 14364.579347251201, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 612, - "category_id": 78, - "bbox": [ - 337.35004799999996, - 178.43016, - 49.889984, - 57.58992 - ], - "id": 151, - "area": 2873.16018736128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 472, - "category_id": 5, - "bbox": [ - 394.86016, - 56.679896, - 87.21024, - 31.460103999999998 - ], - "id": 152, - "area": 2743.64322026496, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 529, - "category_id": 4, - "bbox": [ - 17.659865999999994, - 238.86975999999999, - 362.200188, - 348.54016 - ], - "id": 153, - "area": 126241.31147755009, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 529, - "category_id": 1, - "bbox": [ - 108.50005949999998, - 76.36000000000001, - 229.349813, - 410.64 - ], - "id": 154, - "area": 94180.20721032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 529, - "category_id": 1, - "bbox": [ - 25.53011649999999, - 97.90015999999999, - 272.300035, - 196.11008 - ], - "id": 155, - "area": 53400.7816478528, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 263, - "category_id": 21, - "bbox": [ - 156.41021849999996, - 169.33024000000006, - 434.590077, - 463.50015999999994 - ], - "id": 156, - "area": 201432.5702239123, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 263, - "category_id": 21, - "bbox": [ - 1.6598234999999875, - 13.299840000000017, - 387.330171, - 591.79008 - ], - "id": 157, - "area": 229218.15288250367, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 249.7296, - 200.54016000000001, - 210.81024, - 48.64992 - ], - "id": 158, - "area": 10255.9013111808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 448.170144, - 363.71988000000005, - 22.980032, - 42.51 - ], - "id": 159, - "area": 976.88116032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 391.24006399999996, - 374.66999999999996, - 24.620032, - 53.82 - ], - "id": 160, - "area": 1325.0501222399998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 442.26998399999997, - 375.70003199999996, - 6.820032, - 26.030016 - ], - "id": 161, - "area": 177.525542080512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 412.55017599999996, - 404.499912, - 55.979968, - 30.740015999999997 - ], - "id": 162, - "area": 1720.8251119994877, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 533.65024, - 250.15008000000003, - 73.71968, - 122.35008 - ], - "id": 163, - "area": 9019.6087455744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 517.81024, - 213.870048, - 97.93984, - 43.089984 - ], - "id": 164, - "area": 4220.226138562561, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 230.52, - 42.78, - 71.44, - 43.44 - ], - "id": 165, - "area": 3103.3536, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 546.14976, - 251.57016000000002, - 71.68, - 80.60976 - ], - "id": 166, - "area": 5778.1075968000005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 464.49024000000003, - 390.80976, - 121.53984, - 88.15008 - ], - "id": 167, - "area": 10713.7466191872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 275.91040000000004, - 58.21008, - 128.57984, - 62.760000000000005 - ], - "id": 168, - "area": 8069.6707584, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 423.99008000000003, - 236.14008, - 144.88, - 113.72015999999999 - ], - "id": 169, - "area": 16475.7767808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 513.78016, - 315.38016, - 126.22016, - 142.72992 - ], - "id": 170, - "area": 18015.3933391872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 234.68992000000003, - 197.88, - 169.40032, - 86.23008 - ], - "id": 171, - "area": 14607.4031456256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 363.01952, - 337.26023999999995, - 161.24032, - 139.16976 - ], - "id": 172, - "area": 22439.7766367232, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 332.21984, - 157.30007999999998, - 132.68032, - 69.03984 - ], - "id": 173, - "area": 9160.2280639488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 341.69024, - 115.73975999999999, - 151.24992, - 64.57008 - ], - "id": 174, - "area": 9766.2194343936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 189.83007999999998, - 72.850128, - 88.38976000000001, - 33.069984 - ], - "id": 175, - "area": 2923.04794896384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 361.33024, - 47.289839999999984, - 92.99008, - 62.86992000000001 - ], - "id": 176, - "area": 5846.278890393601, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 199.459968, - 254.34996000000004, - 18.249983999999998, - 31.589999999999996 - ], - "id": 177, - "area": 576.5169945599998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 280.50976, - 393.550008, - 37.68, - 28.899984 - ], - "id": 178, - "area": 1088.95139712, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 170.360256, - 269.84011200000003, - 21.539968, - 29.090016 - ], - "id": 179, - "area": 626.5980137594879, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 462.599968, - 401.479968, - 26.369984, - 31.689984000000003 - ], - "id": 180, - "area": 835.664371040256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 415.03983999999997, - 417.749808, - 13.64, - 31.749984 - ], - "id": 181, - "area": 433.06978176, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 61, - "bbox": [ - 0.0, - 41.94023999999999, - 640.0, - 438.06 - ], - "id": 182, - "area": 280358.4, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 43, - "bbox": [ - 210.69984, - 407.69016, - 84.78016, - 66.08016 - ], - "id": 183, - "area": 5602.2865376256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 457.60032, - 121.32012000000003, - 44.080000000000005, - 29.009999999999998 - ], - "id": 184, - "area": 1278.7608, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 115.25984000000001, - 88.64008799999999, - 96.12992, - 39.339984 - ], - "id": 185, - "area": 3781.74951472128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 33.84, - 109.71000000000001, - 117.18016, - 60.20016 - ], - "id": 186, - "area": 7054.2643808256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 0.0001279999999965753, - 145.78967999999998, - 71.34976, - 73.52016 - ], - "id": 187, - "area": 5245.6457711616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 115.29984000000002, - 340.83004800000003, - 40.0, - 25.449984 - ], - "id": 188, - "area": 1017.99936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 379.310112, - 413.34000000000003, - 36.430015999999995, - 30.0 - ], - "id": 189, - "area": 1092.9004799999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 577.339776, - 377.01012000000003, - 12.179968, - 15.03 - ], - "id": 190, - "area": 183.06491904, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 372.899968, - 388.960128, - 31.369984, - 27.249984 - ], - "id": 191, - "area": 854.831562080256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 168.75008, - 359.55004799999995, - 41.760000000000005, - 41.769984 - ], - "id": 192, - "area": 1744.3145318400002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 420.81971200000004, - 373.649808, - 22.390016, - 22.389984000000002 - ], - "id": 193, - "area": 501.312099999744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 52, - "bbox": [ - 434.09984, - 446.580168, - 20.64, - 10.599984 - ], - "id": 194, - "area": 218.78366975999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 45, - "bbox": [ - 526.7099199999999, - 129.889872, - 19.64, - 9.290016 - ], - "id": 195, - "area": 182.45591424, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 250.30006400000002, - 325.69996799999996, - 24.420032, - 20.529984 - ], - "id": 196, - "area": 501.34286623948793, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 288.98976, - 290.27976, - 17.52, - 33.300000000000004 - ], - "id": 197, - "area": 583.416, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 51, - "bbox": [ - 150.97987199999997, - 262.69008, - 16.430016000000002, - 13.92 - ], - "id": 198, - "area": 228.70582272000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 196, - "category_id": 46, - "bbox": [ - 0.0, - 188.89007999999998, - 172.64, - 92.01024 - ], - "id": 199, - "area": 15884.647833599998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 431, - "category_id": 33, - "bbox": [ - 359.090176, - 194.15983895, - 12.179968, - 11.6400081 - ], - "id": 200, - "area": 141.7749261777408, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 431, - "category_id": 1, - "bbox": [ - 153.74975999999998, - 67.1201995, - 157.29024, - 252.46994700000002 - ], - "id": 201, - "area": 39711.05855641729, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 431, - "category_id": 39, - "bbox": [ - 296.7904, - 158.950068, - 81.26976, - 62.089846 - ], - "id": 202, - "area": 5046.026882856961, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 33, - "bbox": [ - 431.12028799999996, - 252.62010200000003, - 8.289984, - 7.580019999999999 - ], - "id": 203, - "area": 62.838244519679996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 180.76032, - 210.29988, - 104.62975999999999, - 131.03000400000002 - ], - "id": 204, - "area": 13709.63787131904, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 112.24032, - 245.319816, - 126.99968, - 110.760048 - ], - "id": 205, - "area": 14066.49065278464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 35, - "bbox": [ - 214.90988800000002, - 225.80014799999998, - 63.449984, - 45.929968 - ], - "id": 206, - "area": 2914.255734720512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 36, - "bbox": [ - 218.970112, - 274.81003200000004, - 24.150016, - 20.490008 - ], - "id": 207, - "area": 494.834021040128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 36, - "bbox": [ - 562.509984, - 253.3200866, - 10.500032, - 7.9899988 - ], - "id": 208, - "area": 83.8952430799616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 209.300128, - 197.889881, - 25.409983999999998, - 70.749966 - ], - "id": 209, - "area": 1797.755504060544, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 546.320288, - 216.449968, - 44.129984, - 49.25998 - ], - "id": 210, - "area": 2173.84212924032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 34.67008000000001, - 208.019987, - 91.23967999999999, - 152.360026 - ], - "id": 211, - "area": 13901.280017031679, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 488, - "category_id": 1, - "bbox": [ - 224.36024, - 181.8601687, - 4.42, - 8.0100146 - ], - "id": 212, - "area": 35.404264532, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 57, - "bbox": [ - 138.38016000000002, - 133.50984, - 99.45983999999999, - 80.00016000000001 - ], - "id": 213, - "area": 7956.8031135743995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 57, - "bbox": [ - 243.96032000000002, - 137.60976, - 83.82976, - 118.70016000000001 - ], - "id": 214, - "area": 9950.6059247616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 43, - "bbox": [ - 294.93984, - 367.89, - 189.69024000000002, - 112.11023999999999 - ], - "id": 215, - "area": 21266.2183320576, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 44, - "bbox": [ - 274.17980800000004, - 360.36, - 16.849984, - 119.64 - ], - "id": 216, - "area": 2015.9320857599998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 54, - "bbox": [ - 136.66015999999996, - 391.90991999999994, - 337.69024, - 82.44000000000001 - ], - "id": 217, - "area": 27839.183385600005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 61, - "bbox": [ - 119.18975999999999, - 75.29976, - 144.11008, - 75.85007999999999 - ], - "id": 218, - "area": 10930.7610968064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 208.18016, - -0.00023999999999091415, - 431.82016, - 474.61008 - ], - "id": 219, - "area": 204946.20068321278, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 1.0800000000000125, - 128.35992, - 251.31968, - 281.53008 - ], - "id": 220, - "area": 70754.0496159744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 248.08992, - 1.0800000000000125, - 128.36032, - 136.99007999999998 - ], - "id": 221, - "area": 17584.090505625598, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 196.94976, - 0.0, - 68.04992, - 94.32000000000001 - ], - "id": 222, - "area": 6418.4684544, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 141.19968, - 2.1799199999999956, - 80.89024, - 85.82016 - ], - "id": 223, - "area": 6942.0133392384005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - -0.0003200000000020964, - 0.0, - 130.28032, - 174.43008 - ], - "id": 224, - "area": 22724.8066400256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 131.149792, - 0.0, - 31.070016, - 55.5 - ], - "id": 225, - "area": 1724.385888, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 406.76992, - 1.220016000000001, - 34.72, - 84.10992 - ], - "id": 226, - "area": 2920.2964224, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 42, - "bbox": [ - 184.030208, - 79.34995199999999, - 19.209984, - 18.230016 - ], - "id": 227, - "area": 350.198315679744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 57, - "bbox": [ - 0.28003200000000206, - 134.13984, - 44.859967999999995, - 169.36992 - ], - "id": 228, - "area": 7597.929191362559, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 57, - "bbox": [ - 413.539968, - 78.740208, - 22.889984000000002, - 12.789984 - ], - "id": 229, - "area": 292.76252912025603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 61, - "bbox": [ - 584.660224, - 100.54012800000001, - 55.340032, - 35.649983999999996 - ], - "id": 230, - "area": 1972.8712553594878, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 263.059872, - 0.7399920000000026, - 14.190016, - 28.659983999999998 - ], - "id": 231, - "area": 406.685631519744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 1, - "bbox": [ - 335.72, - -4.7999999999603915e-05, - 79.50016, - 93.43008 - ], - "id": 232, - "area": 7427.7063088128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 61, - "bbox": [ - 3.149759999999958, - 377.35992, - 636.57024, - 102.63983999999999 - ], - "id": 233, - "area": 65337.4675823616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 42, - "bbox": [ - 163.16009599999998, - 77.92024799999999, - 18.699968, - 23.379984 - ], - "id": 234, - "area": 437.204952640512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 42, - "bbox": [ - 209.780256, - 80.590152, - 19.979968, - 15.740016 - ], - "id": 235, - "area": 314.485015999488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 110, - "category_id": 42, - "bbox": [ - 228.12028800000002, - 75.91000799999999, - 16.529984, - 23.379984 - ], - "id": 236, - "area": 386.47076144025596, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 1, - "bbox": [ - 27.699840000000023, - 69.829872, - 364.91008, - 357.170128 - ], - "id": 237, - "area": 130334.97998209023, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 415.569952, - 349.85002430000003, - 15.310016, - 23.549989399999998 - ], - "id": 238, - "area": 360.55071451383037, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 69, - "bbox": [ - 507.6, - 312.8097385, - 131.45984, - 109.390141 - ], - "id": 239, - "area": 14380.410433437442, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 43, - "bbox": [ - 608.509952, - 251.82980444999998, - 7.6700159999999995, - 40.7500191 - ], - "id": 240, - "area": 312.5532984973056, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 44, - "bbox": [ - 445.72988799999996, - 329.04995759999997, - 17.329984, - 34.6700088 - ], - "id": 241, - "area": 600.8306977838591, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 44, - "bbox": [ - 454.369888, - 320.6900235, - 15.889983999999998, - 45.170195 - ], - "id": 242, - "area": 717.7536758268799, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 401.489984, - 323.2899411, - 23.100032000000002, - 25.3199898 - ], - "id": 243, - "area": 584.8925746196736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 383.890016, - 341.85993625, - 35.579968, - 40.040003500000005 - ], - "id": 244, - "area": 1424.6220432498883, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 402.19027200000005, - 111.67010749999999, - 14.470016000000001, - 114.66017500000001 - ], - "id": 245, - "area": 1659.1345668128004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 420.950272, - 114.40013200000001, - 13.430016, - 103.26995000000001 - ], - "id": 246, - "area": 1386.9170808192002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 328.989888, - 256.4798985, - 18.169984, - 66.930115 - ], - "id": 247, - "area": 1216.11911866816, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 44, - "bbox": [ - 461.60016, - 335.52013915000003, - 16.279999999999998, - 33.2799957 - ], - "id": 248, - "area": 541.7983299959999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 44, - "bbox": [ - 466.52003199999996, - 325.2398366, - 13.790016000000001, - 32.499994799999996 - ], - "id": 249, - "area": 448.1754482919168, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 44, - "bbox": [ - 469.28015999999997, - 335.37982695, - 15.32, - 33.1899841 - ], - "id": 250, - "area": 508.47055641199995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 75, - "bbox": [ - 0.1499839999999999, - 0.0, - 53.72, - 53.959990000000005 - ], - "id": 251, - "area": 2898.7306628, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 403.990112, - 367.62012035000004, - 32.190016, - 21.1099833 - ], - "id": 252, - "area": 679.5307001867328, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 392.560096, - 299.36007115, - 16.539968000000002, - 32.3499897 - ], - "id": 253, - "area": 535.0677944383297, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 388.560128, - 387.14981935, - 14.729984, - 22.9699953 - ], - "id": 254, - "area": 338.3476632490752, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 401.36, - 355.24010935, - 21.6, - 25.1400093 - ], - "id": 255, - "area": 543.02420088, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 294, - "category_id": 45, - "bbox": [ - 623.2299616, - 50.48995315, - 4.7899968, - 22.5699817 - ], - "id": 256, - "area": 108.11014011905856, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 400, - "category_id": 17, - "bbox": [ - 417.499863, - 148.97024, - 97.619742, - 78.76992 - ], - "id": 257, - "area": 7689.49926776064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 400, - "category_id": 9, - "bbox": [ - 1.4402850000000171, - 64.71967999999998, - 636.560034, - 477.48032 - ], - "id": 258, - "area": 303944.8887335309, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 321, - "category_id": 53, - "bbox": [ - 363.6704, - 199.72008, - 248.46976, - 240.56016000000002 - ], - "id": 259, - "area": 59771.92522076161, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 321, - "category_id": 53, - "bbox": [ - 370.45024, - 62.11992000000001, - 234.91008, - 242.82 - ], - "id": 260, - "area": 57040.865625599996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 321, - "category_id": 49, - "bbox": [ - 78.54975999999999, - 43.64016000000004, - 215.68, - 379.00991999999997 - ], - "id": 261, - "area": 81744.85954559999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 428, - "category_id": 28, - "bbox": [ - 374.55967999999996, - 200.49012000000005, - 94.65024, - 154.51991999999998 - ], - "id": 262, - "area": 14625.347512780798, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 428, - "category_id": 1, - "bbox": [ - 226.93984, - 32.650199999999984, - 355.91999999999996, - 323.26992 - ], - "id": 263, - "area": 115058.22992639999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 428, - "category_id": 56, - "bbox": [ - 405.40959999999995, - 234.72990000000004, - 175.13024000000001, - 121.61988 - ], - "id": 264, - "area": 21299.318773171202, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 81, - "category_id": 5, - "bbox": [ - 38.54975999999999, - 40.479974999999996, - 584.01024, - 318.01985 - ], - "id": 265, - "area": 185726.84892326398, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 471, - "category_id": 6, - "bbox": [ - 120.89983999999998, - 112.26982899999999, - 459.63008, - 212.060156 - ], - "id": 266, - "area": 97469.22646709249, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 471, - "category_id": 1, - "bbox": [ - 211.02972799999998, - 155.139775, - 16.209984, - 44.980180000000004 - ], - "id": 267, - "area": 729.12799811712, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 623, - "category_id": 14, - "bbox": [ - 271.29, - 72.62, - 103.71, - 238.38 - ], - "id": 268, - "area": 24722.389799999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 623, - "category_id": 78, - "bbox": [ - 1.1199375000000202, - 31.45999999999995, - 355.06012499999997, - 462.92 - ], - "id": 269, - "area": 164364.433065, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 623, - "category_id": 57, - "bbox": [ - 273.6200625, - 62.92, - 99.619875, - 239.84 - ], - "id": 270, - "area": 23892.83082, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 623, - "category_id": 1, - "bbox": [ - 162.33993750000002, - 1.299999999999983, - 211.690125, - 490.91 - ], - "id": 271, - "area": 103920.79926375, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 73, - "bbox": [ - 391.66016, - 175.8998745, - 63.040000000000006, - 109.85984099999999 - ], - "id": 272, - "area": 6925.56437664, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 70, - "bbox": [ - 392.04992, - 274.9198935, - 247.95007999999999, - 152.079893 - ], - "id": 273, - "area": 37708.221635741436, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 40, - "bbox": [ - 623.899776, - 233.26986515000002, - 16.019968, - 38.1699997 - ], - "id": 274, - "area": 611.4821737540095, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 44, - "bbox": [ - 223.64976, - 192.280235, - 6.92, - 51.959922 - ], - "id": 275, - "area": 359.56266024, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 40, - "bbox": [ - 498.81996799999996, - 278.459937, - 23.049984000000002, - 25.309998 - ], - "id": 276, - "area": 583.3950489400321, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 40, - "bbox": [ - 83.05984000000001, - 219.1699195, - 5.12, - 29.079981 - ], - "id": 277, - "area": 148.88950272, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 44, - "bbox": [ - 235.42024000000004, - 200.87021535, - 3.9000000000000004, - 16.5299813 - ], - "id": 278, - "area": 64.46692707, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 486, - "category_id": 46, - "bbox": [ - 252.42976, - 299.84025399999996, - 131.39008, - 88.219908 - ], - "id": 279, - "area": 11591.220769712641, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 57, - "bbox": [ - 288.41008, - 138.979848, - 156.330048, - 195.53016 - ], - "id": 280, - "area": 30567.23929824768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 1, - "bbox": [ - 292.86006399999997, - 133.949928, - 155.14016, - 198.269904 - ], - "id": 281, - "area": 30759.62462974464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 1, - "bbox": [ - 169.41008, - 79.520112, - 108.420032, - 255.62006399999999 - ], - "id": 282, - "area": 27714.335518722048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 1, - "bbox": [ - 88.33999999999997, - 68.57995199999996, - 98.159936, - 263.520096 - ], - "id": 283, - "area": 25867.115758073858, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 27, - "bbox": [ - 22.099996800000003, - 258.039936, - 44.0500032, - 77.960064 - ], - "id": 284, - "area": 3434.1410686722047, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 27, - "bbox": [ - 202.070176, - 185.979864, - 69.479872, - 63.220079999999996 - ], - "id": 285, - "area": 4392.52306622976, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 27, - "bbox": [ - 343.779744, - 235.3201032, - 45.570112, - 12.2999856 - ], - "id": 286, - "area": 560.5117213903872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 68, - "bbox": [ - 206.4299552, - 106.54985040000001, - 13.6799936, - 21.140011200000004 - ], - "id": 287, - "area": 289.1952179199284, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 68, - "bbox": [ - 98.62005439999999, - 87.68004, - 28.9300032, - 39.349968 - ], - "id": 288, - "area": 1138.3947001598976, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 57, - "bbox": [ - 0.6800192000000038, - 141.91010400000002, - 82.479936, - 194.09006399999998 - ], - "id": 289, - "area": 16008.536056955902, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 536, - "category_id": 68, - "bbox": [ - 361.34999039999997, - 224.65008720000003, - 8.0399872, - 12.470001600000002 - ], - "id": 290, - "area": 100.25865324797954, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 491, - "category_id": 78, - "bbox": [ - 134.44000000000003, - 11.270034500000008, - 261.19, - 297.600087 - ], - "id": 291, - "area": 77730.16672353, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 491, - "category_id": 78, - "bbox": [ - 287.78999999999996, - 0.7701364999999925, - 199.57, - 155.449885 - ], - "id": 292, - "area": 31023.133549449998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 491, - "category_id": 78, - "bbox": [ - 0.0, - 4.880139500000013, - 91.86999999999999, - 181.28991299999998 - ], - "id": 293, - "area": 16655.104307309997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 491, - "category_id": 78, - "bbox": [ - 79.47, - 0.9100475000000046, - 213.26, - 120.010147 - ], - "id": 294, - "area": 25593.363949219998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 322, - "category_id": 1, - "bbox": [ - 71.66016000000002, - 110.47992800000003, - 206.30016, - 275.790008 - ], - "id": 295, - "area": 56895.522776801285, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 322, - "category_id": 30, - "bbox": [ - 282.10992, - 205.97976035, - 43.239999999999995, - 12.7500113 - ], - "id": 296, - "area": 551.310488612, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 6, - "bbox": [ - 2.259999999999998, - 93.77013600000001, - 66.14, - 157.859982 - ], - "id": 297, - "area": 10440.85920948, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 1, - "bbox": [ - 261.0, - 139.8801465, - 51.75, - 169.499997 - ], - "id": 298, - "area": 8771.62484475, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 1, - "bbox": [ - 17.29, - 142.1600976, - 23.67, - 27.849988800000002 - ], - "id": 299, - "area": 659.2092348960001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 3, - "bbox": [ - 238.43, - 175.2500412, - 33.15, - 15.7299876 - ], - "id": 300, - "area": 521.4490889399999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 29, - "bbox": [ - 332.28, - 232.16010750000004, - 43.45, - 61.719885000000005 - ], - "id": 301, - "area": 2681.7290032500005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 29, - "bbox": [ - 373.94, - 222.9899535, - 28.35, - 69.719877 - ], - "id": 302, - "area": 1976.55851295, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 260, - "category_id": 29, - "bbox": [ - 334.72, - 205.569891, - 60.78, - 39.96 - ], - "id": 303, - "area": 2428.7688000000003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 436, - "category_id": 1, - "bbox": [ - 7.21010849999999, - 2.8799999999999955, - 419.790105, - 625.5897600000001 - ], - "id": 304, - "area": 262616.3910373248, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 436, - "category_id": 55, - "bbox": [ - 219.7198955, - 237.32032, - 103.430075, - 72.52992 - ], - "id": 305, - "area": 7501.775065344001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 387, - "category_id": 64, - "bbox": [ - 249.16992000000002, - 50.699760000000026, - 375.37024, - 277.21007999999995 - ], - "id": 306, - "area": 104056.41426001918, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 387, - "category_id": 64, - "bbox": [ - 152.37983999999997, - 50.29007999999999, - 470.86016, - 312.38016000000005 - ], - "id": 307, - "area": 147087.3721184256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 387, - "category_id": 68, - "bbox": [ - 332.50016000000005, - 111.88032, - 210.0, - 93.74976000000001 - ], - "id": 308, - "area": 19687.449600000004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 89.29996799999999, - 197.239752, - 23.529984000000002, - 32.780015999999996 - ], - "id": 309, - "area": 771.313251999744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 50.269984, - 199.12992, - 25.089983999999998, - 23.76 - ], - "id": 310, - "area": 596.13801984, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 25, - "bbox": [ - 176.16, - 362.20992, - 50.4, - 55.48992 - ], - "id": 311, - "area": 2796.6919679999996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 8, - "bbox": [ - 249.17023999999998, - 277.95984, - 204.94016, - 122.97024000000002 - ], - "id": 312, - "area": 25201.540660838404, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 8, - "bbox": [ - 508.44991999999996, - 304.48008000000004, - 130.75968, - 63.87984 - ], - "id": 313, - "area": 8352.907436851201, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 139.56992000000002, - 345.57984000000005, - 71.52, - 134.42016 - ], - "id": 314, - "area": 9613.7298432, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 236.73990399999997, - 326.46024000000006, - 28.380032, - 79.71984 - ], - "id": 315, - "area": 2262.4516102348803, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 211.61968000000002, - 332.48999999999995, - 22.28, - 60.49008 - ], - "id": 316, - "area": 1347.7189824, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 264.09020799999996, - 330.65016, - 16.369984, - 72.87984 - ], - "id": 317, - "area": 1193.04181472256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 287.830112, - 337.13975999999997, - 33.150016, - 77.00016000000001 - ], - "id": 318, - "area": 2552.5565360025603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 570.980192, - 327.79008, - 14.750015999999999, - 42.239999999999995 - ], - "id": 319, - "area": 623.0406758399998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 125.18972800000002, - 325.45012799999995, - 10.129984, - 37.029984 - ], - "id": 320, - "area": 375.113145440256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 316.720128, - 334.13016, - 20.169984, - 74.79984 - ], - "id": 321, - "area": 1508.71157600256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 77.650304, - 326.41008, - 20.300031999999998, - 48.16992 - ], - "id": 322, - "area": 977.8509174374399, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 138.10979200000003, - 325.590192, - 15.550016, - 38.450016 - ], - "id": 323, - "area": 597.8983640002559, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 225.17004799999998, - 327.33000000000004, - 15.209984, - 69.54 - ], - "id": 324, - "area": 1057.7022873600001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 227.37014399999998, - 296.50003200000003, - 11.300032, - 11.390016 - ], - "id": 325, - "area": 128.707545280512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 27.5800224, - 303.10020000000003, - 5.6900032, - 7.109999999999999 - ], - "id": 326, - "area": 40.45592275199999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 28.930000000000003, - 276.6, - 5.819999999999999, - 11.76 - ], - "id": 327, - "area": 68.44319999999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 25, - "bbox": [ - 208.46966400000002, - 340.870152, - 11.300032, - 19.580016 - ], - "id": 328, - "area": 221.254807360512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 27, - "bbox": [ - 306.74019200000004, - 360.15996, - 12.510016, - 13.770000000000001 - ], - "id": 329, - "area": 172.26292032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 190.829952, - 330.59995200000003, - 20.630016, - 39.770016 - ], - "id": 330, - "area": 820.456066400256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 8, - "bbox": [ - 519.9599999999999, - 323.80992000000003, - 120.04032000000001, - 156.19008000000002 - ], - "id": 331, - "area": 18749.107184025605, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 8, - "bbox": [ - 55.23967999999998, - 301.11, - 141.23008000000002, - 59.84016 - ], - "id": 332, - "area": 8451.230584012801, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 8, - "bbox": [ - 473.609984, - 320.43012, - 24.780032, - 13.950000000000001 - ], - "id": 333, - "area": 345.6814464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 89.93011200000001, - 177.969888, - 15.030016, - 14.649984 - ], - "id": 334, - "area": 220.189493919744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 27, - "bbox": [ - 93.12976, - 344.24016, - 5.88, - 12.479999999999999 - ], - "id": 335, - "area": 73.38239999999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 1, - "bbox": [ - 537.15968, - 328.859928, - 14.079999999999998, - 39.819984 - ], - "id": 336, - "area": 560.6653747199999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 301.98012800000004, - 260.820072, - 7.089984, - 14.180016 - ], - "id": 337, - "area": 100.536086559744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 295.59987839999997, - 261.400152, - 6.3900032, - 12.200016 - ], - "id": 338, - "area": 77.9581412800512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 10, - "bbox": [ - 55.4, - 299.17000079999997, - 4.88, - 4.2999984 - ], - "id": 339, - "area": 20.983992192, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 27, - "bbox": [ - 208.91020799999998, - 341.47996800000004, - 11.209983999999999, - 29.049984 - ], - "id": 340, - "area": 325.64985584025595, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 257, - "category_id": 27, - "bbox": [ - 472.59976, - 340.8798408, - 6.14, - 4.5999984 - ], - "id": 341, - "area": 28.243990175999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 17, - "bbox": [ - 539.720032, - 295.4501264, - 22.910016, - 18.3899872 - ], - "id": 342, - "area": 421.3149009917952, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 1, - "bbox": [ - 512.88976, - 271.4200528, - 21.240000000000002, - 32.7300064 - ], - "id": 343, - "area": 695.1853359360001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 1, - "bbox": [ - 585.879712, - 268.3499936, - 18.190016, - 22.8200128 - ], - "id": 344, - "area": 415.0963979522048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 1, - "bbox": [ - 548.0200416, - 249.59018240000003, - 4.549996800000001, - 8.1100032 - ], - "id": 345, - "area": 36.900488607989764, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 14, - "bbox": [ - 376.599744, - 261.4898416, - 34.460032, - 23.7499808 - ], - "id": 346, - "area": 818.4250983673855, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 14, - "bbox": [ - 448.370208, - 281.7698624, - 40.289984, - 23.1900032 - ], - "id": 347, - "area": 934.3248578879487, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 1, - "bbox": [ - 74.5599584, - 197.8498496, - 6.290003199999999, - 15.2800128 - ], - "id": 348, - "area": 96.11132940804094, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 109, - "category_id": 1, - "bbox": [ - 604.2600319999999, - 271.450088, - 9.190016, - 11.300016 - ], - "id": 349, - "area": 103.847327840256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 59, - "bbox": [ - 213.55008000000004, - 49.559835, - 64.68992, - 70.600218 - ], - "id": 350, - "area": 4567.12245440256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 61, - "bbox": [ - 107.51968, - 147.13020400000005, - 531.93024, - 333.86979599999995 - ], - "id": 351, - "area": 177595.44071503103, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 42, - "bbox": [ - 381.97024, - 221.20997600000004, - 185.2, - 124.75023599999999 - ], - "id": 352, - "area": 23103.743707199996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 44, - "bbox": [ - 300.91968, - 286.33016100000003, - 104.22015999999999, - 158.909894 - ], - "id": 353, - "area": 16561.61457826304, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 45, - "bbox": [ - 346.67008, - 276.2799065, - 84.91008000000001, - 82.319783 - ], - "id": 354, - "area": 6989.7793601126405, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 56, - "bbox": [ - 179.14976, - 263.5699625, - 125.95008, - 141.149931 - ], - "id": 355, - "area": 17777.84510144448, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 74, - "bbox": [ - 257.21984000000003, - 194.11019550000003, - 129.07008, - 92.519869 - ], - "id": 356, - "area": 11941.54689341952, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 14, - "bbox": [ - -6.399999999473494e-05, - 148.959928, - 64.35007999999999, - 81.949894 - ], - "id": 357, - "area": 5273.4822348915195, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 14, - "bbox": [ - 157.910176, - 86.3301686, - 43.979968, - 16.440002800000002 - ], - "id": 358, - "area": 723.0307970639104, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 26, - "bbox": [ - 294.0, - 0.00024050000000386262, - 104.84992, - 104.669929 - ], - "id": 359, - "area": 10974.633682055679, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 26, - "bbox": [ - 131.36032, - 3.189943900000003, - 32.72, - 55.730103 - ], - "id": 360, - "area": 1823.48897016, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 27, - "bbox": [ - 111.93984000000003, - 123.6398475, - 469.95968, - 163.299981 - ], - "id": 361, - "area": 76744.40681476607, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 1, - "bbox": [ - 444.169952, - 8.670000950000002, - 22.750016, - 35.7499883 - ], - "id": 362, - "area": 813.3128058248127, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 14, - "bbox": [ - 106.04031999999998, - 99.0400645, - 64.99968, - 49.450167 - ], - "id": 363, - "area": 3214.24503094656, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 14, - "bbox": [ - 196.88003199999997, - 147.3501653, - 52.750016, - 36.2699974 - ], - "id": 364, - "area": 1913.2429431699586, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 61, - "bbox": [ - 265.55039999999997, - 95.1501213, - 214.25984, - 23.4099814 - ], - "id": 365, - "area": 5015.818869166976, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 127, - "category_id": 26, - "bbox": [ - 104.35020800000001, - 1.489993700000003, - 28.489984, - 44.540022799999996 - ], - "id": 366, - "area": 1268.944536931635, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 192, - "category_id": 1, - "bbox": [ - 349.47999999999996, - 253.48008000000004, - 131.6, - 220.04976 - ], - "id": 367, - "area": 28958.548415999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 192, - "category_id": 1, - "bbox": [ - 437.20959999999997, - 218.33016, - 78.41024, - 248.02992 - ], - "id": 368, - "area": 19448.0855543808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 192, - "category_id": 1, - "bbox": [ - 0.930016000000002, - 274.22976, - 36.529984, - 205.51008000000002 - ], - "id": 369, - "area": 7507.279934238721, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 192, - "category_id": 1, - "bbox": [ - 268.1100799999999, - 179.46, - 111.34976, - 235.68 - ], - "id": 370, - "area": 26242.9114368, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 192, - "category_id": 35, - "bbox": [ - 13.200000000000003, - 381.39024, - 36.0, - 92.97984 - ], - "id": 371, - "area": 3347.2742399999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 349, - "category_id": 7, - "bbox": [ - 0.00031999999998788553, - 130.52016000000003, - 539.32992, - 257.78976 - ], - "id": 372, - "area": 139033.7306376192, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 349, - "category_id": 59, - "bbox": [ - 396.4, - 280.26984, - 62.88, - 78.37008 - ], - "id": 373, - "area": 4927.910630400001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 349, - "category_id": 59, - "bbox": [ - 454.920032, - 270.70008, - 50.590016000000006, - 62.629920000000006 - ], - "id": 374, - "area": 3168.448654878721, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 349, - "category_id": 59, - "bbox": [ - 498.329792, - 284.91007199999996, - 28.710016, - 39.920016 - ], - "id": 375, - "area": 1146.1042980802558, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 40, - "bbox": [ - 36.100128, - 553.7996800000001, - 29.889984000000002, - 86.20032 - ], - "id": 376, - "area": 2576.52618559488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 58, - "bbox": [ - 312.46008, - 250.91999999999996, - 167.19984, - 296.01984000000004 - ], - "id": 377, - "area": 49494.46988482561, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 58, - "bbox": [ - 0.3299999999999983, - 278.19007999999997, - 143.12016, - 260.43008 - ], - "id": 378, - "area": 37272.7947184128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 1, - "bbox": [ - 132.70008, - 6.569919999999968, - 200.43024, - 626.17024 - ], - "id": 379, - "area": 125503.4514840576, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 1, - "bbox": [ - 1.4399999999999977, - 263.55008, - 205.65984, - 348.04992 - ], - "id": 380, - "area": 71579.8908592128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 1, - "bbox": [ - 295.71000000000004, - 263.06016, - 107.14992000000001, - 257.15008 - ], - "id": 381, - "area": 27553.610499993603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 42, - "bbox": [ - 103.72008000000001, - 595.289792, - 50.72016, - 44.710016 - ], - "id": 382, - "area": 2267.6991651225603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 42, - "bbox": [ - 0.07999200000000073, - 596.4901120000001, - 43.340016, - 43.510016 - ], - "id": 383, - "area": 1885.724789600256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 66, - "bbox": [ - 117.100152, - 321.70016000000004, - 44.120016, - 22.160000000000004 - ], - "id": 384, - "area": 977.6995545600001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 27, - "bbox": [ - 343.93992, - 469.64, - 65.31024, - 73.47008 - ], - "id": 385, - "area": 4798.348557619199, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 1, - "bbox": [ - -2.3999999999801958e-05, - 372.74015999999995, - 45.15, - 203.37984 - ], - "id": 386, - "area": 9182.599776, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 1, - "bbox": [ - 395.51016, - 337.97984, - 84.49008, - 230.11008 - ], - "id": 387, - "area": 19442.0190680064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 59, - "bbox": [ - 90.84983999999999, - 71.11008, - 109.83984000000001, - 201.20000000000002 - ], - "id": 388, - "area": 22099.775808000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 241, - "category_id": 59, - "bbox": [ - 134.44992, - 350.25984, - 49.77984, - 72.27008 - ], - "id": 389, - "area": 3597.5930191872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 502, - "category_id": 22, - "bbox": [ - 226.95999999999998, - 87.99978950000002, - 273.13023999999996, - 257.740189 - ], - "id": 390, - "area": 70396.63967921534, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 208, - "category_id": 72, - "bbox": [ - 1.080319999999972, - 108.94031999999999, - 638.91968, - 366.74976000000004 - ], - "id": 391, - "area": 234323.6392992768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 208, - "category_id": 72, - "bbox": [ - 0.00032000000001630724, - 150.35976, - 304.54976, - 109.76016 - ], - "id": 392, - "area": 33427.4303855616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 208, - "category_id": 80, - "bbox": [ - 157.81024, - 170.20991999999998, - 191.76, - 88.89023999999999 - ], - "id": 393, - "area": 17045.592422399997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 208, - "category_id": 80, - "bbox": [ - 57.35040000000001, - 122.17968000000002, - 158.33983999999998, - 82.29024 - ], - "id": 394, - "area": 13029.823435161597, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 73, - "bbox": [ - 16.66015999999999, - 102.66985350000002, - 123.05984000000001, - 246.120117 - ], - "id": 395, - "area": 30287.50221880128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 75, - "bbox": [ - 315.62016000000006, - 19.6000953, - 68.49984, - 68.499858 - ], - "id": 396, - "area": 4692.229313022721, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 46, - "bbox": [ - 157.45971200000002, - 184.1101143, - 45.590016000000006, - 19.5300174 - ], - "id": 397, - "area": 890.3738057462784, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 70, - "bbox": [ - 260.10015999999996, - 175.12025999999994, - 119.74976, - 357.95997600000004 - ], - "id": 398, - "area": 42865.621215605766, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 72, - "bbox": [ - 496.76992000000007, - 203.17975485, - 129.13024000000001, - 53.5199763 - ], - "id": 399, - "area": 6911.047384413313, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 59, - "bbox": [ - 560.6502399999999, - 45.269865, - 44.0, - 58.7898 - ], - "id": 400, - "area": 2586.7512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 138, - "category_id": 76, - "bbox": [ - 218.38, - 54.989749950000004, - 33.64, - 47.1600201 - ], - "id": 401, - "area": 1586.4630761639999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 605, - "category_id": 61, - "bbox": [ - 0.0, - 2.3500799999999913, - 640.0, - 477.64992 - ], - "id": 402, - "area": 305695.9488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 605, - "category_id": 42, - "bbox": [ - 290.80992000000003, - 123.77976, - 224.86975999999999, - 175.14000000000001 - ], - "id": 403, - "area": 39383.6897664, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 605, - "category_id": 45, - "bbox": [ - 260.52988799999997, - 203.58024000000003, - 58.929984, - 98.02992 - ], - "id": 404, - "area": 5776.90161712128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 605, - "category_id": 42, - "bbox": [ - 409.8896, - 30.19991999999999, - 142.38016, - 142.38000000000002 - ], - "id": 405, - "area": 20272.0871808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 154, - "category_id": 23, - "bbox": [ - 11.979912000000013, - 315.59007999999994, - 349.08018599999997, - 324.41024 - ], - "id": 406, - "area": 113245.18691950463, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 154, - "category_id": 23, - "bbox": [ - 40.459958, - 192.98015999999998, - 273.619892, - 139.16992 - ], - "id": 407, - "area": 38079.65848004864, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 154, - "category_id": 23, - "bbox": [ - 239.4601055, - 93.630048, - 99.189965, - 63.729984 - ], - "id": 408, - "area": 6321.3748824105605, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 18, - "bbox": [ - 162.5702235, - 226.55999999999997, - 130.409823, - 184.43 - ], - "id": 409, - "area": 24051.48365589, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 18, - "bbox": [ - 81.69992549999999, - 244.94, - 83.709891, - 158.20000000000002 - ], - "id": 410, - "area": 13242.904756200001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 203.3898015, - 260.43, - 65.690115, - 73.03999999999999 - ], - "id": 411, - "area": 4798.0059996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 118.43004000000002, - 261.32000000000005, - 56.90997, - 62.93 - ], - "id": 412, - "area": 3581.3444121, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 119.34013470000001, - 334.21, - 11.9400066, - 33.57 - ], - "id": 413, - "area": 400.826021562, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 59, - "bbox": [ - 201.76998000000003, - 426.19, - 70.840092, - 47.230000000000004 - ], - "id": 414, - "area": 3345.77754516, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 284.3398428, - 333.40000000000003, - 10.8799884, - 27.43 - ], - "id": 415, - "area": 298.438081812, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 191.00011965, - 334.37000000000006, - 7.160018699999999, - 23.41 - ], - "id": 416, - "area": 167.616037767, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 49, - "category_id": 1, - "bbox": [ - 346.76008245, - 333.4, - 14.7999831, - 9.22 - ], - "id": 417, - "area": 136.45584418200002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 595, - "category_id": 63, - "bbox": [ - 368.07008, - 296.98967999999996, - 140.99008, - 111.92016000000001 - ], - "id": 418, - "area": 15779.632312012802, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 142, - "category_id": 40, - "bbox": [ - 256.71, - 88.94015999999999, - 160.06992000000002, - 253.87008000000003 - ], - "id": 419, - "area": 40636.96339599361, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 142, - "category_id": 61, - "bbox": [ - 0.0, - 226.35999999999996, - 480.0, - 226.22016 - ], - "id": 420, - "area": 108585.6768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 142, - "category_id": 47, - "bbox": [ - 106.18992000000003, - 374.53024, - 272.64, - 192.28992000000002 - ], - "id": 421, - "area": 52425.923788800006, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 142, - "category_id": 49, - "bbox": [ - 74.57975999999996, - 376.3401600000001, - 363.56016, - 263.66015999999996 - ], - "id": 422, - "area": 95856.32995522559, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 626, - "category_id": 75, - "bbox": [ - 312.52016000000003, - 124.36003200000002, - 41.31999999999999, - 42.470015999999994 - ], - "id": 423, - "area": 1754.8610611199995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 626, - "category_id": 75, - "bbox": [ - 396.15008, - 129.710112, - 20.880000000000003, - 46.910016 - ], - "id": 424, - "area": 979.4811340800001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 13.47008000000001, - 95.2199325, - 212.11007999999998, - 132.689823 - ], - "id": 425, - "area": 28144.848971715837, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 142.00992, - 116.77019549999999, - 153.53024, - 89.24001100000001 - ], - "id": 426, - "area": 13701.04030643264, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 202.90976, - 111.75016999999998, - 128.4, - 71.110018 - ], - "id": 427, - "area": 9130.5263112, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 280.63007999999996, - 131.29983125, - 67.80992, - 41.5900135 - ], - "id": 428, - "area": 2820.21548823392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 281.03968000000003, - 114.62018645, - 89.15008, - 20.5699991 - ], - "id": 429, - "area": 1833.817065364928, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 375.260032, - 134.41996295, - 49.750015999999995, - 24.7200121 - ], - "id": 430, - "area": 1229.8209974951935, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 423.91014400000006, - 42.740138, - 38.220032, - 89.86983599999999 - ], - "id": 431, - "area": 3434.828007754752, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 0.0, - 96.6602035, - 159.53024, - 260.789823 - ], - "id": 432, - "area": 41603.86305274752, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - -0.00012800000000368073, - 137.2200795, - 78.68032000000001, - 110.339789 - ], - "id": 433, - "area": 8681.56990725248, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 130.49984000000003, - 117.0699495, - 123.77984, - 103.62991099999999 - ], - "id": 434, - "area": 12827.293802794238, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 227.25983999999994, - 130.179917, - 89.26016000000001, - 67.740134 - ], - "id": 435, - "area": 6046.495199261441, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 338.69024, - 139.269893, - 61.84, - 192.629948 - ], - "id": 436, - "area": 11912.235984320001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 493.479968, - 148.66005, - 49.089984, - 184.70995200000002 - ], - "id": 437, - "area": 9067.408588320768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 124.4896, - 219.590301, - 85.29024, - 173.09982200000002 - ], - "id": 438, - "area": 14763.725362337282, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 532.23008, - 186.9497805, - 46.31999999999999, - 56.080045000000005 - ], - "id": 439, - "area": 2597.6276844, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 542.179936, - 159.8301138, - 24.219968, - 42.6099884 - ], - "id": 440, - "area": 1032.0125555283712, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 575.409952, - 195.2600545, - 50.190016, - 47.499907 - ], - "id": 441, - "area": 2384.021092328512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 546.9698880000001, - 139.88014005, - 13.889984, - 34.129981900000004 - ], - "id": 442, - "area": 474.0649025112897, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 325.77984, - 130.69991760000002, - 84.0, - 39.8700148 - ], - "id": 443, - "area": 3349.0812432, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 27, - "bbox": [ - 93.060288, - 388.4599621, - 59.769984, - 33.2399858 - ], - "id": 444, - "area": 1986.7534194262273, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 203.41983999999994, - 275.3900205, - 291.71008, - 130.50016699999998 - ], - "id": 445, - "area": 38068.21415558335, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 216.269696, - 220.7801365, - 51.219967999999994, - 23.329999 - ], - "id": 446, - "area": 1194.9618022200318, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 300.72995199999997, - 182.05006225000002, - 26.430016, - 33.2899875 - ], - "id": 447, - "area": 879.8549022648, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 587.2797216, - 155.77004835, - 5.7899968, - 12.9500133 - ], - "id": 448, - "area": 74.98053556695744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 183.79008, - 369.109902, - 118.99008, - 57.890098 - ], - "id": 449, - "area": 6888.347392227841, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 325.409952, - 172.6300366, - 15.150015999999999, - 36.4599928 - ], - "id": 450, - "area": 552.3694742798848, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 208.08032, - 249.07998849999996, - 84.86976, - 46.410202999999996 - ], - "id": 451, - "area": 3938.8227901612795, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 16.630079999999992, - 249.30010700000003, - 139.45024, - 109.329934 - ], - "id": 452, - "area": 15246.08553548416, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 3.3298559999999924, - 401.49001655, - 100.92032, - 19.9599869 - ], - "id": 453, - "area": 2014.3682651438082, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 222.0, - 265.39012885, - 72.91008, - 29.839998299999998 - ], - "id": 454, - "area": 2175.636663252864, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 0.0, - 323.200143, - 63.340031999999994, - 84.399966 - ], - "id": 455, - "area": 5345.896547238912, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 222.209792, - 245.04012015, - 60.310016, - 19.5399897 - ], - "id": 456, - "area": 1178.4570914468352, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 233.04992, - 290.7399019, - 76.67008, - 19.1699942 - ], - "id": 457, - "area": 1469.7649889135362, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 57, - "bbox": [ - 211.049824, - 223.8000513, - 63.220032, - 25.0999994 - ], - "id": 458, - "area": 1586.822765267981, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 1, - "bbox": [ - 623.02976, - 162.54995435, - 7.52, - 25.999987299999997 - ], - "id": 459, - "area": 195.51990449599998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 26, - "bbox": [ - 464.18016, - 106.25993210000001, - 66.59008, - 32.380007799999994 - ], - "id": 460, - "area": 2156.1873098026235, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 27, - "bbox": [ - 102.670112, - 358.57017559999997, - 41.390016, - 11.7699988 - ], - "id": 461, - "area": 487.1604386519808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 315, - "category_id": 27, - "bbox": [ - 116.309728, - 327.0600095, - 63.729984, - 62.169919 - ], - "id": 462, - "area": 3962.0879431512963, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 165, - "category_id": 28, - "bbox": [ - 160.70976, - 173.44986799999998, - 90.68032000000001, - 217.18023200000002 - ], - "id": 463, - "area": 19693.972935434245, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 165, - "category_id": 1, - "bbox": [ - 248.63008, - 108.14014399999999, - 383.16992, - 427.859856 - ], - "id": 464, - "area": 163943.0267947315, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 165, - "category_id": 1, - "bbox": [ - 6.019839999999988, - 24.090251999999992, - 354.11968, - 504.679912 - ], - "id": 465, - "area": 178717.08893986818, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 165, - "category_id": 77, - "bbox": [ - 68.80991999999998, - 126.150012, - 299.39008, - 286.109832 - ], - "id": 466, - "area": 85658.44549126655, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 629, - "category_id": 4, - "bbox": [ - 320.97024000000005, - 257.1199715, - 246.75968, - 157.10995300000002 - ], - "id": 467, - "area": 38768.40172709504, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 1, - "bbox": [ - 230.51001999999997, - 335.29983999999996, - 147.4798, - 279.20000000000005 - ], - "id": 468, - "area": 41176.36016000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 1, - "bbox": [ - 430.78022, - 203.67967999999996, - 89.22004, - 93.90016 - ], - "id": 469, - "area": 8377.7760312064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 39, - "bbox": [ - 296.88984, - 432.80985599999997, - 105.47991999999999, - 40.819967999999996 - ], - "id": 470, - "area": 4305.6869590425595, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 62.90000600000001, - 234.39011200000002, - 43.459987999999996, - 22.270016 - ], - "id": 471, - "area": 967.8546281198078, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 108.71021200000001, - 232.00000000000003, - 45.579976, - 25.44 - ], - "id": 472, - "area": 1159.5545894400002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 202.820228, - 230.33017599999997, - 47.500024, - 26.019968000000002 - ], - "id": 473, - "area": 1235.9491044792321, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 245.15998000000002, - 307.81008, - 56.55988, - 28.279999999999998 - ], - "id": 474, - "area": 1599.5134064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 135.72993200000002, - 258.53004799999997, - 50.129976, - 30.249983999999998 - ], - "id": 475, - "area": 1516.4309719203839, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 88.78987000000001, - 256.369888, - 50.46002, - 25.809984 - ], - "id": 476, - "area": 1302.37230883968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 39.440231999999995, - 260.52992, - 46.920016, - 23.68 - ], - "id": 477, - "area": 1111.0659788799999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 13.519974000000001, - 235.62032, - 47.740004000000006, - 22.44 - ], - "id": 478, - "area": 1071.2856897600002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 412.26016, - 304.209696, - 61.50976, - 46.539968 - ], - "id": 479, - "area": 2862.66226208768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 325.81998799999997, - 279.269888, - 51.530024, - 21.609984 - ], - "id": 480, - "area": 1113.562994159616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 303.389918, - 307.5598719999999, - 51.380004, - 27.270016 - ], - "id": 481, - "area": 1401.133531160064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 233.05984, - 228.6, - 66.46016, - 77.40992 - ], - "id": 482, - "area": 5144.6756687872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 564, - "category_id": 57, - "bbox": [ - 152.800154, - 232.509888, - 48.710012, - 41.529984000000006 - ], - "id": 483, - "area": 2022.9260189998083, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 589, - "category_id": 30, - "bbox": [ - 463.86019200000004, - 229.41, - 18.750016000000002, - 6.3 - ], - "id": 484, - "area": 118.12510080000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 589, - "category_id": 1, - "bbox": [ - 347.9104, - 184.57031999999998, - 145.42976, - 184.28976 - ], - "id": 485, - "area": 26801.215567257597, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 2.8799999999999955, - 185.18990000000002, - 226.44992, - 207.27007 - ], - "id": 486, - "area": 46936.2907698944, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 225.82976000000002, - 193.97990849999996, - 208.84992, - 180.939969 - ], - "id": 487, - "area": 37789.298050452475, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 322.22015999999996, - 294.569793, - 80.91008000000001, - 81.17013800000001 - ], - "id": 488, - "area": 6567.482359191042, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 491.40992000000006, - 176.26986999999997, - 148.59008, - 199.409854 - ], - "id": 489, - "area": 29630.32615864832, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 469.939968, - 230.670097, - 44.009983999999996, - 141.72984 - ], - "id": 490, - "area": 6237.5279907225595, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 312, - "category_id": 21, - "bbox": [ - 419.33984, - 249.43994949999995, - 147.72032, - 122.65019900000001 - ], - "id": 491, - "area": 18117.92664434368, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 620, - "category_id": 73, - "bbox": [ - 243.05976, - 2.88032000000004, - 236.94, - 582.46976 - ], - "id": 492, - "area": 138010.38493439998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 620, - "category_id": 54, - "bbox": [ - 96.62999999999998, - 252.93952000000002, - 221.60016, - 145.24032 - ], - "id": 493, - "area": 32185.2781504512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 30, - "category_id": 59, - "bbox": [ - 204.86016, - 31.019728000000015, - 254.88, - 324.12012 - ], - "id": 494, - "area": 82611.73618559999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 30, - "category_id": 76, - "bbox": [ - 237.56032, - 155.809976, - 166.4, - 195.25017599999998 - ], - "id": 495, - "area": 32489.6292864, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 1, - "bbox": [ - 75.71016000000003, - 124.17023999999992, - 282.39984, - 515.8297600000001 - ], - "id": 496, - "area": 145670.24169123842, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 66, - "bbox": [ - 334.85004000000004, - 367.080032, - 44.49, - 18.590016 - ], - "id": 497, - "area": 827.0698118399999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 259.679952, - 402.10976, - 10.130016, - 70.20992 - ], - "id": 498, - "area": 711.2276129587199, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 70.349832, - 170.569952, - 7.220016, - 15.710016 - ], - "id": 499, - "area": 113.426566880256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 31.859976, - 164.28, - 9.260015999999998, - 28.88 - ], - "id": 500, - "area": 267.42926207999994, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 26.979983999999998, - 164.21027199999997, - 8.4, - 29.310016 - ], - "id": 501, - "area": 246.20413440000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 37.330200000000005, - 164.59024000000002, - 28.41, - 30.2 - ], - "id": 502, - "area": 857.982, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 12.919920000000005, - 98.909792, - 94.25999999999999, - 45.950016 - ], - "id": 503, - "area": 4331.24850816, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 74, - "bbox": [ - 82.610208, - 63.579871999999995, - 13.809984, - 28.830016 - ], - "id": 504, - "area": 398.142059679744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 58, - "bbox": [ - 1.6598880000000023, - 495.94015999999993, - 87.87024, - 134.30975999999998 - ], - "id": 505, - "area": 11801.830845542398, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 59, - "bbox": [ - 415.24992, - 276.53983999999997, - 58.41984, - 84.78016 - ], - "id": 506, - "area": 4952.8433823744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 59, - "bbox": [ - 374.40984000000003, - 221.09024000000005, - 62.50992000000001, - 98.70016 - ], - "id": 507, - "area": 6169.7391055872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 446, - "category_id": 59, - "bbox": [ - 426.64008, - 177.70015999999998, - 53.36016, - 103.87008 - ], - "id": 508, - "area": 5542.5240880128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 189.41984, - 272.23008000000004, - 147.44, - 104.4 - ], - "id": 509, - "area": 15392.736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 37.630399999999995, - 226.44000000000003, - 120.65984, - 77.47008000000001 - ], - "id": 510, - "area": 9347.5274575872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 168.86975999999999, - 212.10983999999996, - 146.94016, - 108.13007999999999 - ], - "id": 511, - "area": 15888.651256012798, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 178.85023999999999, - 142.30007999999998, - 140.06976, - 105.87024000000001 - ], - "id": 512, - "area": 14829.219107942401, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 58.94976000000001, - 160.37016, - 121.08032, - 94.38 - ], - "id": 513, - "area": 11427.5606016, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 50.559999999999995, - 101.95008000000001, - 125.60000000000001, - 84.96 - ], - "id": 514, - "area": 10670.976, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 480.0, - 197.38992, - 120.81024, - 115.41984000000001 - ], - "id": 515, - "area": 13943.8985711616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 472.0697599999999, - 101.97984, - 122.08, - 101.88 - ], - "id": 516, - "area": 12437.5104, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 36.579840000000004, - 322.45007999999996, - 154.76991999999998, - 119.71008 - ], - "id": 517, - "area": 18527.5195047936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 478.21984, - 310.74984, - 133.18975999999998, - 144.44016 - ], - "id": 518, - "area": 19237.950244761596, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 321.09024, - 332.28, - 170.57984000000002, - 123.98016000000001 - ], - "id": 519, - "area": 21148.515855974405, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 168.30976, - 362.80992, - 165.82016, - 91.00992 - ], - "id": 520, - "area": 15091.279495987197, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 438, - "category_id": 55, - "bbox": [ - 310.09984, - 151.93992000000003, - 84.89984, - 189.29999999999998 - ], - "id": 521, - "area": 16071.539711999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 144, - "category_id": 24, - "bbox": [ - 232.99040000000002, - 121.70976000000002, - 366.73983999999996, - 358.29024000000004 - ], - "id": 522, - "area": 131399.3052911616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 144, - "category_id": 24, - "bbox": [ - 193.33024, - 131.88984, - 300.65984000000003, - 348.10992 - ], - "id": 523, - "area": 104662.6728496128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 144, - "category_id": 24, - "bbox": [ - 48.54015999999996, - 79.82016000000004, - 393.71008000000006, - 400.17984 - ], - "id": 524, - "area": 157554.83682078723, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 625, - "category_id": 1, - "bbox": [ - 404.0, - 204.119705, - 120.0, - 214.000166 - ], - "id": 525, - "area": 25680.019920000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 625, - "category_id": 1, - "bbox": [ - 271.99999999999994, - 152.950125, - 100.99968000000001, - 270.999858 - ], - "id": 526, - "area": 27370.898938045444, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 625, - "category_id": 1, - "bbox": [ - 185.41984, - 233.51980199999997, - 92.33984, - 186.419972 - ], - "id": 527, - "area": 17213.99038728448, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 625, - "category_id": 30, - "bbox": [ - 272.52979200000004, - 111.92017660000002, - 33.750016, - 21.630018800000002 - ], - "id": 528, - "area": 730.0134805803009, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 599, - "category_id": 59, - "bbox": [ - 528.3702400000001, - 5.480255, - 111.32992, - 237.259836 - ], - "id": 529, - "area": 26414.11856109312, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 599, - "category_id": 16, - "bbox": [ - 0.9200000000000443, - 37.12999949999997, - 412.49983999999995, - 365.75014300000004 - ], - "id": 530, - "area": 150871.8754674771, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 599, - "category_id": 58, - "bbox": [ - 0.0003199999999310421, - 1.8298719999999946, - 619.6499200000001, - 400.899884 - ], - "id": 531, - "area": 248417.5810486093, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 599, - "category_id": 66, - "bbox": [ - 439.00991999999997, - 198.1900745, - 179.26016, - 87.800075 - ], - "id": 532, - "area": 15739.055492512003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 599, - "category_id": 66, - "bbox": [ - 389.57984, - 167.28982050000002, - 198.0, - 60.500143 - ], - "id": 533, - "area": 11979.028314000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 45, - "bbox": [ - 5.760319999999979, - 1.4399225999999956, - 337.72992, - 69.08016 - ], - "id": 534, - "area": 23330.4369103872, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 51, - "bbox": [ - 312.140064, - 275.2599, - 62.820032, - 51.580079999999995 - ], - "id": 535, - "area": 3240.2622761625594, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 51, - "bbox": [ - 199.70016, - 193.479828, - 193.95008, - 107.979924 - ], - "id": 536, - "area": 20942.71489819392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 354.82976, - 318.75023999999996, - 91.21983999999999, - 82.18988399999999 - ], - "id": 537, - "area": 7497.3480680985585, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 447.13984, - 253.520055, - 81.50016000000001, - 77.48982600000001 - ], - "id": 538, - "area": 6315.433217372161, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 465.08992, - 189.439857, - 74.17984, - 78.19017000000001 - ], - "id": 539, - "area": 5800.134300172801, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 512.16, - 245.48015700000002, - 67.05024, - 76.389894 - ], - "id": 540, - "area": 5121.96072627456, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 232.119712, - 142.3099647, - 37.710015999999996, - 35.9800026 - ], - "id": 541, - "area": 1356.8064737260413, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 233.07999999999998, - 51.859962, - 73.69023999999999, - 65.920092 - ], - "id": 542, - "area": 4857.667400302079, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 46, - "bbox": [ - 0.0, - 14.360034000000013, - 640.0, - 403.98006 - ], - "id": 543, - "area": 258547.23839999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 196.35008, - 170.879889, - 86.03008000000001, - 77.880042 - ], - "id": 544, - "area": 6700.026243663361, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 135.3696, - 194.43023399999998, - 66.73024, - 69.329796 - ], - "id": 545, - "area": 4626.39392623104, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 379.089792, - 43.699932000000004, - 58.710015999999996, - 44.430096 - ], - "id": 546, - "area": 2608.4916470415355, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 584, - "category_id": 52, - "bbox": [ - 357.55999999999995, - 187.20996, - 55.44, - 54.799788 - ], - "id": 547, - "area": 3038.1002467199996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 68, - "bbox": [ - 291.15008, - 289.290254, - 19.84, - 22.969972 - ], - "id": 548, - "area": 455.72424448, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 118.61024000000006, - 138.16006, - 432.71999999999997, - 435.32016 - ], - "id": 549, - "area": 188371.73963519998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - -0.0001279999999965753, - 207.32013, - 80.81024, - 278.92026 - ], - "id": 550, - "area": 22539.613151462396, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 77.02016, - 270.91974000000005, - 82.54975999999999, - 204.65996 - ], - "id": 551, - "area": 16894.6305796096, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 515.2102399999999, - 200.27980000000002, - 124.78976, - 379.7202 - ], - "id": 552, - "area": 47385.192625152, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 68, - "bbox": [ - 619.0501119999999, - 305.739808, - 15.830016, - 11.590024 - ], - "id": 553, - "area": 183.470265360384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 108.58022400000002, - 232.539951, - 38.860032000000004, - 46.900018 - ], - "id": 554, - "area": 1822.5362002805764, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 140.76032, - 239.81985000000003, - 82.11968, - 109.48022 - ], - "id": 555, - "area": 8990.480632729601, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 412.440096, - 194.77009, - 32.939968, - 105.97006 - ], - "id": 556, - "area": 3490.6503853580803, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 428.930016, - 206.73984, - 43.899967999999994, - 113.14988000000001 - ], - "id": 557, - "area": 4967.27611120384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 159.799872, - 332.18978, - 60.390015999999996, - 66.97028 - ], - "id": 558, - "area": 4044.33628072448, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 54.69971199999999, - 214.92015999999998, - 48.390015999999996, - 126.93996 - ], - "id": 559, - "area": 6142.6266954393595, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 395, - "category_id": 1, - "bbox": [ - 448.16032, - 253.08010000000004, - 70.78976, - 89.65988 - ], - "id": 560, - "area": 6347.001386828801, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 136, - "category_id": 1, - "bbox": [ - 0.8399999999999999, - 114.71010099999998, - 53.54, - 257.699838 - ], - "id": 561, - "area": 13797.24932652, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 136, - "category_id": 1, - "bbox": [ - 0.0, - 61.35002499999996, - 68.92, - 312.650162 - ], - "id": 562, - "area": 21547.849165040003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 136, - "category_id": 24, - "bbox": [ - 82.00000000000001, - 116.38001100000002, - 185.73999999999998, - 252.68000999999998 - ], - "id": 563, - "area": 46932.78505739999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 136, - "category_id": 24, - "bbox": [ - 316.72, - 131.829951, - 128.04, - 164.249954 - ], - "id": 564, - "area": 21030.564110159998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 86, - "category_id": 1, - "bbox": [ - 152.11007999999998, - 183.09983999999997, - 129.149952, - 375.96992 - ], - "id": 565, - "area": 48556.49712144385, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 86, - "category_id": 4, - "bbox": [ - 130.139904, - 346.51968, - 294.260224, - 288.64 - ], - "id": 566, - "area": 84935.27105535999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 86, - "category_id": 27, - "bbox": [ - 265.100032, - 294.59008000000006, - 134.600192, - 110.17984 - ], - "id": 567, - "area": 14830.22761852928, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 415, - "category_id": 39, - "bbox": [ - 60.12998700000001, - 399.089728, - 41.969972, - 44.409983999999994 - ], - "id": 568, - "area": 1863.8857850004476, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 415, - "category_id": 1, - "bbox": [ - -0.00017950000000865884, - 257.44031999999993, - 122.960013, - 301.61984 - ], - "id": 569, - "area": 37087.17944745792, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 64, - "category_id": 3, - "bbox": [ - 52.36007999999998, - 387.76991999999996, - 176.36016, - 157.61984 - ], - "id": 570, - "area": 27797.860201574404, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 64, - "category_id": 8, - "bbox": [ - 52.640160000000016, - 353.77987200000007, - 124.58015999999999, - 59.470016 - ], - "id": 571, - "area": 7408.7841084825595, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 64, - "category_id": 12, - "bbox": [ - 115.84008, - 226.58975999999998, - 37.019999999999996, - 75.16992 - ], - "id": 572, - "area": 2782.7904384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 64, - "category_id": 75, - "bbox": [ - 112.04015999999999, - 42.190079999999995, - 154.29984000000002, - 152.30976 - ], - "id": 573, - "area": 23501.371598438403, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 560, - "category_id": 59, - "bbox": [ - 54.399829999999994, - 126.17997599999998, - 55.320060000000005, - 62.340096 - ], - "id": 574, - "area": 3448.6578511257603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 560, - "category_id": 72, - "bbox": [ - 79.87992000000003, - 194.839788, - 114.1398, - 65.620152 - ], - "id": 575, - "area": 7489.8710252496, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 560, - "category_id": 68, - "bbox": [ - 160.879917, - 188.12010359999996, - 10.500005999999999, - 5.8399848 - ], - "id": 576, - "area": 61.31987543990879, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 560, - "category_id": 72, - "bbox": [ - 219.439849, - 152.45996999999997, - 29.760022, - 4.380012 - ], - "id": 577, - "area": 130.349253480264, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 560, - "category_id": 62, - "bbox": [ - 303.989942, - 143.980044, - 39.919996, - 36.559848 - ], - "id": 578, - "area": 1459.468985920608, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 474, - "category_id": 1, - "bbox": [ - 3.3697935000000143, - 42.70000000000002, - 329.210127, - 429.21 - ], - "id": 579, - "area": 141300.27860967, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 474, - "category_id": 36, - "bbox": [ - 9.859963500000006, - 234.49999999999997, - 88.40983499999999, - 71.31 - ], - "id": 580, - "area": 6304.505333849999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 581, - "category_id": 17, - "bbox": [ - 104.25014599999999, - 151.32, - 156.87991000000002, - 259.11 - ], - "id": 581, - "area": 40649.15348010001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 42, - "category_id": 17, - "bbox": [ - 214.14976, - 41.29011799999999, - 348.25984, - 243.78 - ], - "id": 582, - "area": 84898.7837952, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 68, - "bbox": [ - 434.749728, - 283.15005185, - 35.009983999999996, - 18.639980299999998 - ], - "id": 583, - "area": 652.5854120633151, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 1, - "bbox": [ - 44.80959999999999, - 68.08991600000002, - 223.80032, - 356.90986399999997 - ], - "id": 584, - "area": 79876.54177435648, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 1, - "bbox": [ - 197.90975999999998, - 90.52002349999998, - 205.13024000000001, - 389.339923 - ], - "id": 585, - "area": 79865.39184657153, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 1, - "bbox": [ - 336.87039999999996, - 58.47981850000002, - 249.90976, - 426.040209 - ], - "id": 586, - "area": 106471.60638153984, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 14, - "bbox": [ - 0.6003200000000106, - 104.75976, - 587.66976, - 374.74003799999997 - ], - "id": 587, - "area": 220223.38819385087, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 74, - "bbox": [ - 245.6496, - 220.9500491, - 86.44031999999999, - 37.4199938 - ], - "id": 588, - "area": 3234.5962384700156, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 3, - "bbox": [ - 350.46016, - 77.3101595, - 101.02016, - 65.609875 - ], - "id": 589, - "area": 6627.92007008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 28, - "bbox": [ - 462.05971199999993, - 177.54017445000002, - 18.310016, - 43.8100151 - ], - "id": 590, - "area": 802.1620774412416, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 28, - "bbox": [ - 315.370176, - 171.710065, - 22.499968, - 57.980226 - ], - "id": 591, - "area": 1304.553229632768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 25, - "bbox": [ - 12.029759999999996, - 171.36022749999998, - 119.45024000000001, - 79.62988899999999 - ], - "id": 592, - "area": 9511.80935222336, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 328, - "category_id": 25, - "bbox": [ - 49.450239999999994, - 160.8501761, - 85.28, - 47.8399958 - ], - "id": 593, - "area": 4079.794841824, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 2, - "bbox": [ - 48.859967999999995, - 268.79988, - 25.350016000000004, - 16.830000000000002 - ], - "id": 594, - "area": 426.6407692800001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 262.689888, - 248.31023999999996, - 39.409983999999994, - 89.18976 - ], - "id": 595, - "area": 3514.9670145638397, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 2, - "bbox": [ - 18.590016000000002, - 271.11996, - 25.190016, - 15.57 - ], - "id": 596, - "area": 392.20854912, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 82.869952, - 256.13976, - 37.670016, - 65.65008 - ], - "id": 597, - "area": 2473.03956400128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 251.64985599999997, - 253.239912, - 12.259968, - 26.300016 - ], - "id": 598, - "area": 322.437354559488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 33, - "bbox": [ - 270.75, - 294.6, - 1.8599999999999999, - 2.76 - ], - "id": 599, - "area": 5.1335999999999995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 216.169792, - 255.01003200000002, - 10.630016, - 23.810016 - ], - "id": 600, - "area": 253.100851040256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 446.84976, - 246.32983199999995, - 12.84, - 35.420016000000004 - ], - "id": 601, - "area": 454.79300544000006, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 504.059712, - 244.48024800000002, - 12.710016, - 31.899984 - ], - "id": 602, - "area": 405.449307039744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 39, - "bbox": [ - 294.45027200000004, - 290.379768, - 14.750015999999999, - 31.779984 - ], - "id": 603, - "area": 468.75527247974395, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 389.499968, - 256.369848, - 12.089984000000001, - 20.859984 - ], - "id": 604, - "area": 252.19687280025605, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 1, - "bbox": [ - 6.460000000000001, - 258.440112, - 22.449984, - 35.810016 - ], - "id": 605, - "area": 803.934286239744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 39, - "bbox": [ - 28.679936000000005, - 254.54992799999997, - 68.03008, - 35.679984000000005 - ], - "id": 606, - "area": 2427.3121659187204, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 39, - "bbox": [ - 253.0599616, - 269.03988, - 4.3299968, - 4.2299999999999995 - ], - "id": 607, - "area": 18.315886464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 531, - "category_id": 2, - "bbox": [ - 628.660288, - 266.11999199999997, - 10.489984000000002, - 9.560016 - ], - "id": 608, - "area": 100.284414879744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 73, - "category_id": 4, - "bbox": [ - 12.999802500000044, - 22.750400000000013, - 535.9799049999999, - 609.66976 - ], - "id": 609, - "area": 326770.74004617275, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 73, - "category_id": 4, - "bbox": [ - 1.659969999999987, - 3.319999999999993, - 268.59987, - 271.90976 - ], - "id": 610, - "area": 73034.92618773121, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 194, - "category_id": 44, - "bbox": [ - 504.9603199999999, - 415.15008, - 101.40992, - 64.84992 - ], - "id": 611, - "area": 6576.4251992064, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 194, - "category_id": 54, - "bbox": [ - 1.080319999999972, - 40.989840000000015, - 638.91968, - 432.53999999999996 - ], - "id": 612, - "area": 276358.31838719995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 73, - "bbox": [ - 217.5904, - 149.73984000000002, - 95.77984000000001, - 177.26016 - ], - "id": 613, - "area": 16977.9497631744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 75, - "bbox": [ - 458.17008, - 88.68993735, - 23.24, - 24.6099873 - ], - "id": 614, - "area": 571.936104852, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 1, - "bbox": [ - 326.99968000000007, - 142.07005500000002, - 90.46016, - 183.700098 - ], - "id": 615, - "area": 16617.54025709568, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 1, - "bbox": [ - 439.349792, - 173.72005799999997, - 56.910016, - 153.279942 - ], - "id": 616, - "area": 8723.163951699073, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 70, - "bbox": [ - 24.25023999999999, - 243.95982150000003, - 138.88, - 78.630093 - ], - "id": 617, - "area": 10920.14731584, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 338, - "category_id": 27, - "bbox": [ - 465.15017599999993, - 231.65007, - 25.659968000000003, - 39.340061999999996 - ], - "id": 618, - "area": 1009.464732038016, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 46, - "bbox": [ - 1.0799999999999272, - 187.69008000000002, - 611.5897600000001, - 285.84000000000003 - ], - "id": 619, - "area": 174816.81699840003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 46, - "bbox": [ - 311.73024, - 4.310159999999996, - 319.28000000000003, - 228.68016 - ], - "id": 620, - "area": 73013.00148480001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 51, - "bbox": [ - 249.60032, - 229.27031999999997, - 316.24, - 245.07984 - ], - "id": 621, - "area": 77504.04860159999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 46, - "bbox": [ - 0.00031999999998788553, - 13.510079999999988, - 434.48, - 375.12 - ], - "id": 622, - "area": 162982.13760000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 50, - "bbox": [ - 376.2, - 40.35996, - 75.55008, - 46.53 - ], - "id": 623, - "area": 3515.3452224, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 50, - "bbox": [ - 465.77971199999996, - 38.969952, - 58.070016, - 46.670016000000004 - ], - "id": 624, - "area": 2710.1285758402564, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 50, - "bbox": [ - 385.70016, - 73.65984, - 84.01984, - 70.51008 - ], - "id": 625, - "area": 5924.245639987201, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 9, - "category_id": 50, - "bbox": [ - 364.0496, - 2.490096000000001, - 94.76032000000001, - 71.06976 - ], - "id": 626, - "area": 6734.593199923201, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 33, - "bbox": [ - 207.19024800000003, - 238.220192, - 47.439984, - 49.710016 - ], - "id": 627, - "area": 2358.2423636797444, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 165.30983999999995, - 107.61984000000001, - 229.62, - 272.32 - ], - "id": 628, - "area": 62530.1184, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 157.79999999999998, - 81.30016, - 53.73984, - 109.53023999999999 - ], - "id": 629, - "area": 5886.1375727616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 64.14, - 198.36995199999998, - 57.02016, - 35.630016000000005 - ], - "id": 630, - "area": 2031.6292131225603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 135.57, - 148.46976, - 39.54, - 82.44991999999999 - ], - "id": 631, - "area": 3260.0698367999994, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 270.709848, - 71.75008, - 37.059984, - 82.04992000000001 - ], - "id": 632, - "area": 3040.7687224012807, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 424.64020800000003, - 138.6304, - 44.109984, - 98.70976 - ], - "id": 633, - "area": 4354.08593424384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 285.14976, - 122.08000000000001, - 76.58015999999999, - 238.22976 - ], - "id": 634, - "area": 18243.673137561596, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 362.61976799999997, - 137.29984000000002, - 37.179984, - 98.08 - ], - "id": 635, - "area": 3646.6128307199997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 80.88000000000001, - 136.64991999999998, - 29.04, - 66.25984 - ], - "id": 636, - "area": 1924.1857535999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 65.02991999999999, - 138.05023999999997, - 18.84, - 63.760000000000005 - ], - "id": 637, - "area": 1201.2384000000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 214.14, - 120.259904, - 19.92, - 29.660031999999998 - ], - "id": 638, - "area": 590.82783744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 368, - "category_id": 1, - "bbox": [ - 2.3999999999801958e-05, - 137.82016000000004, - 18.759984, - 92.94976 - ], - "id": 639, - "area": 1743.7360104038398, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 333.73984, - 31.74005200000002, - 154.84992, - 362.59988799999996 - ], - "id": 640, - "area": 56148.56364880895, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 284.37984, - 17.32993400000001, - 146.49024, - 361.930068 - ], - "id": 641, - "area": 53019.22252453632, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 266.08000000000004, - 48.80013200000002, - 95.10016, - 294.440032 - ], - "id": 642, - "area": 28001.29415360512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 242.61023999999998, - 53.19012799999999, - 86.27008000000001, - 292.98996800000003 - ], - "id": 643, - "area": 25276.267978557444, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 211.54015999999996, - 46.950102000000015, - 82.75008, - 286.869996 - ], - "id": 644, - "area": 23738.51511859968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 1, - "bbox": [ - 615.24992, - 195.43015, - 12.48, - 16.57002 - ], - "id": 645, - "area": 206.7938496, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 1, - "bbox": [ - 585.900256, - 194.4499872, - 11.739968000000001, - 17.9200176 - ], - "id": 646, - "area": 210.38043318343682, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 201, - "category_id": 32, - "bbox": [ - 268.40031999999997, - 63.330089999999984, - 94.25984, - 295.210004 - ], - "id": 647, - "area": 27826.447743439363, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 6, - "bbox": [ - 86.29023999999998, - 127.09992000000005, - 461.66976, - 262.11024 - ], - "id": 648, - "area": 121008.37159434239, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 1, - "bbox": [ - 269.08976, - 234.56976, - 44.519999999999996, - 156.26015999999998 - ], - "id": 649, - "area": 6956.702323199998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 1, - "bbox": [ - 124.320096, - 253.47984000000002, - 45.659968, - 114.02016 - ], - "id": 650, - "area": 5206.15685695488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 1, - "bbox": [ - 221.339712, - 212.82996000000003, - 17.990016, - 18.39 - ], - "id": 651, - "area": 330.83639424, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 1, - "bbox": [ - 154.41027200000002, - 216.46984799999998, - 12.270015999999998, - 19.659984 - ], - "id": 652, - "area": 241.22831823974397, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 6, - "bbox": [ - 0.3400960000000026, - 163.50000000000006, - 96.78976, - 190.00992 - ], - "id": 653, - "area": 18391.0145544192, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 27, - "bbox": [ - 153.12998399999998, - 268.63015199999995, - 21.100032, - 35.540016 - ], - "id": 654, - "area": 749.895474880512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 532, - "category_id": 27, - "bbox": [ - 120.389824, - 316.920168, - 15.100032, - 25.359984 - ], - "id": 655, - "area": 382.936569919488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 42, - "bbox": [ - 88.44991999999998, - 0.0, - 173.66016, - 71.94 - ], - "id": 656, - "area": 12493.111910399999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 42, - "bbox": [ - 587.380256, - 0.0, - 52.619968, - 149.4 - ], - "id": 657, - "area": 7861.4232192, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 46, - "bbox": [ - 3.2396799999999644, - 37.74983999999998, - 636.76032, - 436.85999999999996 - ], - "id": 658, - "area": 278175.11339519994, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 52, - "bbox": [ - 168.28, - 80.19024000000002, - 310.59008, - 250.72992 - ], - "id": 659, - "area": 77874.2259111936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 42, - "bbox": [ - 393.6096, - 0.039888000000001256, - 120.54016000000001, - 52.71024 - ], - "id": 660, - "area": 6353.7007632384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 43, - "bbox": [ - 0.0, - 325.40015999999997, - 24.940032, - 145.87008 - ], - "id": 661, - "area": 3638.00446304256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 332, - "category_id": 52, - "bbox": [ - 59.78976000000001, - 262.95024, - 108.04032, - 115.34976 - ], - "id": 662, - "area": 12462.4249823232, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 490, - "category_id": 17, - "bbox": [ - 46.0, - 192.99975750000004, - 90.0, - 143.000055 - ], - "id": 663, - "area": 12870.00495, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 490, - "category_id": 37, - "bbox": [ - 304.79, - 136.81973250000001, - 91.21, - 251.39020499999998 - ], - "id": 664, - "area": 22929.30059805, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 35, - "bbox": [ - 539.08992, - 121.40005799999999, - 4.0, - 27.239971999999998 - ], - "id": 665, - "area": 108.95988799999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 36, - "bbox": [ - 566.960032, - 186.43991110000002, - 8.910015999999999, - 6.6900058 - ], - "id": 666, - "area": 59.60805871809279, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 36, - "bbox": [ - 76.74028799999999, - 97.1600167, - 6.969984, - 9.2099986 - ], - "id": 667, - "area": 64.1935428820224, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 36, - "bbox": [ - 279.47992, - 25.0299534, - 5.460000000000001, - 4.7200052 - ], - "id": 668, - "area": 25.771228392000005, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 372.18972799999995, - 25.029997000000005, - 17.249984, - 27.629973999999997 - ], - "id": 669, - "area": 476.616609420416, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 271.099936, - 18.399963, - 27.019968, - 37.160061999999996 - ], - "id": 670, - "area": 1004.0636861180159, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 209.34032000000002, - 22.60987, - 22.200000000000003, - 31.010064000000003 - ], - "id": 671, - "area": 688.4234208000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 74.619808, - 79.120048, - 18.529984, - 48.0799 - ], - "id": 672, - "area": 890.9197777216, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 530.8297600000001, - 136.209997, - 29.04, - 54.590034 - ], - "id": 673, - "area": 1585.29458736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 567.61008, - 160.019848, - 26.76, - 38.0301 - ], - "id": 674, - "area": 1017.685476, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 592.3703360000001, - 154.710131, - 27.179968, - 46.599898 - ], - "id": 675, - "area": 1266.5837364432641, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 556.029728, - 23.959965800000003, - 13.889984, - 9.670000400000001 - ], - "id": 676, - "area": 134.31615083599362, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 545.1897280000001, - 21.040051999999996, - 9.649984, - 26.16 - ], - "id": 677, - "area": 252.44358144, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 596.84992, - 8.2100108, - 8.96, - 10.1499928 - ], - "id": 678, - "area": 90.94393548800001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 265.329728, - 6.429975400000002, - 17.689984000000003, - 27.340034 - ], - "id": 679, - "area": 483.64476401945603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 568.1501119999999, - 29.270097, - 11.870016000000001, - 23.739981999999998 - ], - "id": 680, - "area": 281.793966179712, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 357, - "category_id": 1, - "bbox": [ - 580.99008, - 32.189989, - 6.720000000000001, - 23.92005 - ], - "id": 681, - "area": 160.742736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 337.929888, - 167.8500208, - 40.769984, - 23.460006399999997 - ], - "id": 682, - "area": 956.4640855678975, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 383.53983999999997, - 148.450072, - 69.12, - 43.020064000000005 - ], - "id": 683, - "area": 2973.5468236800007, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 467.92992, - 149.900128, - 72.88, - 43.339984 - ], - "id": 684, - "area": 3158.61803392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 196.38975999999997, - 142.720032, - 75.29984, - 47.379903999999996 - ], - "id": 685, - "area": 3567.6991904153597, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 134.390016, - 154.57988799999998, - 59.539967999999995, - 34.590047999999996 - ], - "id": 686, - "area": 2059.4903510384634, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 89.52988799999999, - 162.19014, - 34.849984, - 26.139944 - ], - "id": 687, - "area": 910.976630160896, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 597, - "category_id": 21, - "bbox": [ - 1.6699839999999995, - 154.92994000000002, - 55.169984, - 33.440071999999994 - ], - "id": 688, - "area": 1844.8882371988477, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 459, - "category_id": 28, - "bbox": [ - 162.569928, - 278.98976, - 61.630008000000004, - 239.80992 - ], - "id": 689, - "area": 14779.487288079361, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 459, - "category_id": 1, - "bbox": [ - 0.0002579999999738902, - 84.84992, - 514.879764, - 547.9603199999999 - ], - "id": 690, - "area": 282133.6802429645, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 309, - "category_id": 78, - "bbox": [ - 153.1803, - 213.24989999999997, - 134.56980000000001, - 213.0198 - ], - "id": 691, - "area": 28666.031882040003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 309, - "category_id": 78, - "bbox": [ - 273.7098, - 214.3797, - 117.30000000000001, - 141.58020000000002 - ], - "id": 692, - "area": 16607.357460000003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 309, - "category_id": 17, - "bbox": [ - 420.1497, - 71.4501, - 92.83019999999999, - 123.6498 - ], - "id": 693, - "area": 11478.43566396, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 309, - "category_id": 78, - "bbox": [ - 73.10010000000001, - 235.32990000000004, - 121.4202, - 258.0198 - ], - "id": 694, - "area": 31328.815719959995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 389.840256, - 183.919872, - 8.019967999999999, - 26.870016 - ], - "id": 695, - "area": 215.49666847948797, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 374.399872, - 189.639792, - 6.870016, - 20.930016000000002 - ], - "id": 696, - "area": 143.789544800256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 367.790208, - 184.72008, - 7.049984, - 27.540000000000003 - ], - "id": 697, - "area": 194.15655936000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 383.159808, - 187.55999999999997, - 7.209984, - 24.240000000000002 - ], - "id": 698, - "area": 174.77001216000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 433.78975999999994, - 280.359792, - 18.32, - 31.370016 - ], - "id": 699, - "area": 574.69869312, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 73, - "bbox": [ - 428.69984, - 171.06984, - 96.72, - 138.03984 - ], - "id": 700, - "area": 13351.2133248, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 463.10016, - 282.68020800000005, - 9.92, - 36.549984 - ], - "id": 701, - "area": 362.57584128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 399.87023999999997, - 161.68008, - 9.399999999999999, - 17.099999999999998 - ], - "id": 702, - "area": 160.73999999999995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 373.61004799999995, - 135.799848, - 10.489984000000002, - 15.159984000000001 - ], - "id": 703, - "area": 159.02798960025603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 404.5602559999999, - 132.62004000000002, - 9.779968, - 15.75 - ], - "id": 704, - "area": 154.034496, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 40, - "bbox": [ - 415.110208, - 131.22024, - 10.649984, - 16.860000000000003 - ], - "id": 705, - "area": 179.55873024000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 57, - "bbox": [ - 159.04000000000002, - 409.15992, - 151.35999999999999, - 70.83984 - ], - "id": 706, - "area": 10722.318182399998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 153.96003199999998, - 189.95016, - 12.830016, - 28.259999999999998 - ], - "id": 707, - "area": 362.57625215999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 141.009824, - 190.75992, - 16.100032, - 36.54 - ], - "id": 708, - "area": 588.29516928, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 108.420032, - 196.320168, - 14.310016000000001, - 33.399984 - ], - "id": 709, - "area": 477.9543054397441, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 58.589856, - 196.119888, - 19.659968, - 37.629984 - ], - "id": 710, - "area": 739.804281280512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 81.76032, - 195.45983999999999, - 15.440000000000001, - 39.6 - ], - "id": 711, - "area": 611.4240000000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 95.889792, - 196.13004, - 11.830016, - 36.93 - ], - "id": 712, - "area": 436.88249088000003, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 146.610016, - 233.849928, - 26.779967999999997, - 20.799984 - ], - "id": 713, - "area": 557.0229059205119, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 114.55971199999999, - 236.809752, - 23.230016, - 19.520016 - ], - "id": 714, - "area": 453.4502840002559, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 176.77030399999998, - 232.659792, - 20.140031999999998, - 16.130016 - ], - "id": 715, - "area": 324.859038400512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 196.65011199999998, - 228.8802, - 19.990016, - 15.51 - ], - "id": 716, - "area": 310.04514816, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 506.25011199999994, - 221.49996000000002, - 56.150016, - 10.53 - ], - "id": 717, - "area": 591.25966848, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 69, - "bbox": [ - 377.71968000000004, - 227.44992, - 53.28, - 30.36 - ], - "id": 718, - "area": 1617.5808, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 70, - "bbox": [ - 274.609824, - 263.37991200000005, - 46.820032, - 34.220016 - ], - "id": 719, - "area": 1602.182244160512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 76.16975999999998, - 194.990232, - 10.84, - 39.680015999999995 - ], - "id": 720, - "area": 430.13137343999995, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 119.179776, - 191.23008, - 15.859968, - 37.92 - ], - "id": 721, - "area": 601.40998656, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 41, - "bbox": [ - 133.300192, - 192.92988, - 10.750016, - 35.370000000000005 - ], - "id": 722, - "area": 380.22806592000006, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 159.47024, - 231.63984000000002, - 21.720000000000002, - 21.24 - ], - "id": 723, - "area": 461.3328, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 512.82992, - 134.179752, - 15.4, - 21.380015999999998 - ], - "id": 724, - "area": 329.2522464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 532.630272, - 139.84980000000002, - 15.190016, - 13.71 - ], - "id": 725, - "area": 208.25511936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 506.10968, - 146.68000800000002, - 6.26, - 8.199983999999999 - ], - "id": 726, - "area": 51.33189983999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 169.770112, - 203.219808, - 17.750016, - 18.849984 - ], - "id": 727, - "area": 334.58751759974393, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 42, - "bbox": [ - 133.76976000000002, - 233.32987200000002, - 15.32, - 20.210016 - ], - "id": 728, - "area": 309.61744512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 505.950144, - 211.57008, - 29.180031999999997, - 4.68 - ], - "id": 729, - "area": 136.56254975999997, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 505.140288, - 219.2398008, - 56.889984, - 4.2099984 - ], - "id": 730, - "area": 239.50674161602558, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 509.2598719999999, - 215.43007199999997, - 52.030016, - 5.240016 - ], - "id": 731, - "area": 272.638116320256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 506.830016, - 212.68996800000002, - 55.619968, - 6.069984 - ], - "id": 732, - "area": 337.612315840512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 46, - "bbox": [ - 362.88032, - 171.40987199999998, - 13.360000000000001, - 9.050016000000001 - ], - "id": 733, - "area": 120.90821376000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 164, - "category_id": 61, - "bbox": [ - 372.77984000000004, - 459.11983200000003, - 137.13984, - 14.960016 - ], - "id": 734, - "area": 2051.61420063744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 590, - "category_id": 72, - "bbox": [ - 75.87011350000002, - 295.00999999999993, - 85.200017, - 11.57 - ], - "id": 735, - "area": 985.7641966900001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 590, - "category_id": 46, - "bbox": [ - 72.99995600000001, - 292.99, - 92.86999399999999, - 27.599999999999998 - ], - "id": 736, - "area": 2563.2118343999996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 450, - "category_id": 41, - "bbox": [ - 461.70016, - 3.230016000000006, - 97.93984, - 69.94991999999999 - ], - "id": 737, - "area": 6850.8839728128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 450, - "category_id": 42, - "bbox": [ - 562.0198399999999, - -0.000240000000005125, - 77.98016, - 192.97008 - ], - "id": 738, - "area": 15047.8377136128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 450, - "category_id": 54, - "bbox": [ - 0.0, - 13.739760000000047, - 566.41024, - 458.09999999999997 - ], - "id": 739, - "area": 259472.530944, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 450, - "category_id": 61, - "bbox": [ - 0.0, - 1.0800000000000125, - 640.0, - 478.92 - ], - "id": 740, - "area": 306508.8, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 404, - "category_id": 9, - "bbox": [ - 54.27005700000001, - 359.69984, - 314.18991, - 86.46016 - ], - "id": 741, - "area": 27164.9098889856, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 404, - "category_id": 9, - "bbox": [ - 192.14005799999995, - 359.96016, - 199.160112, - 45.96 - ], - "id": 742, - "area": 9153.39874752, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 404, - "category_id": 9, - "bbox": [ - 252.28997999999996, - 354.08012799999995, - 157.079832, - 29.609983999999997 - ], - "id": 743, - "area": 4651.131312242688, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 404, - "category_id": 9, - "bbox": [ - 263.29015200000003, - 357.89008, - 85.769988, - 16.279999999999998 - ], - "id": 744, - "area": 1396.3354046399998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 404, - "category_id": 9, - "bbox": [ - 272.71003440000004, - 355.56009600000004, - 24.6999912, - 11.019968 - ], - "id": 745, - "area": 272.1931126242816, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 650, - "category_id": 16, - "bbox": [ - 179.97984, - 110.19012549999998, - 304.86976, - 244.270047 - ], - "id": 746, - "area": 74470.55060407871, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 650, - "category_id": 3, - "bbox": [ - 2.3798400000000584, - 279.529999, - 637.61984, - 141.840006 - ], - "id": 747, - "area": 90440.00193131903, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 5, - "bbox": [ - 3.260159999999985, - 4.349950000000007, - 636.73984, - 320.849892 - ], - "id": 748, - "area": 204297.90889609727, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 222.66016000000002, - 189.73017799999997, - 68.99008, - 186.080092 - ], - "id": 749, - "area": 12837.680433487361, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 149.13980800000002, - 209.989934, - 48.369983999999995, - 165.149996 - ], - "id": 750, - "area": 7988.302664120062, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 452.45984, - 195.77969399999998, - 40.24, - 159.880204 - ], - "id": 751, - "area": 6433.57940896, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 356.159776, - 211.38990399999994, - 47.339968, - 133.820192 - ], - "id": 752, - "area": 6335.043607033856, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 317.69007999999997, - 211.329888, - 40.199999999999996, - 132.64988 - ], - "id": 753, - "area": 5332.525175999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 296.019968, - 206.36985599999997, - 33.449984, - 142.65996800000002 - ], - "id": 754, - "area": 4771.973647040512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 185.30998400000001, - 212.23012800000004, - 44.100032, - 135.79007199999998 - ], - "id": 755, - "area": 5988.346520482303, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 454.740192, - 130.38016199999998, - 43.070016, - 94.45986 - ], - "id": 756, - "area": 4068.3876815577605, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 267.72, - 118.00984799999998, - 67.39008, - 76.38004000000001 - ], - "id": 757, - "area": 5147.2570060032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 278.489952, - 214.250102, - 30.750016, - 135.869932 - ], - "id": 758, - "area": 4178.002582918912, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 27, - "bbox": [ - 180.359808, - 277.73023520000004, - 17.769984, - 28.2299776 - ], - "id": 759, - "area": 501.64625027235843, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 27, - "bbox": [ - 189.920128, - 265.5997916, - 18.249983999999998, - 26.2900088 - ], - "id": 760, - "area": 479.7922399598591, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 28, - "bbox": [ - 466.92996160000007, - 224.52024319999998, - 1.2299968, - 10.1399936 - ], - "id": 761, - "area": 12.472159680020479, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 27, - "bbox": [ - 483.32975999999996, - 262.5397984, - 20.2, - 29.9599872 - ], - "id": 762, - "area": 605.19174144, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 441.120256, - 127.42021160000002, - 19.699968000000002, - 26.2600008 - ], - "id": 763, - "area": 517.3211754399745, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 542, - "category_id": 1, - "bbox": [ - 281.50969599999996, - 219.21013399999998, - 14.659968000000001, - 74.880124 - ], - "id": 764, - "area": 1097.740221676032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 359, - "category_id": 10, - "bbox": [ - 153.87, - 100.439794, - 65.37, - 34.250116 - ], - "id": 765, - "area": 2238.93008292, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 359, - "category_id": 10, - "bbox": [ - 243.76, - 99.93998459999999, - 51.0, - 22.4000068 - ], - "id": 766, - "area": 1142.4003468, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 359, - "category_id": 10, - "bbox": [ - 278.48, - 293.480115, - 4.460000000000001, - 4.109994 - ], - "id": 767, - "area": 18.330573240000007, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 359, - "category_id": 3, - "bbox": [ - 0.0, - 290.110066, - 123.72, - 37.580076 - ], - "id": 768, - "area": 4649.40700272, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 58, - "bbox": [ - -0.0002230000000054133, - 419.70016, - 182.500078, - 218.27008 - ], - "id": 769, - "area": 39834.306625066245, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 75, - "bbox": [ - 205.8702104, - 275.860032, - 28.259987199999998, - 28.070016 - ], - "id": 770, - "area": 793.2582928637951, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 74, - "bbox": [ - 154.6601559, - 542.4002879999999, - 42.1499882, - 17.569984 - ], - "id": 771, - "area": 740.5746182741889, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 74, - "bbox": [ - 107.97983350000001, - 536.750112, - 41.029993, - 24.110016 - ], - "id": 772, - "area": 989.233787709888, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 65, - "bbox": [ - 100.97986350000001, - 464.680032, - 12.039992999999999, - 9.630016 - ], - "id": 773, - "area": 115.94532522988798, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 66, - "bbox": [ - 365.0301049, - 496.98015999999996, - 21.249982199999998, - 7.119999999999999 - ], - "id": 774, - "area": 151.29987326399996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 74, - "bbox": [ - 116.03983399999998, - 522.139904, - 45.020132000000004, - 21.100032 - ], - "id": 775, - "area": 949.9262258442241, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 66, - "bbox": [ - 155.3797992, - 530.4699519999999, - 31.2100096, - 6.6300159999999995 - ], - "id": 776, - "area": 206.92286300815357, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 66, - "bbox": [ - 148.1300915, - 544.1997984, - 10.379980999999999, - 5.6100031999999995 - ], - "id": 777, - "area": 58.23172662593919, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 74, - "bbox": [ - 160.389851, - 509.79020799999995, - 32.240002000000004, - 16.649984 - ], - "id": 778, - "area": 536.7955174599681, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 384, - "category_id": 64, - "bbox": [ - 123.39015930000001, - 468.86032, - 39.070001399999995, - 19.32 - ], - "id": 779, - "area": 754.8324270479999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 1, - "bbox": [ - 216.04, - 56.30981249999999, - 103.45, - 118.930125 - ], - "id": 780, - "area": 12303.32143125, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 1, - "bbox": [ - 320.73, - 53.730187499999985, - 94.63000000000001, - 97.279875 - ], - "id": 781, - "area": 9205.594571250002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 37, - "bbox": [ - 41.55000000000001, - 320.34, - 50.54, - 24.240000000000002 - ], - "id": 782, - "area": 1225.0896, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 37, - "bbox": [ - 236.63, - 140.689875, - 27.330000000000002, - 28.529999999999998 - ], - "id": 783, - "area": 779.7248999999999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 1, - "bbox": [ - 24.830000000000013, - 167.52993750000002, - 97.0, - 165.409875 - ], - "id": 784, - "area": 16044.757875, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 1, - "bbox": [ - 286.32, - 101.2899375, - 24.7, - 41.719875 - ], - "id": 785, - "area": 1030.4809125, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 37, - "bbox": [ - 355.43000000000006, - 141.18999375, - 24.060000000000002, - 15.040012500000001 - ], - "id": 786, - "area": 361.86270075000004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 77, - "category_id": 1, - "bbox": [ - 266.35, - 58.1799375, - 22.93, - 82.519875 - ], - "id": 787, - "area": 1892.18073375, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 370, - "category_id": 1, - "bbox": [ - 90.80999999999995, - 24.500159999999937, - 389.19024, - 615.50016 - ], - "id": 788, - "area": 239546.65499043843, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 370, - "category_id": 51, - "bbox": [ - 242.44992000000002, - 257.0502399999999, - 237.55008, - 243.95008 - ], - "id": 789, - "area": 57950.36102000641, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 72, - "category_id": 24, - "bbox": [ - 136.63017899999997, - 129.44000000000003, - 289.079854, - 499.05024 - ], - "id": 790, - "area": 144265.37051786497, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 72, - "category_id": 24, - "bbox": [ - 50.450050000000005, - 72.07008000000002, - 233.51007399999997, - 567.93024 - ], - "id": 791, - "area": 132617.43236923777, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 1, - "bbox": [ - 57.529923499999995, - 264.62976000000003, - 290.509877, - 209.98016 - ], - "id": 792, - "area": 61001.31045404033, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 37, - "bbox": [ - 154.93993899999998, - 446.419712, - 161.1498, - 54.070016 - ], - "id": 793, - "area": 8713.372264396801, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 1, - "bbox": [ - 149.4301872, - 16.320032, - 21.6799856, - 30.769984 - ], - "id": 794, - "area": 667.0928100322303, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 1, - "bbox": [ - 338.65007049999997, - 0.1399679999999961, - 88.350143, - 114.80000000000001 - ], - "id": 795, - "area": 10142.596416400002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 1, - "bbox": [ - 176.88011705, - 17.100032, - 21.0099799, - 24.16 - ], - "id": 796, - "area": 507.601114384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 634, - "category_id": 1, - "bbox": [ - 78.13982575, - 38.480000000000004, - 25.5600065, - 28.579968 - ], - "id": 797, - "area": 730.504167849792, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 388.030208, - 324.64979139999997, - 9.609984, - 13.3300172 - ], - "id": 798, - "area": 128.10125201172482, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 339.42015999999995, - 316.8101582, - 6.879999999999999, - 13.0799796 - ], - "id": 799, - "area": 89.99025964799999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 333.21992, - 315.730143, - 6.3, - 13.950017999999998 - ], - "id": 800, - "area": 87.88511339999998, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 401.739936, - 325.69978239999995, - 14.699968000000002, - 12.9600112 - ], - "id": 801, - "area": 190.51174991964163, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 434.24016, - 192.4402062, - 18.36, - 14.9999876 - ], - "id": 802, - "area": 275.399772336, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 280.609856, - 252.2599472, - 9.699968, - 6.3700095999999995 - ], - "id": 803, - "area": 61.788889279692796, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 435.83014399999996, - 82.72991760000001, - 10.380032, - 12.4999968 - ], - "id": 804, - "area": 129.7503667838976, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 293.240288, - 208.2799084, - 22.449984, - 10.7100152 - ], - "id": 805, - "area": 240.43966987975682, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 559.570016, - 317.5298402, - 7.099968, - 18.5100156 - ], - "id": 806, - "area": 131.4205184395008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 538.4501984, - 315.99015299999996, - 5.0900032, - 14.71999 - ], - "id": 807, - "area": 74.924796203968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 3, - "bbox": [ - 278.559936, - 311.7099818, - 9.699968, - 5.3300124 - ], - "id": 808, - "area": 51.7009497196032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 3, - "bbox": [ - 311.27020799999997, - 316.8600844, - 10.489984000000002, - 4.7299992 - ], - "id": 809, - "area": 49.6176159280128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 3, - "bbox": [ - 295.01968, - 316.5100874, - 8.6, - 4.1400012 - ], - "id": 810, - "area": 35.60401032, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 3, - "bbox": [ - 256.349888, - 321.38010679999996, - 19.449984, - 7.2100024000000005 - ], - "id": 811, - "area": 140.2344313199616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 62.670272, - 340.52001, - 41.670016, - 13.38998 - ], - "id": 812, - "area": 557.96068083968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 34, - "bbox": [ - 384.70985599999995, - 274.60002779999996, - 37.659968, - 15.920016400000002 - ], - "id": 813, - "area": 599.5473081834753, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 274.32025600000003, - 326.6099458, - 8.019967999999999, - 12.8200124 - ], - "id": 814, - "area": 102.81608920760318, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 544.6997984, - 317.64005019999996, - 4.4500032, - 16.289979600000002 - ], - "id": 815, - "area": 72.49046134793474, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 586.44016, - 321.2798906, - 4.5200000000000005, - 9.8799948 - ], - "id": 816, - "area": 44.657576496000004, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 249.86992, - 316.2598144, - 5.32, - 23.0299952 - ], - "id": 817, - "area": 122.519574464, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 233.569792, - 315.30011, - 7.830016, - 24.280012 - ], - "id": 818, - "area": 190.11288244019198, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 149, - "category_id": 1, - "bbox": [ - 220.05968000000001, - 313.4499088, - 7.640000000000001, - 27.2100144 - ], - "id": 819, - "area": 207.884510016, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 57, - "bbox": [ - 92.039792, - 381.22015999999996, - 156.770016, - 63.28 - ], - "id": 820, - "area": 9920.40661248, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 57, - "bbox": [ - 11.030239999999992, - 577.5400960000001, - 71.80992, - 61.939968 - ], - "id": 821, - "area": 4447.904146882561, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 1, - "bbox": [ - 4.329935999999989, - 31.42016000000004, - 151.69980800000002, - 455.07968 - ], - "id": 822, - "area": 69035.50008070144, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 70.26988800000001, - 458.249728, - 51.599807999999996, - 61.12998400000001 - ], - "id": 823, - "area": 3154.295437443072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 347.2199328, - 159.85968, - 21.6800064, - 18.759999999999998 - ], - "id": 824, - "area": 406.71692006399996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 44, - "bbox": [ - 253.789952, - 363.24032, - 47.210176000000004, - 87.04 - ], - "id": 825, - "area": 4109.173719040001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 56, - "bbox": [ - 142.37995199999997, - 424.26976, - 260.319904, - 149.56992 - ], - "id": 826, - "area": 38936.02721568768, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 1, - "bbox": [ - 341.390192, - 100.48992000000004, - 74.610016, - 328.25023999999996 - ], - "id": 827, - "area": 24490.75565840384, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 61, - "bbox": [ - 19.379984000000007, - 392.93984000000006, - 396.619808, - 247.05984 - ], - "id": 828, - "area": 97988.82630531072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 1, - "bbox": [ - 148.130112, - 44.57984000000002, - 195.599872, - 386.88 - ], - "id": 829, - "area": 75673.67847936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 282.56007519999997, - 95.349728, - 25.509993599999998, - 26.769984 - ], - "id": 830, - "area": 682.9021205121023, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 346.5000864, - 67.929888, - 23.4400192, - 22.049984000000002 - ], - "id": 831, - "area": 516.8520483196928, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 343.42990240000006, - 98.09008, - 24.1000032, - 25.0 - ], - "id": 832, - "area": 602.50008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 379.90996160000003, - 96.71990400000001, - 17.6399808, - 23.300032 - ], - "id": 833, - "area": 411.0121171193856, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 195.7298304, - 140.39984, - 20.0600192, - 21.64 - ], - "id": 834, - "area": 434.098815488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 176.1600464, - 137.139968, - 23.5700192, - 24.809984 - ], - "id": 835, - "area": 584.7717992316929, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 174.8499168, - 106.92003199999999, - 19.6099904, - 25.630016 - ], - "id": 836, - "area": 502.60436771184646, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 113, - "category_id": 42, - "bbox": [ - 140.57010240000002, - 138.280032, - 18.760019200000002, - 22.270016 - ], - "id": 837, - "area": 417.78592774430723, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 514, - "category_id": 60, - "bbox": [ - 37.390139999999974, - 225.88991999999996, - 322.61004, - 398.38976 - ], - "id": 838, - "area": 128524.53640919042, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 25, - "category_id": 24, - "bbox": [ - 385.52992, - 60.030002999999994, - 214.97024, - 297.160134 - ], - "id": 839, - "area": 63880.58532441216, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 25, - "category_id": 24, - "bbox": [ - 53.01024000000001, - 356.49000599999994, - 132.03008, - 55.190004 - ], - "id": 840, - "area": 7286.7406433203205, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 172.319872, - 366.2899475, - 9.910016, - 9.550005 - ], - "id": 841, - "area": 94.64070235008, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 611.08992, - 309.6501975, - 9.6, - 10.910005 - ], - "id": 842, - "area": 104.736048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 162.40016, - 394.2801075, - 15.48, - 10.109985 - ], - "id": 843, - "area": 156.5025678, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 218.02016, - 329.76017750000005, - 10.32, - 9.659995 - ], - "id": 844, - "area": 99.6911484, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 5, - "bbox": [ - 156.37984, - 187.79985, - 300.27968, - 82.50015 - ], - "id": 845, - "area": 24773.118641952, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 8, - "bbox": [ - 87.57024, - 359.9701975, - 21.840000000000003, - 24.850005 - ], - "id": 846, - "area": 542.7241092, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 10, - "bbox": [ - 253.66972159999997, - 146.62984924999998, - 1.8099968, - 1.9300015 - ], - "id": 847, - "area": 3.4932965389952, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 71.74016, - 404.25003375, - 13.440000000000001, - 9.4999825 - ], - "id": 848, - "area": 127.67976480000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 94.32, - 391.490025, - 12.64, - 10.88 - ], - "id": 849, - "area": 137.5232, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 131.93008, - 372.34005625, - 8.2, - 9.1899875 - ], - "id": 850, - "area": 75.3578975, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 121.59990400000001, - 364.67998375, - 10.020032, - 9.4999825 - ], - "id": 851, - "area": 95.19012864944, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 194.58032000000003, - 368.1299, - 8.52, - 9.86 - ], - "id": 852, - "area": 84.0072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 311.5502816, - 199.51017249999998, - 4.7099968, - 6.150005 - ], - "id": 853, - "area": 28.966503869984, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 52.359967999999995, - 191.96000499999997, - 7.4, - 6.05999 - ], - "id": 854, - "area": 44.843926, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 218.06992, - 348.95982875, - 11.319999999999999, - 12.789992499999999 - ], - "id": 855, - "area": 144.78271509999996, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 6, - "bbox": [ - 416.869824, - 203.86997125, - 23.420032000000003, - 10.330007499999999 - ], - "id": 856, - "area": 241.92910621024, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 8, - "bbox": [ - 329.47977599999996, - 192.45984750000002, - 11.099968, - 13.630004999999999 - ], - "id": 857, - "area": 151.29261933984, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 3, - "bbox": [ - 291.4402016, - 182.33020625, - 5.6699968, - 4.4299875 - ], - "id": 858, - "area": 25.11801494904, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 6, - "bbox": [ - 452.829824, - 385.57999625, - 13.420031999999999, - 19.8500075 - ], - "id": 859, - "area": 266.38773585024, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 540, - "category_id": 8, - "bbox": [ - 93.440096, - 392.25003124999995, - 12.059968000000001, - 10.549987499999999 - ], - "id": 860, - "area": 127.2325116504, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 575, - "category_id": 16, - "bbox": [ - 4.390079999999955, - 39.699787499999985, - 353.71968000000004, - 354.820041 - ], - "id": 861, - "area": 125506.8313601069, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 2, - "bbox": [ - 115.45011199999999, - 237.730246, - 26.070016, - 59.959804 - ], - "id": 862, - "area": 1563.153049636864, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 2, - "bbox": [ - 565.2498879999999, - 265.0198898, - 17.489984, - 21.8199964 - ], - "id": 863, - "area": 381.63138791605763, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 6, - "bbox": [ - 142.34976, - 100.02980600000002, - 417.42016, - 228.89996399999998 - ], - "id": 864, - "area": 95547.45959687424, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 578.289792, - 233.5200742, - 11.190016, - 13.0799796 - ], - "id": 865, - "area": 146.3651810036736, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 565.2399360000001, - 240.92010859999996, - 17.459968, - 34.3799988 - ], - "id": 866, - "area": 600.2736788880385, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 596.870176, - 232.87995740000002, - 9.739968, - 13.2200212 - ], - "id": 867, - "area": 128.7625834473216, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 555.6901120000001, - 231.6301974, - 7.030016, - 22.8500212 - ], - "id": 868, - "area": 160.6360146363392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 463.67968, - 225.6199218, - 5.04, - 26.3199884 - ], - "id": 869, - "area": 132.652741536, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 606.609728, - 231.8900362, - 7.129984, - 14.4500076 - ], - "id": 870, - "area": 103.0283229878784, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 26.909984, - 207.5499758, - 29.390016000000003, - 22.9999924 - ], - "id": 871, - "area": 675.9701446358785, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 3.819968000000001, - 209.89999540000002, - 20.4, - 22.9600172 - ], - "id": 872, - "area": 468.38435087999994, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 641, - "category_id": 1, - "bbox": [ - 0.0, - 220.9699158, - 6.32, - 18.9399844 - ], - "id": 873, - "area": 119.700701408, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 44, - "bbox": [ - 502.59987199999995, - 105.46992000000003, - 25.830015999999997, - 132.38016 - ], - "id": 874, - "area": 3419.3816508825594, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 44, - "bbox": [ - 476.62, - 127.48992000000001, - 19.72, - 106.10976000000001 - ], - "id": 875, - "area": 2092.4844672, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 44, - "bbox": [ - 528.800192, - 99.29975999999999, - 26.470015999999998, - 137.89008 - ], - "id": 876, - "area": 3649.95262384128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 44, - "bbox": [ - 555.669952, - 100.89983999999998, - 20.870016, - 138.98016 - ], - "id": 877, - "area": 2900.5181628825603, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 44, - "bbox": [ - 573.7297279999999, - 96.60024000000001, - 26.969984, - 142.78992 - ], - "id": 878, - "area": 3851.04185776128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 70, - "bbox": [ - 138.38016, - 202.70016, - 336.20992, - 270.26975999999996 - ], - "id": 879, - "area": 90867.37438801919, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 69, - "bbox": [ - -0.0001279999999965753, - 43.669920000000005, - 118.20031999999999, - 144.91008 - ], - "id": 880, - "area": 17128.4178272256, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 74, - "bbox": [ - 476.68031999999994, - 333.94991999999996, - 90.44992, - 30.36 - ], - "id": 881, - "area": 2746.0595712, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 74, - "bbox": [ - 497.1599999999999, - 365.190168, - 114.04992, - 33.699984 - ], - "id": 882, - "area": 3843.48047920128, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 89, - "category_id": 74, - "bbox": [ - 513.13024, - 402.70967999999993, - 126.86976, - 50.12016 - ], - "id": 883, - "area": 6358.7326703616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 134.68, - 28.64999100000003, - 133.71968, - 395.44003799999996 - ], - "id": 884, - "area": 52878.11534054784, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 0.0, - 47.309856000000025, - 185.08032, - 378.690144 - ], - "id": 885, - "area": 70088.09303236607, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 45.73984, - 15.34004699999997, - 162.97024, - 265.89003 - ], - "id": 886, - "area": 43332.1620027072, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 111.180192, - 78.759945, - 34.510016, - 87.799878 - ], - "id": 887, - "area": 3029.975194578048, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 381.08992, - 23.46983099999997, - 175.80032, - 395.969982 - ], - "id": 888, - "area": 69611.64954599424, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 41, - "bbox": [ - 364.50012799999996, - 223.930095, - 24.449983999999997, - 59.780154 - ], - "id": 889, - "area": 1461.623808817536, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 41, - "bbox": [ - 146.339936, - 156.05019000000001, - 49.659968, - 99.309972 - ], - "id": 890, - "area": 4931.730031600896, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 41, - "bbox": [ - 235.400288, - 149.479992, - 24.849984, - 58.580112 - ], - "id": 891, - "area": 1455.7148459182079, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - -6.399999999473494e-05, - 236.44980899999996, - 119.66015999999999, - 184.76003400000002 - ], - "id": 892, - "area": 22108.41523004544, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 41, - "bbox": [ - 0.029951999999994428, - 170.459853, - 67.55008000000001, - 127.18017 - ], - "id": 893, - "area": 8591.030657913601, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 1, - "bbox": [ - 345.79996800000004, - 73.100109, - 49.889984, - 176.280078 - ], - "id": 894, - "area": 8794.610270938752, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 75, - "bbox": [ - 436.240288, - 237.8699439, - 13.089984, - 13.0900002 - ], - "id": 895, - "area": 171.3478931779968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 308, - "category_id": 26, - "bbox": [ - 276.23968, - 63.14022899999999, - 87.61024, - 74.559798 - ], - "id": 896, - "area": 6532.201797131521, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 151, - "category_id": 1, - "bbox": [ - 434.610072, - 61.50976, - 30.560016000000005, - 53.28 - ], - "id": 897, - "area": 1628.2376524800002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 151, - "category_id": 7, - "bbox": [ - 210.76008, - 4.600320000000011, - 269.24016, - 635.39968 - ], - "id": 898, - "area": 171075.1115071488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 151, - "category_id": 12, - "bbox": [ - 212.610072, - 329.17027200000007, - 38.12001600000001, - 35.390016 - ], - "id": 899, - "area": 1349.0679761602564, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 382, - "category_id": 1, - "bbox": [ - 507.709792, - 363.06023999999996, - 53.470015999999994, - 81.27984000000001 - ], - "id": 900, - "area": 4346.03434527744, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 382, - "category_id": 31, - "bbox": [ - 492.71008000000006, - 432.709848, - 77.72992, - 25.059984 - ], - "id": 901, - "area": 1947.9105515212802, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 382, - "category_id": 25, - "bbox": [ - 517.710272, - 365.610048, - 17.190016, - 23.049984000000002 - ], - "id": 902, - "area": 396.22959375974403, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 510, - "category_id": 1, - "bbox": [ - 254.04992, - 130.26984, - 151.35999999999999, - 298.38 - ], - "id": 903, - "area": 45162.7968, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 510, - "category_id": 14, - "bbox": [ - 42.06976000000003, - 226.52015999999998, - 567.37024, - 201.69984000000002 - ], - "id": 904, - "area": 114438.4866287616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 510, - "category_id": 10, - "bbox": [ - 15.099999999999998, - 9.710016, - 36.68, - 57.16992 - ], - "id": 905, - "area": 2096.9926656, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 360, - "category_id": 1, - "bbox": [ - 261.02, - 138.75988125, - 52.1, - 36.9499875 - ], - "id": 906, - "area": 1925.0943487499999, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 360, - "category_id": 1, - "bbox": [ - 97.99000000000001, - 273.39013124999997, - 26.599999999999998, - 21.4099875 - ], - "id": 907, - "area": 569.5056675, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 360, - "category_id": 32, - "bbox": [ - 240.44999999999996, - 155.01, - 52.19, - 41.49 - ], - "id": 908, - "area": 2165.3631, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 1, - "bbox": [ - 124.84, - 130.16976, - 45.199999999999996, - 152.83008 - ], - "id": 909, - "area": 6907.919616, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 39, - "bbox": [ - 140.800224, - 118.93000800000002, - 38.100032, - 16.419984 - ], - "id": 910, - "area": 625.601915839488, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 33, - "bbox": [ - 124.23014400000001, - 91.389792, - 6.540032, - 7.190016 - ], - "id": 911, - "area": 47.022934720512, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 1, - "bbox": [ - 458.52, - 228.82991999999996, - 131.00992, - 176.11008 - ], - "id": 912, - "area": 23072.1674919936, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 3, - "bbox": [ - 434.21999999999997, - 202.49004, - 14.6, - 14.37 - ], - "id": 913, - "area": 209.802, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 3, - "bbox": [ - 529.3202880000001, - 203.300208, - 16.369984, - 10.989984 - ], - "id": 914, - "area": 179.90586224025597, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 419, - "category_id": 3, - "bbox": [ - 329.94003200000003, - 202.72015199999998, - 33.350016, - 11.720016 - ], - "id": 915, - "area": 390.8627211202559, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 426.8799, - 192.46999999999997, - 131.1798, - 176.35 - ], - "id": 916, - "area": 23133.55773, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 128.18970000000002, - 104.46000000000001, - 95.7702, - 167.42000000000002 - ], - "id": 917, - "area": 16033.846884000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 265.5897, - 126.88000000000001, - 100.0002, - 162.77 - ], - "id": 918, - "area": 16277.032554000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 243.52979999999997, - 271.01, - 96.99, - 120.69000000000001 - ], - "id": 919, - "area": 11705.723100000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 114.07980000000002, - 319.22, - 92.28, - 161.25 - ], - "id": 920, - "area": 14880.15, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 35.9601, - 20.22, - 95.5002, - 133.71 - ], - "id": 921, - "area": 12769.331742000002, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 120.17999999999998, - 237.43000000000004, - 114.24000000000001, - 134.32 - ], - "id": 922, - "area": 15344.7168, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 143, - "category_id": 15, - "bbox": [ - 468.7101, - 320.79, - 94.2402, - 154.59 - ], - "id": 923, - "area": 14568.592518000001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 569, - "category_id": 1, - "bbox": [ - 88.10015999999999, - 269.14007999999995, - 80.17984, - 145.38 - ], - "id": 924, - "area": 11656.5451392, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 569, - "category_id": 34, - "bbox": [ - 188.630272, - 205.849968, - 30.070016000000003, - 31.149984000000003 - ], - "id": 925, - "area": 936.6805172797442, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 569, - "category_id": 34, - "bbox": [ - 170.11993600000002, - 216.94008, - 16.659968, - 32.580000000000005 - ], - "id": 926, - "area": 542.7817574400001, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 569, - "category_id": 34, - "bbox": [ - 145.500192, - 229.27991999999998, - 22.990016, - 23.700000000000003 - ], - "id": 927, - "area": 544.8633792, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - }, - { - "image_id": 569, - "category_id": 34, - "bbox": [ - 134.910176, - 239.76988800000004, - 25.659968000000003, - 23.289984 - ], - "id": 928, - "area": 597.6202441605121, - "iscrowd": 0, - "segmentation": [], - "attributes": "" - } - ], - "categories": [ - { - "id": 1, - "name": "person", - "supercategory": "person" - }, - { - "id": 2, - "name": "bicycle", - "supercategory": "bicycle" - }, - { - "id": 3, - "name": "car", - "supercategory": "car" - }, - { - "id": 4, - "name": "motorcycle", - "supercategory": "motorcycle" - }, - { - "id": 5, - "name": "airplane", - "supercategory": "airplane" - }, - { - "id": 6, - "name": "bus", - "supercategory": "bus" - }, - { - "id": 7, - "name": "train", - "supercategory": "train" - }, - { - "id": 8, - "name": "truck", - "supercategory": "truck" - }, - { - "id": 9, - "name": "boat", - "supercategory": "boat" - }, - { - "id": 10, - "name": "traffic light", - "supercategory": "traffic light" - }, - { - "id": 11, - "name": "fire hydrant", - "supercategory": "fire hydrant" - }, - { - "id": 12, - "name": "stop sign", - "supercategory": "stop sign" - }, - { - "id": 13, - "name": "parking meter", - "supercategory": "parking meter" - }, - { - "id": 14, - "name": "bench", - "supercategory": "bench" - }, - { - "id": 15, - "name": "bird", - "supercategory": "bird" - }, - { - "id": 16, - "name": "cat", - "supercategory": "cat" - }, - { - "id": 17, - "name": "dog", - "supercategory": "dog" - }, - { - "id": 18, - "name": "horse", - "supercategory": "horse" - }, - { - "id": 19, - "name": "sheep", - "supercategory": "sheep" - }, - { - "id": 20, - "name": "cow", - "supercategory": "cow" - }, - { - "id": 21, - "name": "elephant", - "supercategory": "elephant" - }, - { - "id": 22, - "name": "bear", - "supercategory": "bear" - }, - { - "id": 23, - "name": "zebra", - "supercategory": "zebra" - }, - { - "id": 24, - "name": "giraffe", - "supercategory": "giraffe" - }, - { - "id": 25, - "name": "backpack", - "supercategory": "backpack" - }, - { - "id": 26, - "name": "umbrella", - "supercategory": "umbrella" - }, - { - "id": 27, - "name": "handbag", - "supercategory": "handbag" - }, - { - "id": 28, - "name": "tie", - "supercategory": "tie" - }, - { - "id": 29, - "name": "suitcase", - "supercategory": "suitcase" - }, - { - "id": 30, - "name": "frisbee", - "supercategory": "frisbee" - }, - { - "id": 31, - "name": "skis", - "supercategory": "skis" - }, - { - "id": 32, - "name": "snowboard", - "supercategory": "snowboard" - }, - { - "id": 33, - "name": "sports ball", - "supercategory": "sports ball" - }, - { - "id": 34, - "name": "kite", - "supercategory": "kite" - }, - { - "id": 35, - "name": "baseball bat", - "supercategory": "baseball bat" - }, - { - "id": 36, - "name": "baseball glove", - "supercategory": "baseball glove" - }, - { - "id": 37, - "name": "skateboard", - "supercategory": "skateboard" - }, - { - "id": 38, - "name": "surfboard", - "supercategory": "surfboard" - }, - { - "id": 39, - "name": "tennis racket", - "supercategory": "tennis racket" - }, - { - "id": 40, - "name": "bottle", - "supercategory": "bottle" - }, - { - "id": 41, - "name": "wine glass", - "supercategory": "wine glass" - }, - { - "id": 42, - "name": "cup", - "supercategory": "cup" - }, - { - "id": 43, - "name": "fork", - "supercategory": "fork" - }, - { - "id": 44, - "name": "knife", - "supercategory": "knife" - }, - { - "id": 45, - "name": "spoon", - "supercategory": "spoon" - }, - { - "id": 46, - "name": "bowl", - "supercategory": "bowl" - }, - { - "id": 47, - "name": "banana", - "supercategory": "banana" - }, - { - "id": 48, - "name": "apple", - "supercategory": "apple" - }, - { - "id": 49, - "name": "sandwich", - "supercategory": "sandwich" - }, - { - "id": 50, - "name": "orange", - "supercategory": "orange" - }, - { - "id": 51, - "name": "broccoli", - "supercategory": "broccoli" - }, - { - "id": 52, - "name": "carrot", - "supercategory": "carrot" - }, - { - "id": 53, - "name": "hot dog", - "supercategory": "hot dog" - }, - { - "id": 54, - "name": "pizza", - "supercategory": "pizza" - }, - { - "id": 55, - "name": "donut", - "supercategory": "donut" - }, - { - "id": 56, - "name": "cake", - "supercategory": "cake" - }, - { - "id": 57, - "name": "chair", - "supercategory": "chair" - }, - { - "id": 58, - "name": "couch", - "supercategory": "couch" - }, - { - "id": 59, - "name": "potted plant", - "supercategory": "potted plant" - }, - { - "id": 60, - "name": "bed", - "supercategory": "bed" - }, - { - "id": 61, - "name": "dining table", - "supercategory": "dining table" - }, - { - "id": 62, - "name": "toilet", - "supercategory": "toilet" - }, - { - "id": 63, - "name": "tv", - "supercategory": "tv" - }, - { - "id": 64, - "name": "laptop", - "supercategory": "laptop" - }, - { - "id": 65, - "name": "mouse", - "supercategory": "mouse" - }, - { - "id": 66, - "name": "remote", - "supercategory": "remote" - }, - { - "id": 67, - "name": "keyboard", - "supercategory": "keyboard" - }, - { - "id": 68, - "name": "cell phone", - "supercategory": "cell phone" - }, - { - "id": 69, - "name": "microwave", - "supercategory": "microwave" - }, - { - "id": 70, - "name": "oven", - "supercategory": "oven" - }, - { - "id": 71, - "name": "toaster", - "supercategory": "toaster" - }, - { - "id": 72, - "name": "sink", - "supercategory": "sink" - }, - { - "id": 73, - "name": "refrigerator", - "supercategory": "refrigerator" - }, - { - "id": 74, - "name": "book", - "supercategory": "book" - }, - { - "id": 75, - "name": "clock", - "supercategory": "clock" - }, - { - "id": 76, - "name": "vase", - "supercategory": "vase" - }, - { - "id": 77, - "name": "scissors", - "supercategory": "scissors" - }, - { - "id": 78, - "name": "teddy bear", - "supercategory": "teddy bear" - }, - { - "id": 79, - "name": "hair drier", - "supercategory": "hair drier" - }, - { - "id": 80, - "name": "toothbrush", - "supercategory": "toothbrush" - } - ] -} \ No newline at end of file