diff --git a/contrib/insualtorDetection/README.md b/contrib/insualtorDetection/README.md new file mode 100644 index 0000000000000000000000000000000000000000..16b546436dcaf6889b65cd0faf189170d621d80a --- /dev/null +++ b/contrib/insualtorDetection/README.md @@ -0,0 +1,102 @@ +# insualtorDetection +## 1.介绍 +本开发样例基于mindSDK开发,在昇腾芯片上对输入的图片进行电力绝缘子的检测,并将检测结果进行保存。 + + +### 1.1 支持的产品 +本项目以昇腾Atlas310卡为主要的硬件平台。 + +### 1.2 支持的版本 +支持的SDK版本为 2.0.4, CANN 版本为 5.0.4。 + +### 1.3 软件方案介绍 +基于mindSDK的电力绝缘子检测模型的推理流程为:
+
+待检测图片通过appsrc插件输入,然后使用mxpi_imagedecoder将图片进行解码,再通过图像缩放插件mxpi_imageresize将图片缩放至合适的分辨率,缩放后的图像输入模型推理插件mxpi_tensorinfer得到输出,随后将得到的输出输入后处理插件mxpi_objectpostprocessor进行后处理,最后将结果输出给appsink完成整个pipeline流程,最后在外部使用python对得到的结果进行绘制完成可视化显示,本系统的各模块及功能如表所示: +

+表1 系统方案各功能模块描述: +|序号|子系统|功能描述| +|-----|-----|-----| +|1|图片输入|获取jpg格式图片 +|2|图片解码|解码图片为YUV420p +|3|图片缩放|将图片缩放到合适的分辨率 +|4|模型推理|对输入的张量进行推理 +|5|电力绝缘子检测后处理|对模型推理输出进行计算得到检测框 +|6|结果可视化|将电力绝缘子检测结果保存为可视化图片 +
+### 1.4 代码目录结构与说明 +项目名为insualtorDetection,项目目录如图所示 + +``` +│ README.md +├─python +│ colorlist.txt +│ visualize.py +│ main.py +│ test.py +│ +├─image +│ test.jpg +│ +├─model +│ label.names +│ yolo.cfg +│ run.sh +│ yolo_aipp.cfg +│ +├─pipeline +│ detect.pipeline +``` + +## 2. 环境依赖 +
+ +### 2.1 环境变量 +
+运行模型前要设置环境变量,需要运行的命令已经写进shell脚本。 +
+ +### 2.2 软件依赖 + +|依赖软件|版本| +|-----|-----| +CANN|20.4.0 +python|3.9.2 +MINDX_SDK|2.0.4 +opencv-python|4.5.3 +numpy|1.21.2 +
+ +## 3.模型转换 +本工程原型是pytorch模型,需要使用atc工具转换为om模型,模型权重文件已上传至,请点击下载,将下载好的模型放到model文件夹下,随后执行脚本 +``` +bash run.sh +``` + +## 4.编译运行 +
+ +### 4.1 获取测试图片 +
+新建一个data文件夹,将需要测试的jpg图片放入该文件夹。 +
+
+ +### 4.2 运行推理工程 +进入python目录,打开main.py,其中有个FILENAME为输入的图片路径,RESULTNAME为输出的图片路径,将其修改为自己需要的路径。执行python文件 + +``` +python main.py +``` +查看图片检测结果是否成功 + +## 5.评估FPS +
+进入python目录,运行test.py,即可以得到测试的结果.(image中的test.jpg是一张1080P的图片) + + + + + + + diff --git a/contrib/insualtorDetection/ground-truth1/0051.txt b/contrib/insualtorDetection/ground-truth1/0051.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2901ddbb3ce6775609c87adb86099a6f35b240e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0051.txt @@ -0,0 +1,2 @@ +insulator 387 125 783 184 +insulator 79 469 970 567 diff --git a/contrib/insualtorDetection/ground-truth1/0056.txt b/contrib/insualtorDetection/ground-truth1/0056.txt new file mode 100644 index 0000000000000000000000000000000000000000..455f6830e6606edd5d4f8371fbffc2d3894de524 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0056.txt @@ -0,0 +1,4 @@ +insulator 131 333 888 483 +insulator 374 542 908 681 +insulator 624 235 952 323 +insulator 234 420 1077 625 diff --git a/contrib/insualtorDetection/ground-truth1/0058.txt b/contrib/insualtorDetection/ground-truth1/0058.txt new file mode 100644 index 0000000000000000000000000000000000000000..344f66039c10a60e14a792aa2c84145fd753a836 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0058.txt @@ -0,0 +1,6 @@ +insulator 199 451 1201 1010 +insulator 503 303 1202 640 +insulator 530 592 1231 1215 +insulator 237 519 1005 1124 +insulator 331 817 1009 1679 +insulator 909 789 2061 1631 diff --git a/contrib/insualtorDetection/ground-truth1/0059.txt b/contrib/insualtorDetection/ground-truth1/0059.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fe82d882ff91ef0267ed3f184b04f083bd9db77 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0059.txt @@ -0,0 +1,3 @@ +insulator 203 384 772 470 +insulator 467 93 717 154 +insulator 1015 94 1152 125 diff --git a/contrib/insualtorDetection/ground-truth1/0060.txt b/contrib/insualtorDetection/ground-truth1/0060.txt new file mode 100644 index 0000000000000000000000000000000000000000..4069d471456f6370999cf3eac1d57b02efc1a7c6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0060.txt @@ -0,0 +1,3 @@ +insulator 260 331 1297 936 +insulator 1 33 326 140 +insulator 94 159 995 882 diff --git a/contrib/insualtorDetection/ground-truth1/0062.txt b/contrib/insualtorDetection/ground-truth1/0062.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a3ed14a1cce61986c828b5f9b4ba1ddee2111d4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0062.txt @@ -0,0 +1,4 @@ +insulator 275 324 1301 808 +insulator 144 278 1121 814 +insulator 813 114 1938 309 +insulator 291 68 776 170 diff --git a/contrib/insualtorDetection/ground-truth1/0069.txt b/contrib/insualtorDetection/ground-truth1/0069.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922e35fcc73718eac8e7ea8a6146cf9d38836b6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0069.txt @@ -0,0 +1 @@ +insulator 169 217 981 584 diff --git a/contrib/insualtorDetection/ground-truth1/0071.txt b/contrib/insualtorDetection/ground-truth1/0071.txt new file mode 100644 index 0000000000000000000000000000000000000000..68ef645252a0d4b87e4836489265453607a2c841 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0071.txt @@ -0,0 +1 @@ +insulator 403 643 831 726 diff --git a/contrib/insualtorDetection/ground-truth1/0078.txt b/contrib/insualtorDetection/ground-truth1/0078.txt new file mode 100644 index 0000000000000000000000000000000000000000..62f43644a7ea7672a6303f17382d24a9af0605d0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0078.txt @@ -0,0 +1 @@ +insulator 148 348 886 668 diff --git a/contrib/insualtorDetection/ground-truth1/0082.txt b/contrib/insualtorDetection/ground-truth1/0082.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d9995b0931363c78aa8d0df59531540e37149f7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0082.txt @@ -0,0 +1 @@ +insulator 172 217 1026 493 diff --git a/contrib/insualtorDetection/ground-truth1/0085.txt b/contrib/insualtorDetection/ground-truth1/0085.txt new file mode 100644 index 0000000000000000000000000000000000000000..f32b79060e7955794375184bca2f8d430d853850 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0085.txt @@ -0,0 +1,2 @@ +insulator 190 452 1023 570 +insulator 543 293 844 338 diff --git a/contrib/insualtorDetection/ground-truth1/0094.txt b/contrib/insualtorDetection/ground-truth1/0094.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2ebec3211a7b42498ba968215c8b5e7919a9e1f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0094.txt @@ -0,0 +1 @@ +insulator 149 345 898 534 diff --git a/contrib/insualtorDetection/ground-truth1/0097.txt b/contrib/insualtorDetection/ground-truth1/0097.txt new file mode 100644 index 0000000000000000000000000000000000000000..b435dd64bd76960c05462e4e67c3879a2cc3f7a6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0097.txt @@ -0,0 +1,5 @@ +insulator 37 483 1072 1081 +insulator 456 491 1187 1007 +insulator 381 73 1145 202 +insulator 8 468 812 1131 +insulator 59 118 439 322 diff --git a/contrib/insualtorDetection/ground-truth1/0098.txt b/contrib/insualtorDetection/ground-truth1/0098.txt new file mode 100644 index 0000000000000000000000000000000000000000..405d556808eded55bd8dbf5c01fb3df8c5a95940 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0098.txt @@ -0,0 +1,2 @@ +insulator 231 424 965 619 +insulator 458 9 825 87 diff --git a/contrib/insualtorDetection/ground-truth1/0101.txt b/contrib/insualtorDetection/ground-truth1/0101.txt new file mode 100644 index 0000000000000000000000000000000000000000..290af2466e83cc8ec32bdf4df90923dbe8525e89 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0101.txt @@ -0,0 +1,3 @@ +insulator 242 534 922 645 +insulator 906 43 1152 71 +insulator 888 575 1151 616 diff --git a/contrib/insualtorDetection/ground-truth1/0104.txt b/contrib/insualtorDetection/ground-truth1/0104.txt new file mode 100644 index 0000000000000000000000000000000000000000..7465b39d3cb627310476b9188433ce24aee0b906 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0104.txt @@ -0,0 +1,4 @@ +insulator 354 402 1015 885 +insulator 236 464 1269 1141 +insulator 88 256 1240 767 +insulator 269 443 1055 949 diff --git a/contrib/insualtorDetection/ground-truth1/0107.txt b/contrib/insualtorDetection/ground-truth1/0107.txt new file mode 100644 index 0000000000000000000000000000000000000000..62b6242a6952d1bf52750e1f101dc2dcf6cc6218 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0107.txt @@ -0,0 +1,2 @@ +insulator 231 460 1107 590 +insulator 934 609 1152 636 diff --git a/contrib/insualtorDetection/ground-truth1/0108.txt b/contrib/insualtorDetection/ground-truth1/0108.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e3befd5ac2ede540e99a3508055a3680f18e7ef --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0108.txt @@ -0,0 +1,2 @@ +insulator 287 430 1034 579 +insulator 579 817 794 864 diff --git a/contrib/insualtorDetection/ground-truth1/0111.txt b/contrib/insualtorDetection/ground-truth1/0111.txt new file mode 100644 index 0000000000000000000000000000000000000000..b913abc1a2c7a56c9ec82b50102d16c8f74dce4c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0111.txt @@ -0,0 +1,4 @@ +insulator 186 360 1008 457 +insulator 558 560 801 585 +insulator 254 544 459 575 +insulator 514 108 838 149 diff --git a/contrib/insualtorDetection/ground-truth1/0120.txt b/contrib/insualtorDetection/ground-truth1/0120.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee66829974c97abda7856723c46fc53c53e51e0e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0120.txt @@ -0,0 +1,2 @@ +insulator 23 290 1051 415 +insulator 63 1 448 36 diff --git a/contrib/insualtorDetection/ground-truth1/0122.txt b/contrib/insualtorDetection/ground-truth1/0122.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d4775de7ad2618ae03b61eb10f49d49c6763a98 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0122.txt @@ -0,0 +1,3 @@ +insulator 230 529 940 689 +insulator 8 57 450 113 +insulator 733 22 927 61 diff --git a/contrib/insualtorDetection/ground-truth1/0134.txt b/contrib/insualtorDetection/ground-truth1/0134.txt new file mode 100644 index 0000000000000000000000000000000000000000..a89dbe7fa4968b2b222ca7342172ad9b4644dadf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0134.txt @@ -0,0 +1,4 @@ +insulator 87 374 903 542 +insulator 1000 10 1152 61 +insulator 101 396 872 570 +insulator 413 78 771 139 diff --git a/contrib/insualtorDetection/ground-truth1/0135.txt b/contrib/insualtorDetection/ground-truth1/0135.txt new file mode 100644 index 0000000000000000000000000000000000000000..23e625913410c1623e7ee19f62bb09b2848bc4e6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0135.txt @@ -0,0 +1 @@ +insulator 112 320 881 412 diff --git a/contrib/insualtorDetection/ground-truth1/0143.txt b/contrib/insualtorDetection/ground-truth1/0143.txt new file mode 100644 index 0000000000000000000000000000000000000000..83f107ec7df18e1c24dd3d3362aff63c31e8544e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0143.txt @@ -0,0 +1,2 @@ +insulator 101 282 864 551 +insulator 166 323 798 462 diff --git a/contrib/insualtorDetection/ground-truth1/0147.txt b/contrib/insualtorDetection/ground-truth1/0147.txt new file mode 100644 index 0000000000000000000000000000000000000000..be4193a27ba737060ecb5070a695a28a8643f0b6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0147.txt @@ -0,0 +1,3 @@ +insulator 129 521 1108 762 +insulator 1 105 403 201 +insulator 118 621 406 681 diff --git a/contrib/insualtorDetection/ground-truth1/0148.txt b/contrib/insualtorDetection/ground-truth1/0148.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d94dbdf6ea7849980358915477334728c999569 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0148.txt @@ -0,0 +1,2 @@ +insulator 79 374 1088 915 +insulator 221 236 1175 760 diff --git a/contrib/insualtorDetection/ground-truth1/0150.txt b/contrib/insualtorDetection/ground-truth1/0150.txt new file mode 100644 index 0000000000000000000000000000000000000000..b44ae853f7e4a0fce07ed18721b8b54e2a5ea26c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0150.txt @@ -0,0 +1,2 @@ +insulator 171 276 988 554 +insulator 731 1 1090 73 diff --git a/contrib/insualtorDetection/ground-truth1/0164.txt b/contrib/insualtorDetection/ground-truth1/0164.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a43d5504e6641bba1461bb7609ae26b501fe729 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0164.txt @@ -0,0 +1,2 @@ +insulator 57 370 942 596 +insulator 1 48 329 131 diff --git a/contrib/insualtorDetection/ground-truth1/0166.txt b/contrib/insualtorDetection/ground-truth1/0166.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2be4f78ad7b981349e3aeba353c1fee362ca66f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0166.txt @@ -0,0 +1,2 @@ +insulator 115 426 956 639 +insulator 772 155 1058 207 diff --git a/contrib/insualtorDetection/ground-truth1/0176.txt b/contrib/insualtorDetection/ground-truth1/0176.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddb902c59afef369dc5555ed0d0179fd50eced1b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0176.txt @@ -0,0 +1,2 @@ +insulator 189 435 934 530 +insulator 435 801 916 863 diff --git a/contrib/insualtorDetection/ground-truth1/0177.txt b/contrib/insualtorDetection/ground-truth1/0177.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca1076364fea971bd2167f10eb72fbc88a57db89 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0177.txt @@ -0,0 +1 @@ +insulator 281 368 846 428 diff --git a/contrib/insualtorDetection/ground-truth1/0178.txt b/contrib/insualtorDetection/ground-truth1/0178.txt new file mode 100644 index 0000000000000000000000000000000000000000..74848702a85e36fd67c4333edddccb43a6d06aa5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0178.txt @@ -0,0 +1,3 @@ +insulator 256 104 455 140 +insulator 249 296 911 421 +insulator 288 459 466 517 diff --git a/contrib/insualtorDetection/ground-truth1/0183.txt b/contrib/insualtorDetection/ground-truth1/0183.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b395ff10687ac28077a9631460790686150b408 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0183.txt @@ -0,0 +1 @@ +insulator 157 296 1004 561 diff --git a/contrib/insualtorDetection/ground-truth1/0187.txt b/contrib/insualtorDetection/ground-truth1/0187.txt new file mode 100644 index 0000000000000000000000000000000000000000..5df1b27415a3bf5c3e581e0b9625dd51d53baf57 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0187.txt @@ -0,0 +1,2 @@ +insulator 198 511 906 648 +insulator 481 4 761 68 diff --git a/contrib/insualtorDetection/ground-truth1/0188.txt b/contrib/insualtorDetection/ground-truth1/0188.txt new file mode 100644 index 0000000000000000000000000000000000000000..88cb9026024b9551250077243131758a1167d6f6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0188.txt @@ -0,0 +1,2 @@ +insulator 189 406 1053 512 +insulator 609 203 894 248 diff --git a/contrib/insualtorDetection/ground-truth1/0200.txt b/contrib/insualtorDetection/ground-truth1/0200.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23f07c20cbf05de25205afdd15c3c0d2f6ba4ae --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0200.txt @@ -0,0 +1,4 @@ +insulator 191 471 1186 1074 +insulator 357 1 1078 54 +insulator 200 482 1201 1063 +insulator 645 35 1592 116 diff --git a/contrib/insualtorDetection/ground-truth1/0202.txt b/contrib/insualtorDetection/ground-truth1/0202.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a4ae8198f25d6e87c365147be028bd4b4d4e67a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0202.txt @@ -0,0 +1 @@ +insulator 94 315 983 471 diff --git a/contrib/insualtorDetection/ground-truth1/0203.txt b/contrib/insualtorDetection/ground-truth1/0203.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5417fb3d6e6e07dc748ac524dc6bd213a3228a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0203.txt @@ -0,0 +1,3 @@ +insulator 108 331 847 525 +insulator 106 658 675 812 +insulator 962 569 1152 640 diff --git a/contrib/insualtorDetection/ground-truth1/0211.txt b/contrib/insualtorDetection/ground-truth1/0211.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac7240258f224cb4072c1cb915e04d7a1b22f785 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0211.txt @@ -0,0 +1,4 @@ +insulator 176 341 1257 1334 +insulator 173 433 1332 1404 +insulator 226 447 1418 1541 +insulator 447 312 1588 1000 diff --git a/contrib/insualtorDetection/ground-truth1/0223.txt b/contrib/insualtorDetection/ground-truth1/0223.txt new file mode 100644 index 0000000000000000000000000000000000000000..743c9062584b7bcd3e5c6d9e53d4a2d3838a9fe6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0223.txt @@ -0,0 +1,5 @@ +insulator 659 187 1000 238 +insulator 186 417 1060 536 +insulator 647 630 905 667 +insulator 739 572 833 590 +insulator 875 580 937 615 diff --git a/contrib/insualtorDetection/ground-truth1/0226.txt b/contrib/insualtorDetection/ground-truth1/0226.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bfaea8063b5719f64443a05bd351d0ba1d9ff85 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0226.txt @@ -0,0 +1,4 @@ +insulator 158 347 1061 515 +insulator 534 574 756 614 +insulator 583 164 822 202 +insulator 369 431 1025 633 diff --git a/contrib/insualtorDetection/ground-truth1/0237.txt b/contrib/insualtorDetection/ground-truth1/0237.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b23baf77d85981d0c2fbf79745e713578afdd4a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0237.txt @@ -0,0 +1,3 @@ +insulator 130 317 959 439 +insulator 607 278 883 317 +insulator 130 229 321 274 diff --git a/contrib/insualtorDetection/ground-truth1/0239.txt b/contrib/insualtorDetection/ground-truth1/0239.txt new file mode 100644 index 0000000000000000000000000000000000000000..0528a0026eecde00bef0aeeda963505303b8b1e0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0239.txt @@ -0,0 +1,4 @@ +insulator 238 300 991 547 +insulator 14 319 332 406 +insulator 117 724 405 819 +insulator 146 376 957 546 diff --git a/contrib/insualtorDetection/ground-truth1/0244.txt b/contrib/insualtorDetection/ground-truth1/0244.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d24037b0af532b8daed27d34dfd2de141f1d92 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0244.txt @@ -0,0 +1,5 @@ +insulator 240 502 901 590 +insulator 676 170 1011 228 +insulator 192 364 1032 557 +insulator 467 547 739 613 +insulator 444 104 789 181 diff --git a/contrib/insualtorDetection/ground-truth1/0246.txt b/contrib/insualtorDetection/ground-truth1/0246.txt new file mode 100644 index 0000000000000000000000000000000000000000..5362e670415969018228b8469696f70a5eb3c84a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0246.txt @@ -0,0 +1,3 @@ +insulator 28 194 270 264 +insulator 105 273 911 520 +insulator 311 752 750 864 diff --git a/contrib/insualtorDetection/ground-truth1/0249.txt b/contrib/insualtorDetection/ground-truth1/0249.txt new file mode 100644 index 0000000000000000000000000000000000000000..9078b331fe4c340ce900fc8507c53eaf5202c367 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0249.txt @@ -0,0 +1 @@ +insulator 1 465 1022 645 diff --git a/contrib/insualtorDetection/ground-truth1/0251.txt b/contrib/insualtorDetection/ground-truth1/0251.txt new file mode 100644 index 0000000000000000000000000000000000000000..da40c7858999a3a813782faefef08ba265ae7173 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0251.txt @@ -0,0 +1,2 @@ +insulator 148 357 1120 865 +insulator 122 374 1029 1071 diff --git a/contrib/insualtorDetection/ground-truth1/0252.txt b/contrib/insualtorDetection/ground-truth1/0252.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d7f47cb1afb7aaf59b1d8274119d62a92d65914 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0252.txt @@ -0,0 +1,2 @@ +insulator 43 306 1079 453 +insulator 412 1 798 66 diff --git a/contrib/insualtorDetection/ground-truth1/0260.txt b/contrib/insualtorDetection/ground-truth1/0260.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ad7760154ec4cb8dd27e8cb39bd42d1a9d11844 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0260.txt @@ -0,0 +1,2 @@ +insulator 111 295 962 644 +insulator 739 133 1114 222 diff --git a/contrib/insualtorDetection/ground-truth1/0261.txt b/contrib/insualtorDetection/ground-truth1/0261.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8173d753df6684088f23fe176c1a41a98997128 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0261.txt @@ -0,0 +1,4 @@ +insulator 254 210 1239 811 +insulator 685 117 1615 362 +insulator 632 493 1462 1095 +insulator 175 288 1201 721 diff --git a/contrib/insualtorDetection/ground-truth1/0269.txt b/contrib/insualtorDetection/ground-truth1/0269.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a68180329a00128320e306959aecadaa99cd59 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0269.txt @@ -0,0 +1,2 @@ +insulator 316 452 961 525 +insulator 519 687 928 751 diff --git a/contrib/insualtorDetection/ground-truth1/0277.txt b/contrib/insualtorDetection/ground-truth1/0277.txt new file mode 100644 index 0000000000000000000000000000000000000000..c199729f30d85ce68690be4cb7a5b3e95c1438b1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0277.txt @@ -0,0 +1,2 @@ +insulator 224 660 684 774 +insulator 208 339 886 527 diff --git a/contrib/insualtorDetection/ground-truth1/0283.txt b/contrib/insualtorDetection/ground-truth1/0283.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96b15aa8a69a3bf173cba3380d2a12fb33635b6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0283.txt @@ -0,0 +1,3 @@ +insulator 42 550 935 718 +insulator 934 242 1127 294 +insulator 848 729 1152 774 diff --git a/contrib/insualtorDetection/ground-truth1/0286.txt b/contrib/insualtorDetection/ground-truth1/0286.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c163a58e47fa201e9883a1ab13a1bdb422e96f1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0286.txt @@ -0,0 +1,3 @@ +insulator 120 416 924 489 +insulator 408 614 682 651 +insulator 322 100 676 165 diff --git a/contrib/insualtorDetection/ground-truth1/0288.txt b/contrib/insualtorDetection/ground-truth1/0288.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f814206929f62eeffd5c36ced7b39b4d80eb995 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0288.txt @@ -0,0 +1,2 @@ +insulator 238 434 972 494 +insulator 23 115 253 140 diff --git a/contrib/insualtorDetection/ground-truth1/0295.txt b/contrib/insualtorDetection/ground-truth1/0295.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0d145da64bd0b4cc29b4a14191b4560c0aa12d4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0295.txt @@ -0,0 +1 @@ +insulator 155 564 898 651 diff --git a/contrib/insualtorDetection/ground-truth1/0307.txt b/contrib/insualtorDetection/ground-truth1/0307.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc9ceeb47061c3160914b45b6405af6b75a4b8b8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0307.txt @@ -0,0 +1,5 @@ +insulator 70 517 982 672 +insulator 617 530 905 582 +insulator 549 28 944 90 +insulator 62 584 829 732 +insulator 333 796 911 863 diff --git a/contrib/insualtorDetection/ground-truth1/0309.txt b/contrib/insualtorDetection/ground-truth1/0309.txt new file mode 100644 index 0000000000000000000000000000000000000000..180798b2e49e16b9e8020b044b469bb892363f68 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0309.txt @@ -0,0 +1,4 @@ +insulator 79 345 1017 781 +insulator 315 479 1436 1131 +insulator 944 1 2066 29 +insulator 711 9 1556 52 diff --git a/contrib/insualtorDetection/ground-truth1/0310.txt b/contrib/insualtorDetection/ground-truth1/0310.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c239f3bcc940b97cb08a38c8bc8673adcec6090 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0310.txt @@ -0,0 +1,3 @@ +insulator 249 384 921 655 +insulator 529 610 1017 815 +insulator 21 460 294 566 diff --git a/contrib/insualtorDetection/ground-truth1/0320.txt b/contrib/insualtorDetection/ground-truth1/0320.txt new file mode 100644 index 0000000000000000000000000000000000000000..850735abd17a9f14fdcd823b45fe8983a4a64e13 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0320.txt @@ -0,0 +1,2 @@ +insulator 183 406 1100 503 +insulator 995 15 1152 81 diff --git a/contrib/insualtorDetection/ground-truth1/0321.txt b/contrib/insualtorDetection/ground-truth1/0321.txt new file mode 100644 index 0000000000000000000000000000000000000000..429cfd60e00464eb0e28c547905d896d780e2849 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0321.txt @@ -0,0 +1,5 @@ +insulator 183 380 1009 542 +insulator 536 275 744 318 +insulator 516 580 703 616 +insulator 977 288 1149 347 +insulator 942 605 1146 678 diff --git a/contrib/insualtorDetection/ground-truth1/0326.txt b/contrib/insualtorDetection/ground-truth1/0326.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b8b61a39159fda1aa902b4674b7088d76e4f3fd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0326.txt @@ -0,0 +1,3 @@ +insulator 248 446 1345 1007 +insulator 665 245 1557 522 +insulator 163 381 1164 965 diff --git a/contrib/insualtorDetection/ground-truth1/0330.txt b/contrib/insualtorDetection/ground-truth1/0330.txt new file mode 100644 index 0000000000000000000000000000000000000000..e22df7f6ef0704508c53b11141823ecbb3fe34a0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0330.txt @@ -0,0 +1,2 @@ +insulator 527 197 790 243 +insulator 198 504 926 668 diff --git a/contrib/insualtorDetection/ground-truth1/0333.txt b/contrib/insualtorDetection/ground-truth1/0333.txt new file mode 100644 index 0000000000000000000000000000000000000000..88ddf62f2a4e4a5f69c311f47af9298c9f59a367 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0333.txt @@ -0,0 +1,2 @@ +insulator 201 368 352 455 +insulator 244 408 996 638 diff --git a/contrib/insualtorDetection/ground-truth1/0334.txt b/contrib/insualtorDetection/ground-truth1/0334.txt new file mode 100644 index 0000000000000000000000000000000000000000..015d988fb4483ad76d6d814b4e834f4c710f3733 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0334.txt @@ -0,0 +1,2 @@ +insulator 100 332 883 494 +insulator 390 330 633 376 diff --git a/contrib/insualtorDetection/ground-truth1/0335.txt b/contrib/insualtorDetection/ground-truth1/0335.txt new file mode 100644 index 0000000000000000000000000000000000000000..f45a5b1a979e711ebc730852e555c359c67e54f0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0335.txt @@ -0,0 +1,4 @@ +insulator 243 450 964 542 +insulator 243 417 472 444 +insulator 210 2 478 48 +insulator 272 752 470 782 diff --git a/contrib/insualtorDetection/ground-truth1/0341.txt b/contrib/insualtorDetection/ground-truth1/0341.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b73b0514b4097257fc9ae3b5f54a82b3a6831f4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0341.txt @@ -0,0 +1,4 @@ +insulator 194 336 832 660 +insulator 1 1 201 55 +insulator 72 217 1037 556 +insulator 21 553 748 817 diff --git a/contrib/insualtorDetection/ground-truth1/0342.txt b/contrib/insualtorDetection/ground-truth1/0342.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb2c09352edebde086b82a7241e7762013052afc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0342.txt @@ -0,0 +1,3 @@ +insulator 145 361 965 609 +insulator 407 738 969 864 +insulator 1 690 66 742 diff --git a/contrib/insualtorDetection/ground-truth1/0344.txt b/contrib/insualtorDetection/ground-truth1/0344.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea69e2ff5766a51f25397b993e1f40f401acd4b4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0344.txt @@ -0,0 +1,3 @@ +insulator 144 390 1101 878 +insulator 311 546 1313 1164 +insulator 50 485 345 998 diff --git a/contrib/insualtorDetection/ground-truth1/0345.txt b/contrib/insualtorDetection/ground-truth1/0345.txt new file mode 100644 index 0000000000000000000000000000000000000000..a02331654652e6f4d3a147c14f678beebe0b3e3c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0345.txt @@ -0,0 +1,4 @@ +insulator 203 323 1034 467 +insulator 759 195 1004 239 +insulator 129 403 927 528 +insulator 291 30 566 79 diff --git a/contrib/insualtorDetection/ground-truth1/0346.txt b/contrib/insualtorDetection/ground-truth1/0346.txt new file mode 100644 index 0000000000000000000000000000000000000000..b113403159d0768cd3dc52363561e4b06ccd6061 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0346.txt @@ -0,0 +1,3 @@ +insulator 203 488 945 642 +insulator 586 475 776 517 +insulator 621 115 838 153 diff --git a/contrib/insualtorDetection/ground-truth1/0348.txt b/contrib/insualtorDetection/ground-truth1/0348.txt new file mode 100644 index 0000000000000000000000000000000000000000..f946eb5765bfaf3088fe5f697fb121a2d17dc912 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0348.txt @@ -0,0 +1,3 @@ +insulator 122 309 1152 520 +insulator 110 550 422 633 +insulator 18 1 396 52 diff --git a/contrib/insualtorDetection/ground-truth1/0352.txt b/contrib/insualtorDetection/ground-truth1/0352.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b3f84bb1c42cf09ded847e9b5b87966e9090b00 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0352.txt @@ -0,0 +1,5 @@ +insulator 274 108 651 202 +insulator 412 336 939 427 +insulator 19 670 320 715 +insulator 71 236 947 513 +insulator 137 170 439 266 diff --git a/contrib/insualtorDetection/ground-truth1/0354.txt b/contrib/insualtorDetection/ground-truth1/0354.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbf83322f2c3405d2ea974d54cf4a1a701d616f9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0354.txt @@ -0,0 +1,3 @@ +insulator 44 440 1059 1158 +insulator 1 33 187 133 +insulator 117 424 1175 1015 diff --git a/contrib/insualtorDetection/ground-truth1/0358.txt b/contrib/insualtorDetection/ground-truth1/0358.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f34d0de938375384f36ed2d336159a9feabbee1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0358.txt @@ -0,0 +1,3 @@ +insulator 177 494 1060 1070 +insulator 401 198 1135 444 +insulator 192 574 1095 1275 diff --git a/contrib/insualtorDetection/ground-truth1/0362.txt b/contrib/insualtorDetection/ground-truth1/0362.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c453044ee2bbcbcc835a918733b286677d81d6d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0362.txt @@ -0,0 +1,2 @@ +insulator 196 401 1087 571 +insulator 392 86 765 165 diff --git a/contrib/insualtorDetection/ground-truth1/0364.txt b/contrib/insualtorDetection/ground-truth1/0364.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1dc6daf123ec589f52b8381605182ddefaadb37 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0364.txt @@ -0,0 +1,2 @@ +insulator 88 458 1165 1155 +insulator 35 365 862 939 diff --git a/contrib/insualtorDetection/ground-truth1/0365.txt b/contrib/insualtorDetection/ground-truth1/0365.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a4be7ab3a7d3c48eeb31bc65e2694353179473 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0365.txt @@ -0,0 +1 @@ +insulator 144 391 959 566 diff --git a/contrib/insualtorDetection/ground-truth1/0367.txt b/contrib/insualtorDetection/ground-truth1/0367.txt new file mode 100644 index 0000000000000000000000000000000000000000..4416d094a18d7e3e92e453046321eaf8d1e611d5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0367.txt @@ -0,0 +1,2 @@ +insulator 89 158 1107 489 +insulator 36 203 1123 582 diff --git a/contrib/insualtorDetection/ground-truth1/0369.txt b/contrib/insualtorDetection/ground-truth1/0369.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d937df7ad64b827a48351aba05fefbb2d16da4e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0369.txt @@ -0,0 +1,3 @@ +insulator 182 272 1149 696 +insulator 476 666 1168 1382 +insulator 342 67 1329 823 diff --git a/contrib/insualtorDetection/ground-truth1/0370.txt b/contrib/insualtorDetection/ground-truth1/0370.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ba8cf17a7ac766a8a060df909625ace4be8acce --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0370.txt @@ -0,0 +1 @@ +insulator 273 359 722 593 diff --git a/contrib/insualtorDetection/ground-truth1/0376.txt b/contrib/insualtorDetection/ground-truth1/0376.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3aee2b7e14cb383937bca71e9d69b4f540bc11e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0376.txt @@ -0,0 +1,2 @@ +insulator 144 462 907 571 +insulator 460 123 695 162 diff --git a/contrib/insualtorDetection/ground-truth1/0379.txt b/contrib/insualtorDetection/ground-truth1/0379.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c663adb139ef880eb0e1c8fe3b858732119e553 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0379.txt @@ -0,0 +1,3 @@ +insulator 165 403 1015 912 +insulator 111 287 1048 744 +insulator 341 1 977 60 diff --git a/contrib/insualtorDetection/ground-truth1/0386.txt b/contrib/insualtorDetection/ground-truth1/0386.txt new file mode 100644 index 0000000000000000000000000000000000000000..74da2447e9d876cf432086a303a8d00f0e7423c7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0386.txt @@ -0,0 +1 @@ +insulator 66 202 908 435 diff --git a/contrib/insualtorDetection/ground-truth1/0401.txt b/contrib/insualtorDetection/ground-truth1/0401.txt new file mode 100644 index 0000000000000000000000000000000000000000..78264bc47c70b1a3886aadbcc847759a76f21d7f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0401.txt @@ -0,0 +1,7 @@ +insulator 94 343 947 848 +insulator 597 1 1520 93 +insulator 52 415 843 970 +insulator 55 405 1111 930 +insulator 320 734 892 1501 +insulator 254 389 791 826 +insulator 297 1 819 44 diff --git a/contrib/insualtorDetection/ground-truth1/0403.txt b/contrib/insualtorDetection/ground-truth1/0403.txt new file mode 100644 index 0000000000000000000000000000000000000000..41f4fb31515205acb4073361cc8d929e47fde1b8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0403.txt @@ -0,0 +1,3 @@ +insulator 107 312 1074 416 +insulator 421 603 657 627 +insulator 441 134 698 175 diff --git a/contrib/insualtorDetection/ground-truth1/0413.txt b/contrib/insualtorDetection/ground-truth1/0413.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba742d46eeb288a2cf27ec982bdd7c4470fa3d91 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0413.txt @@ -0,0 +1 @@ +insulator 162 181 802 523 diff --git a/contrib/insualtorDetection/ground-truth1/0414.txt b/contrib/insualtorDetection/ground-truth1/0414.txt new file mode 100644 index 0000000000000000000000000000000000000000..a547687b9194160de5aaa974137597d604ab200e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0414.txt @@ -0,0 +1,8 @@ +insulator 235 303 1277 991 +insulator 362 549 914 1197 +insulator 283 271 795 646 +insulator 222 316 1108 746 +insulator 342 11 916 59 +insulator 227 472 1364 1133 +insulator 204 636 601 1309 +insulator 106 170 425 384 diff --git a/contrib/insualtorDetection/ground-truth1/0429.txt b/contrib/insualtorDetection/ground-truth1/0429.txt new file mode 100644 index 0000000000000000000000000000000000000000..656f44c3b5939158d69341c494e3803a891ab9e0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0429.txt @@ -0,0 +1,3 @@ +insulator 46 410 1059 583 +insulator 741 529 974 569 +insulator 819 74 1084 132 diff --git a/contrib/insualtorDetection/ground-truth1/0431.txt b/contrib/insualtorDetection/ground-truth1/0431.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8eb2aa3c763f5a34af044b8a018aa3b4ef69be5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0431.txt @@ -0,0 +1 @@ +insulator 49 279 907 488 diff --git a/contrib/insualtorDetection/ground-truth1/0444.txt b/contrib/insualtorDetection/ground-truth1/0444.txt new file mode 100644 index 0000000000000000000000000000000000000000..d904f1a760f33c95fb9bafd5b4621300aff01998 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0444.txt @@ -0,0 +1 @@ +insulator 175 328 908 458 diff --git a/contrib/insualtorDetection/ground-truth1/0446.txt b/contrib/insualtorDetection/ground-truth1/0446.txt new file mode 100644 index 0000000000000000000000000000000000000000..01a8ee89e81fb0b91f6dc391e8f5760f1e1665fd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0446.txt @@ -0,0 +1,4 @@ +insulator 29 263 959 916 +insulator 231 430 775 987 +insulator 161 148 696 352 +insulator 258 571 1303 1228 diff --git a/contrib/insualtorDetection/ground-truth1/0453.txt b/contrib/insualtorDetection/ground-truth1/0453.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cdd5a6acfc6030bdab17899cf5125d325e69fe --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0453.txt @@ -0,0 +1 @@ +insulator 87 347 874 539 diff --git a/contrib/insualtorDetection/ground-truth1/0454.txt b/contrib/insualtorDetection/ground-truth1/0454.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2d158038950267c819922af5f5649375478d80d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0454.txt @@ -0,0 +1,2 @@ +insulator 47 373 861 503 +insulator 1 118 244 175 diff --git a/contrib/insualtorDetection/ground-truth1/0459.txt b/contrib/insualtorDetection/ground-truth1/0459.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3f71e727286956ee006e864a94dab1e0b801e36 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0459.txt @@ -0,0 +1,5 @@ +insulator 236 578 1401 1839 +insulator 331 361 1299 1146 +insulator 105 338 1165 1179 +insulator 104 511 1129 1699 +insulator 281 326 1121 1033 diff --git a/contrib/insualtorDetection/ground-truth1/0469.txt b/contrib/insualtorDetection/ground-truth1/0469.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc0e6ae8e017c94db7f9f762234118aeb8bbc325 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0469.txt @@ -0,0 +1,2 @@ +insulator 115 441 964 594 +insulator 322 711 934 823 diff --git a/contrib/insualtorDetection/ground-truth1/0479.txt b/contrib/insualtorDetection/ground-truth1/0479.txt new file mode 100644 index 0000000000000000000000000000000000000000..992f253f55f147b8750a874d676337155874d2b2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0479.txt @@ -0,0 +1,3 @@ +insulator 163 393 1068 493 +insulator 218 436 959 623 +insulator 544 7 847 81 diff --git a/contrib/insualtorDetection/ground-truth1/0493.txt b/contrib/insualtorDetection/ground-truth1/0493.txt new file mode 100644 index 0000000000000000000000000000000000000000..7940a60c302abe26a6d9bc8922e799d82a2302f2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0493.txt @@ -0,0 +1,3 @@ +insulator 167 465 879 553 +insulator 199 416 1088 642 +insulator 872 134 1152 208 diff --git a/contrib/insualtorDetection/ground-truth1/0495.txt b/contrib/insualtorDetection/ground-truth1/0495.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e525f80f093032ea8074bbc611250d8c7a7f708 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0495.txt @@ -0,0 +1,4 @@ +insulator 173 354 961 489 +insulator 527 323 789 371 +insulator 560 690 787 731 +insulator 140 240 913 499 diff --git a/contrib/insualtorDetection/ground-truth1/0503.txt b/contrib/insualtorDetection/ground-truth1/0503.txt new file mode 100644 index 0000000000000000000000000000000000000000..80ae5a46ca31632a24395f4e59f5757da7dd70e7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0503.txt @@ -0,0 +1,4 @@ +insulator 579 340 837 457 +insulator 348 402 1025 735 +insulator 122 425 988 567 +insulator 504 152 818 213 diff --git a/contrib/insualtorDetection/ground-truth1/0506.txt b/contrib/insualtorDetection/ground-truth1/0506.txt new file mode 100644 index 0000000000000000000000000000000000000000..997c671c2c7c0b553975f1cbecf37a9d835fbab5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0506.txt @@ -0,0 +1,4 @@ +insulator 197 313 891 544 +insulator 566 226 834 305 +insulator 94 460 920 551 +insulator 423 380 698 412 diff --git a/contrib/insualtorDetection/ground-truth1/0509.txt b/contrib/insualtorDetection/ground-truth1/0509.txt new file mode 100644 index 0000000000000000000000000000000000000000..f796ba089a919a68851832cdd06a0c8d7b4a165d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0509.txt @@ -0,0 +1 @@ +insulator 130 607 1019 712 diff --git a/contrib/insualtorDetection/ground-truth1/0539.txt b/contrib/insualtorDetection/ground-truth1/0539.txt new file mode 100644 index 0000000000000000000000000000000000000000..e22aab638236d65bf5b0c77d1bb0d4562a9cada9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0539.txt @@ -0,0 +1,4 @@ +insulator 199 403 1159 1094 +insulator 729 38 1868 172 +insulator 140 329 1101 844 +insulator 1 272 367 608 diff --git a/contrib/insualtorDetection/ground-truth1/0540.txt b/contrib/insualtorDetection/ground-truth1/0540.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ca8e173202a8f917ab025d8ccefa5808aff0e0d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0540.txt @@ -0,0 +1 @@ +insulator 10 270 957 481 diff --git a/contrib/insualtorDetection/ground-truth1/0545.txt b/contrib/insualtorDetection/ground-truth1/0545.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bc96797d5d01284459200dbfcc9b2fdf3c9f794 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0545.txt @@ -0,0 +1,5 @@ +insulator 269 407 1013 625 +insulator 511 131 808 208 +insulator 87 427 1080 544 +insulator 611 606 972 642 +insulator 665 59 1063 132 diff --git a/contrib/insualtorDetection/ground-truth1/0547.txt b/contrib/insualtorDetection/ground-truth1/0547.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d0fde2b3c278a8fd4c348f0dd1f5b0ce6c3ac1e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0547.txt @@ -0,0 +1,2 @@ +insulator 101 235 979 464 +insulator 325 652 952 862 diff --git a/contrib/insualtorDetection/ground-truth1/0550.txt b/contrib/insualtorDetection/ground-truth1/0550.txt new file mode 100644 index 0000000000000000000000000000000000000000..642bf9f46af55e34f2d0bdb67beee73a1729a92c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0550.txt @@ -0,0 +1,2 @@ +insulator 56 347 908 469 +insulator 541 301 751 331 diff --git a/contrib/insualtorDetection/ground-truth1/0559.txt b/contrib/insualtorDetection/ground-truth1/0559.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5f8785d6b4f0b1bba86e9e12ce9b893ed98d07e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0559.txt @@ -0,0 +1,3 @@ +insulator 156 424 954 638 +insulator 80 284 1023 488 +insulator 129 86 581 199 diff --git a/contrib/insualtorDetection/ground-truth1/0560.txt b/contrib/insualtorDetection/ground-truth1/0560.txt new file mode 100644 index 0000000000000000000000000000000000000000..8986561e4c30e81e50a966a734f21aa932ee24fc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0560.txt @@ -0,0 +1 @@ +insulator 198 437 956 746 diff --git a/contrib/insualtorDetection/ground-truth1/0569.txt b/contrib/insualtorDetection/ground-truth1/0569.txt new file mode 100644 index 0000000000000000000000000000000000000000..b31b9a6e961f88d57bc6e7b931652a47ad858f8f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0569.txt @@ -0,0 +1,2 @@ +insulator 261 434 917 546 +insulator 222 28 590 112 diff --git a/contrib/insualtorDetection/ground-truth1/0570.txt b/contrib/insualtorDetection/ground-truth1/0570.txt new file mode 100644 index 0000000000000000000000000000000000000000..14caa82b7517eb190f38f8ec5cca1be58275515c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0570.txt @@ -0,0 +1,2 @@ +insulator 188 578 908 688 +insulator 336 107 648 151 diff --git a/contrib/insualtorDetection/ground-truth1/0572.txt b/contrib/insualtorDetection/ground-truth1/0572.txt new file mode 100644 index 0000000000000000000000000000000000000000..0540952fa2762a0fcf894218308aceb330489011 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0572.txt @@ -0,0 +1 @@ +insulator 201 495 966 689 diff --git a/contrib/insualtorDetection/ground-truth1/0573.txt b/contrib/insualtorDetection/ground-truth1/0573.txt new file mode 100644 index 0000000000000000000000000000000000000000..8262a4d7de2678924d1cbbd8246d8ceeb522a837 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0573.txt @@ -0,0 +1,3 @@ +insulator 147 413 1117 534 +insulator 571 662 829 692 +insulator 536 175 862 233 diff --git a/contrib/insualtorDetection/ground-truth1/0578.txt b/contrib/insualtorDetection/ground-truth1/0578.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ec9ae7274a9b8d1d68f5f6232c155dbcb7caf6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0578.txt @@ -0,0 +1,2 @@ +insulator 172 416 979 552 +insulator 603 196 799 224 diff --git a/contrib/insualtorDetection/ground-truth1/0591.txt b/contrib/insualtorDetection/ground-truth1/0591.txt new file mode 100644 index 0000000000000000000000000000000000000000..66fb32fd811fba8a92c3738703582fab91231721 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0591.txt @@ -0,0 +1,4 @@ +insulator 286 503 966 638 +insulator 786 432 1040 489 +insulator 780 798 1022 860 +insulator 758 1 1086 53 diff --git a/contrib/insualtorDetection/ground-truth1/0593.txt b/contrib/insualtorDetection/ground-truth1/0593.txt new file mode 100644 index 0000000000000000000000000000000000000000..a89536da644d19fc04101e852f4f726525713c56 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0593.txt @@ -0,0 +1,3 @@ +insulator 422 675 951 751 +insulator 96 402 1107 551 +insulator 548 125 780 174 diff --git a/contrib/insualtorDetection/ground-truth1/0599.txt b/contrib/insualtorDetection/ground-truth1/0599.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fccfcfa3fc8b7fb5e8dc44447dc6bf69916a916 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0599.txt @@ -0,0 +1,2 @@ +insulator 286 417 951 600 +insulator 272 109 501 162 diff --git a/contrib/insualtorDetection/ground-truth1/0600.txt b/contrib/insualtorDetection/ground-truth1/0600.txt new file mode 100644 index 0000000000000000000000000000000000000000..98ae8bae4acbdb9d9452bd7dc00510e7e11b65dc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0600.txt @@ -0,0 +1,2 @@ +insulator 141 214 884 410 +insulator 222 362 939 508 diff --git a/contrib/insualtorDetection/ground-truth1/0602.txt b/contrib/insualtorDetection/ground-truth1/0602.txt new file mode 100644 index 0000000000000000000000000000000000000000..d89c3dc1c2e20f05cfc422c756610a34494ea0cf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0602.txt @@ -0,0 +1,2 @@ +insulator 132 329 939 478 +insulator 530 48 745 104 diff --git a/contrib/insualtorDetection/ground-truth1/0603.txt b/contrib/insualtorDetection/ground-truth1/0603.txt new file mode 100644 index 0000000000000000000000000000000000000000..60e52c40bb34cef05732741d7e401fd31fd5f4e7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0603.txt @@ -0,0 +1 @@ +insulator 337 484 821 643 diff --git a/contrib/insualtorDetection/ground-truth1/0606.txt b/contrib/insualtorDetection/ground-truth1/0606.txt new file mode 100644 index 0000000000000000000000000000000000000000..030a5c4beaf282386093109c34f5ba1b134ab96b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0606.txt @@ -0,0 +1 @@ +insulator 1 393 812 628 diff --git a/contrib/insualtorDetection/ground-truth1/0612.txt b/contrib/insualtorDetection/ground-truth1/0612.txt new file mode 100644 index 0000000000000000000000000000000000000000..cddab703d2235764c102deca1229bd262d17fbcd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0612.txt @@ -0,0 +1,4 @@ +insulator 246 486 1062 788 +insulator 140 604 396 697 +insulator 5 43 295 142 +insulator 215 411 979 763 diff --git a/contrib/insualtorDetection/ground-truth1/0617.txt b/contrib/insualtorDetection/ground-truth1/0617.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa03f5fb42af5f71e551c9c27fb5750de964a237 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0617.txt @@ -0,0 +1,5 @@ +insulator 297 313 1232 728 +insulator 399 681 1307 1464 +insulator 182 338 1154 883 +insulator 480 506 1176 1078 +insulator 407 91 1086 253 diff --git a/contrib/insualtorDetection/ground-truth1/0618.txt b/contrib/insualtorDetection/ground-truth1/0618.txt new file mode 100644 index 0000000000000000000000000000000000000000..b42380db390ac12920b6f95222a37ecce5522c15 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0618.txt @@ -0,0 +1,2 @@ +insulator 240 399 1009 580 +insulator 37 467 262 517 diff --git a/contrib/insualtorDetection/ground-truth1/0620.txt b/contrib/insualtorDetection/ground-truth1/0620.txt new file mode 100644 index 0000000000000000000000000000000000000000..c62e449a08f6557f8ad653fa72f58cb708218e95 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0620.txt @@ -0,0 +1 @@ +insulator 83 324 959 637 diff --git a/contrib/insualtorDetection/ground-truth1/0627.txt b/contrib/insualtorDetection/ground-truth1/0627.txt new file mode 100644 index 0000000000000000000000000000000000000000..7882d256d0e214002c09aeb4bef5890ca003f60b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0627.txt @@ -0,0 +1 @@ +insulator 138 434 917 599 diff --git a/contrib/insualtorDetection/ground-truth1/0629.txt b/contrib/insualtorDetection/ground-truth1/0629.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc97179f696538abb7c8389088b729b207ebb535 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0629.txt @@ -0,0 +1 @@ +insulator 256 493 880 703 diff --git a/contrib/insualtorDetection/ground-truth1/0638.txt b/contrib/insualtorDetection/ground-truth1/0638.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bd4dfcbc26dee4850aa0dddf36e47b6ad8e6539 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0638.txt @@ -0,0 +1,2 @@ +insulator 87 440 1094 566 +insulator 549 210 915 270 diff --git a/contrib/insualtorDetection/ground-truth1/0642.txt b/contrib/insualtorDetection/ground-truth1/0642.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ef5a0d7e7790c74d49a3ae4ebb24f526a9d7b7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0642.txt @@ -0,0 +1,3 @@ +insulator 200 469 1034 1103 +insulator 263 174 857 417 +insulator 92 210 1029 794 diff --git a/contrib/insualtorDetection/ground-truth1/0648.txt b/contrib/insualtorDetection/ground-truth1/0648.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bfa226aa89b8a9d21a3ad766272359286017c9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0648.txt @@ -0,0 +1,2 @@ +insulator 320 378 1076 646 +insulator 1 68 348 142 diff --git a/contrib/insualtorDetection/ground-truth1/0662.txt b/contrib/insualtorDetection/ground-truth1/0662.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bda058dabdb68b90e408157601302ee5ea62614 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0662.txt @@ -0,0 +1,3 @@ +insulator 163 266 990 453 +insulator 314 29 545 81 +insulator 382 410 582 456 diff --git a/contrib/insualtorDetection/ground-truth1/0664.txt b/contrib/insualtorDetection/ground-truth1/0664.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6ddf3655311430efe973e521e61aab1e63bdacd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0664.txt @@ -0,0 +1,4 @@ +insulator 159 425 957 527 +insulator 599 777 830 810 +insulator 628 413 886 439 +insulator 346 358 521 416 diff --git a/contrib/insualtorDetection/ground-truth1/0676.txt b/contrib/insualtorDetection/ground-truth1/0676.txt new file mode 100644 index 0000000000000000000000000000000000000000..76ddc0295de82ccd338e97496d8a6a1109ee8b77 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0676.txt @@ -0,0 +1,2 @@ +insulator 169 369 1059 549 +insulator 235 83 584 158 diff --git a/contrib/insualtorDetection/ground-truth1/0677.txt b/contrib/insualtorDetection/ground-truth1/0677.txt new file mode 100644 index 0000000000000000000000000000000000000000..6241167f7198917778c26b6af8f77538b0fe08ef --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0677.txt @@ -0,0 +1 @@ +insulator 151 458 1012 616 diff --git a/contrib/insualtorDetection/ground-truth1/0680.txt b/contrib/insualtorDetection/ground-truth1/0680.txt new file mode 100644 index 0000000000000000000000000000000000000000..6566db3c74584b7e8c43bcd0cc0f0480d1e18eab --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0680.txt @@ -0,0 +1 @@ +insulator 108 375 905 609 diff --git a/contrib/insualtorDetection/ground-truth1/0682.txt b/contrib/insualtorDetection/ground-truth1/0682.txt new file mode 100644 index 0000000000000000000000000000000000000000..82f945c6b0df42baaa512e3eb5475fb69c54c877 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0682.txt @@ -0,0 +1,6 @@ +insulator 236 538 1270 1291 +insulator 768 460 1789 977 +insulator 881 1 2033 63 +insulator 251 575 1273 1323 +insulator 139 537 562 1145 +insulator 33 21 415 77 diff --git a/contrib/insualtorDetection/ground-truth1/0692.txt b/contrib/insualtorDetection/ground-truth1/0692.txt new file mode 100644 index 0000000000000000000000000000000000000000..7882a3a506776a655fa696c223e458aeec4d929b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0692.txt @@ -0,0 +1 @@ +insulator 144 275 987 462 diff --git a/contrib/insualtorDetection/ground-truth1/0699.txt b/contrib/insualtorDetection/ground-truth1/0699.txt new file mode 100644 index 0000000000000000000000000000000000000000..20e7343dd7666d7fff2f8f4a06bd9cf176ba982c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0699.txt @@ -0,0 +1,5 @@ +insulator 26 392 1132 903 +insulator 772 1 1924 83 +insulator 309 273 1258 947 +insulator 363 283 929 648 +insulator 354 629 907 1310 diff --git a/contrib/insualtorDetection/ground-truth1/0701.txt b/contrib/insualtorDetection/ground-truth1/0701.txt new file mode 100644 index 0000000000000000000000000000000000000000..aee88f2ebfe755531d9bf87a81297e1fc525d596 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0701.txt @@ -0,0 +1,2 @@ +insulator 158 464 998 617 +insulator 521 91 853 170 diff --git a/contrib/insualtorDetection/ground-truth1/0703.txt b/contrib/insualtorDetection/ground-truth1/0703.txt new file mode 100644 index 0000000000000000000000000000000000000000..77322b6f234de10e278819a01f1db1b8c59fecb4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0703.txt @@ -0,0 +1,2 @@ +insulator 272 431 675 508 +insulator 118 520 1060 708 diff --git a/contrib/insualtorDetection/ground-truth1/0706.txt b/contrib/insualtorDetection/ground-truth1/0706.txt new file mode 100644 index 0000000000000000000000000000000000000000..80a6800486d5fb550c733f1acfe9f9bd87fde3bc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0706.txt @@ -0,0 +1,2 @@ +insulator 155 338 1017 586 +insulator 369 60 759 158 diff --git a/contrib/insualtorDetection/ground-truth1/0709.txt b/contrib/insualtorDetection/ground-truth1/0709.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c91aef2b76677f6d5f3abcf0db92cbd7c997439 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0709.txt @@ -0,0 +1,3 @@ +insulator 180 397 1120 1006 +insulator 549 139 1350 348 +insulator 94 173 1085 720 diff --git a/contrib/insualtorDetection/ground-truth1/0713.txt b/contrib/insualtorDetection/ground-truth1/0713.txt new file mode 100644 index 0000000000000000000000000000000000000000..4aaec71eb7315284c68fba2b1f1bdf5c5e66eb59 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0713.txt @@ -0,0 +1,2 @@ +insulator 203 418 965 642 +insulator 371 429 644 517 diff --git a/contrib/insualtorDetection/ground-truth1/0718.txt b/contrib/insualtorDetection/ground-truth1/0718.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb3f7492c1d62a9eeaf609eb3c56cddad5d85391 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0718.txt @@ -0,0 +1 @@ +insulator 58 485 882 741 diff --git a/contrib/insualtorDetection/ground-truth1/0731.txt b/contrib/insualtorDetection/ground-truth1/0731.txt new file mode 100644 index 0000000000000000000000000000000000000000..87d9653573453a8a7989f73218a3f5c3ed96c6b7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0731.txt @@ -0,0 +1,5 @@ +insulator 121 513 856 640 +insulator 417 125 722 165 +insulator 437 523 665 561 +insulator 16 281 877 583 +insulator 901 70 1152 157 diff --git a/contrib/insualtorDetection/ground-truth1/0735.txt b/contrib/insualtorDetection/ground-truth1/0735.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e5f45f11fca9a58a0d53288b522f90cd6df7b25 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0735.txt @@ -0,0 +1,4 @@ +insulator 161 379 999 507 +insulator 477 374 673 412 +insulator 460 674 642 709 +insulator 468 1 696 35 diff --git a/contrib/insualtorDetection/ground-truth1/0739.txt b/contrib/insualtorDetection/ground-truth1/0739.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b08116ea04269bd1f60cc3537bed86d968d8c6a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0739.txt @@ -0,0 +1 @@ +insulator 149 338 908 415 diff --git a/contrib/insualtorDetection/ground-truth1/0740.txt b/contrib/insualtorDetection/ground-truth1/0740.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72434a48ea2bf7ed60779c7758acee51af4ce90 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0740.txt @@ -0,0 +1 @@ +insulator 160 270 926 453 diff --git a/contrib/insualtorDetection/ground-truth1/0748.txt b/contrib/insualtorDetection/ground-truth1/0748.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfb50f97928689c91128a57f6959f634707198c4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0748.txt @@ -0,0 +1,3 @@ +insulator 243 485 971 660 +insulator 395 300 737 367 +insulator 452 811 675 863 diff --git a/contrib/insualtorDetection/ground-truth1/0749.txt b/contrib/insualtorDetection/ground-truth1/0749.txt new file mode 100644 index 0000000000000000000000000000000000000000..5118205c05a788e38e9af1309703c4602fd39ca1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0749.txt @@ -0,0 +1 @@ +insulator 108 264 1152 438 diff --git a/contrib/insualtorDetection/ground-truth1/0756.txt b/contrib/insualtorDetection/ground-truth1/0756.txt new file mode 100644 index 0000000000000000000000000000000000000000..ada61d67e4dcc320b43f62801860a95289e5e520 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0756.txt @@ -0,0 +1,3 @@ +insulator 674 343 955 422 +insulator 170 422 922 683 +insulator 612 705 843 788 diff --git a/contrib/insualtorDetection/ground-truth1/0765.txt b/contrib/insualtorDetection/ground-truth1/0765.txt new file mode 100644 index 0000000000000000000000000000000000000000..35c4b753ab8c20b847bd0e4e8b8b5e292c23a607 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0765.txt @@ -0,0 +1,4 @@ +insulator 158 437 1016 678 +insulator 643 762 851 822 +insulator 678 425 917 488 +insulator 714 7 1028 84 diff --git a/contrib/insualtorDetection/ground-truth1/0777.txt b/contrib/insualtorDetection/ground-truth1/0777.txt new file mode 100644 index 0000000000000000000000000000000000000000..24372f04d7fb75de795b0a2fa76e553d62a9df52 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0777.txt @@ -0,0 +1 @@ +insulator 283 301 1003 657 diff --git a/contrib/insualtorDetection/ground-truth1/0778.txt b/contrib/insualtorDetection/ground-truth1/0778.txt new file mode 100644 index 0000000000000000000000000000000000000000..9573d88c95a4575fa55593d061c54c14d15ab064 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0778.txt @@ -0,0 +1,4 @@ +insulator 175 283 1021 829 +insulator 228 650 671 1433 +insulator 250 201 1154 692 +insulator 369 1 907 39 diff --git a/contrib/insualtorDetection/ground-truth1/0780.txt b/contrib/insualtorDetection/ground-truth1/0780.txt new file mode 100644 index 0000000000000000000000000000000000000000..af0476daffd3f1ccad9c692240f26d11bf834b95 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0780.txt @@ -0,0 +1,3 @@ +insulator 183 498 1019 690 +insulator 398 316 690 385 +insulator 446 682 723 744 diff --git a/contrib/insualtorDetection/ground-truth1/0782.txt b/contrib/insualtorDetection/ground-truth1/0782.txt new file mode 100644 index 0000000000000000000000000000000000000000..a965a69380b141ea8e2de97cfc3327004b6aa16e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0782.txt @@ -0,0 +1 @@ +insulator 32 440 1029 590 diff --git a/contrib/insualtorDetection/ground-truth1/0783.txt b/contrib/insualtorDetection/ground-truth1/0783.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d1755d971eec98316aa3c7dd5866c116cdce7ed --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0783.txt @@ -0,0 +1,3 @@ +insulator 167 362 914 461 +insulator 419 456 638 485 +insulator 356 23 614 74 diff --git a/contrib/insualtorDetection/ground-truth1/0784.txt b/contrib/insualtorDetection/ground-truth1/0784.txt new file mode 100644 index 0000000000000000000000000000000000000000..68d7f7cbd9a27d01127d99cb43972b8ed8ec1083 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0784.txt @@ -0,0 +1,4 @@ +insulator 117 437 949 692 +insulator 752 555 974 633 +insulator 845 104 1105 174 +insulator 150 441 906 566 diff --git a/contrib/insualtorDetection/ground-truth1/0785.txt b/contrib/insualtorDetection/ground-truth1/0785.txt new file mode 100644 index 0000000000000000000000000000000000000000..390caff621f37e6c5c64f2e5b9fa316783624568 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0785.txt @@ -0,0 +1,4 @@ +insulator 212 460 989 1031 +insulator 422 746 1306 1595 +insulator 496 268 1267 582 +insulator 102 538 1108 1160 diff --git a/contrib/insualtorDetection/ground-truth1/0786.txt b/contrib/insualtorDetection/ground-truth1/0786.txt new file mode 100644 index 0000000000000000000000000000000000000000..41266b5f82425084c061aeaad2482042485e005c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0786.txt @@ -0,0 +1 @@ +insulator 225 281 872 687 diff --git a/contrib/insualtorDetection/ground-truth1/0792.txt b/contrib/insualtorDetection/ground-truth1/0792.txt new file mode 100644 index 0000000000000000000000000000000000000000..7be8fb41c07ede5cd0ca04971e24c5355670e163 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0792.txt @@ -0,0 +1 @@ +insulator 82 431 865 639 diff --git a/contrib/insualtorDetection/ground-truth1/0793.txt b/contrib/insualtorDetection/ground-truth1/0793.txt new file mode 100644 index 0000000000000000000000000000000000000000..6dc7bb499238e94eeb97c95891d456f12659c42a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0793.txt @@ -0,0 +1,3 @@ +insulator 67 406 1121 499 +insulator 806 569 1099 618 +insulator 829 61 1152 114 diff --git a/contrib/insualtorDetection/ground-truth1/0798.txt b/contrib/insualtorDetection/ground-truth1/0798.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ed0f7c728a0c86f0e9dd14bf4eee1ae94233596 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0798.txt @@ -0,0 +1,3 @@ +insulator 191 287 993 457 +insulator 565 90 871 139 +insulator 535 488 789 551 diff --git a/contrib/insualtorDetection/ground-truth1/0799.txt b/contrib/insualtorDetection/ground-truth1/0799.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa30550f5b9a5bd9eeb3d79f0c9f9f4925c92d2c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0799.txt @@ -0,0 +1,2 @@ +insulator 179 469 822 615 +insulator 1 56 244 105 diff --git a/contrib/insualtorDetection/ground-truth1/0802.txt b/contrib/insualtorDetection/ground-truth1/0802.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4d4bbbceb1ca00303bffc4cd7f375c1c7a4e313 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0802.txt @@ -0,0 +1,6 @@ +insulator 118 360 1173 1224 +insulator 224 273 1529 938 +insulator 1 1 246 82 +insulator 185 488 1267 1671 +insulator 75 419 458 1323 +insulator 198 725 812 2234 diff --git a/contrib/insualtorDetection/ground-truth1/0820.txt b/contrib/insualtorDetection/ground-truth1/0820.txt new file mode 100644 index 0000000000000000000000000000000000000000..db52a05b3dee097bb3e252ea27b72674d6582bc6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0820.txt @@ -0,0 +1,2 @@ +insulator 187 608 911 697 +insulator 271 181 522 209 diff --git a/contrib/insualtorDetection/ground-truth1/0822.txt b/contrib/insualtorDetection/ground-truth1/0822.txt new file mode 100644 index 0000000000000000000000000000000000000000..07bcc249609d5da279fabdd30784db8ce72d58ad --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0822.txt @@ -0,0 +1 @@ +insulator 123 412 970 559 diff --git a/contrib/insualtorDetection/ground-truth1/0823.txt b/contrib/insualtorDetection/ground-truth1/0823.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b4049b738fe8d32d62549089a492442b2291177 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0823.txt @@ -0,0 +1,3 @@ +insulator 279 245 915 555 +insulator 1 655 515 841 +insulator 719 397 879 572 diff --git a/contrib/insualtorDetection/ground-truth1/0824.txt b/contrib/insualtorDetection/ground-truth1/0824.txt new file mode 100644 index 0000000000000000000000000000000000000000..95be3cd5085a75ddb0ff2be1faea19a468a28bc9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0824.txt @@ -0,0 +1,3 @@ +insulator 179 386 942 516 +insulator 261 700 495 728 +insulator 168 338 439 384 diff --git a/contrib/insualtorDetection/ground-truth1/0834.txt b/contrib/insualtorDetection/ground-truth1/0834.txt new file mode 100644 index 0000000000000000000000000000000000000000..44659359aaf77a52c36e1df6ad2783e4cd0c47dc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0834.txt @@ -0,0 +1,2 @@ +insulator 437 454 846 552 +insulator 494 810 616 864 diff --git a/contrib/insualtorDetection/ground-truth1/0842.txt b/contrib/insualtorDetection/ground-truth1/0842.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d93bf7228736aadb3e6dcd113fe50af11c2799e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0842.txt @@ -0,0 +1,2 @@ +insulator 42 400 993 501 +insulator 571 148 902 173 diff --git a/contrib/insualtorDetection/ground-truth1/0844.txt b/contrib/insualtorDetection/ground-truth1/0844.txt new file mode 100644 index 0000000000000000000000000000000000000000..6adc0b1ca3a043382ac63fb6cf53cdc5e35c8385 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0844.txt @@ -0,0 +1 @@ +insulator 158 261 993 396 diff --git a/contrib/insualtorDetection/ground-truth1/0846.txt b/contrib/insualtorDetection/ground-truth1/0846.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d7542eb0d11076865bd1925211d5c4435af04c2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0846.txt @@ -0,0 +1,2 @@ +insulator 132 354 974 595 +insulator 554 54 866 122 diff --git a/contrib/insualtorDetection/ground-truth1/0849.txt b/contrib/insualtorDetection/ground-truth1/0849.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a2abc9426f672fb5b2ef976690b92c05cb1919e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0849.txt @@ -0,0 +1 @@ +insulator 1 452 1152 706 diff --git a/contrib/insualtorDetection/ground-truth1/0850.txt b/contrib/insualtorDetection/ground-truth1/0850.txt new file mode 100644 index 0000000000000000000000000000000000000000..744667ae222df38c5f5817613cf5c1c82c625b54 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0850.txt @@ -0,0 +1,2 @@ +insulator 1 112 1152 523 +insulator 405 610 885 770 diff --git a/contrib/insualtorDetection/ground-truth1/0851.txt b/contrib/insualtorDetection/ground-truth1/0851.txt new file mode 100644 index 0000000000000000000000000000000000000000..88d9c057895b316afa1fa211ecc17258920a590c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0851.txt @@ -0,0 +1,3 @@ +insulator 138 1 966 488 +insulator 187 488 927 600 +insulator 899 660 996 863 diff --git a/contrib/insualtorDetection/ground-truth1/0852.txt b/contrib/insualtorDetection/ground-truth1/0852.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefbcf136c80f86a4b0d73d4795ceb9c500848cd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0852.txt @@ -0,0 +1 @@ +insulator 182 378 942 551 diff --git a/contrib/insualtorDetection/ground-truth1/0856.txt b/contrib/insualtorDetection/ground-truth1/0856.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7c0a38a0563809c63b4cd7463915a48e57aeb80 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0856.txt @@ -0,0 +1,2 @@ +insulator 216 410 994 531 +insulator 581 374 828 410 diff --git a/contrib/insualtorDetection/ground-truth1/0863.txt b/contrib/insualtorDetection/ground-truth1/0863.txt new file mode 100644 index 0000000000000000000000000000000000000000..576aaacfc28c0516daaca9f4088648931cdd7271 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0863.txt @@ -0,0 +1,3 @@ +insulator 87 425 945 576 +insulator 533 434 735 481 +insulator 510 55 731 108 diff --git a/contrib/insualtorDetection/ground-truth1/0864.txt b/contrib/insualtorDetection/ground-truth1/0864.txt new file mode 100644 index 0000000000000000000000000000000000000000..f646edf980c7efe5cd97b12ecb3431299a8abae9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0864.txt @@ -0,0 +1,2 @@ +insulator 309 374 964 528 +insulator 894 572 1044 788 diff --git a/contrib/insualtorDetection/ground-truth1/0868.txt b/contrib/insualtorDetection/ground-truth1/0868.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c6ebde26e7e8dfc7ed657a24378123025b299cb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0868.txt @@ -0,0 +1 @@ +insulator 116 356 944 485 diff --git a/contrib/insualtorDetection/ground-truth1/0869.txt b/contrib/insualtorDetection/ground-truth1/0869.txt new file mode 100644 index 0000000000000000000000000000000000000000..da3d321f861d8745f8c424f2cbc6d377a24c6ecc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0869.txt @@ -0,0 +1 @@ +insulator 188 404 963 621 diff --git a/contrib/insualtorDetection/ground-truth1/0874.txt b/contrib/insualtorDetection/ground-truth1/0874.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b88fae415ffd3de81e49d3841c61645b86b0671 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0874.txt @@ -0,0 +1,2 @@ +insulator 101 330 928 497 +insulator 494 203 818 273 diff --git a/contrib/insualtorDetection/ground-truth1/0878.txt b/contrib/insualtorDetection/ground-truth1/0878.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2431f427161b070fe7d3a823843ac47e862d2df --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0878.txt @@ -0,0 +1,4 @@ +insulator 195 493 1165 1095 +insulator 327 155 873 348 +insulator 259 459 1222 1140 +insulator 219 345 1221 962 diff --git a/contrib/insualtorDetection/ground-truth1/0879.txt b/contrib/insualtorDetection/ground-truth1/0879.txt new file mode 100644 index 0000000000000000000000000000000000000000..da4463fcf756d0c3a92ddb7d57fef26698b0b449 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0879.txt @@ -0,0 +1,2 @@ +insulator 176 418 872 760 +insulator 328 154 883 581 diff --git a/contrib/insualtorDetection/ground-truth1/0883.txt b/contrib/insualtorDetection/ground-truth1/0883.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbccec0ea2eb2c05d782c454934519b34bbc5411 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0883.txt @@ -0,0 +1,2 @@ +insulator 139 472 945 567 +insulator 527 206 768 240 diff --git a/contrib/insualtorDetection/ground-truth1/0890.txt b/contrib/insualtorDetection/ground-truth1/0890.txt new file mode 100644 index 0000000000000000000000000000000000000000..18f87c00585497d5f04afb2f4d24fa24f8f94fdc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0890.txt @@ -0,0 +1,3 @@ +insulator 188 438 1059 1047 +insulator 329 550 1101 1226 +insulator 132 389 1095 924 diff --git a/contrib/insualtorDetection/ground-truth1/0895.txt b/contrib/insualtorDetection/ground-truth1/0895.txt new file mode 100644 index 0000000000000000000000000000000000000000..47cfd3618c6358b1051f426accba91e3bb3ebc1c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0895.txt @@ -0,0 +1,4 @@ +insulator 177 440 1000 662 +insulator 898 432 1144 500 +insulator 918 1 1152 50 +insulator 861 774 1077 847 diff --git a/contrib/insualtorDetection/ground-truth1/0902.txt b/contrib/insualtorDetection/ground-truth1/0902.txt new file mode 100644 index 0000000000000000000000000000000000000000..d13c24c248d63b2895a54fd547d9f1c36d8f1107 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0902.txt @@ -0,0 +1,2 @@ +insulator 187 445 1044 546 +insulator 561 79 874 123 diff --git a/contrib/insualtorDetection/ground-truth1/0903.txt b/contrib/insualtorDetection/ground-truth1/0903.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0bd68ff2ddede82d89d8f1dc0c20b5703809a11 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0903.txt @@ -0,0 +1,5 @@ +insulator 51 352 127 688 +insulator 515 213 616 763 +insulator 884 384 939 710 +insulator 850 1 933 224 +insulator 103 1 207 198 diff --git a/contrib/insualtorDetection/ground-truth1/0907.txt b/contrib/insualtorDetection/ground-truth1/0907.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa1183951b367bd798cb4300fba1f1d7e54e84ed --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0907.txt @@ -0,0 +1,3 @@ +insulator 178 386 1078 886 +insulator 175 223 557 486 +insulator 149 365 1221 871 diff --git a/contrib/insualtorDetection/ground-truth1/0908.txt b/contrib/insualtorDetection/ground-truth1/0908.txt new file mode 100644 index 0000000000000000000000000000000000000000..9407470791eeb41399dda24dec99652b8374d4d0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0908.txt @@ -0,0 +1,2 @@ +insulator 187 457 942 649 +insulator 97 518 416 608 diff --git a/contrib/insualtorDetection/ground-truth1/0913.txt b/contrib/insualtorDetection/ground-truth1/0913.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ce12693ee190f754cf7b8170dcc710ffeca45e2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0913.txt @@ -0,0 +1 @@ +insulator 115 395 916 538 diff --git a/contrib/insualtorDetection/ground-truth1/0923.txt b/contrib/insualtorDetection/ground-truth1/0923.txt new file mode 100644 index 0000000000000000000000000000000000000000..1edf53fb5e79ab772a14e029d211c4676b899334 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0923.txt @@ -0,0 +1 @@ +insulator 106 368 837 500 diff --git a/contrib/insualtorDetection/ground-truth1/0924.txt b/contrib/insualtorDetection/ground-truth1/0924.txt new file mode 100644 index 0000000000000000000000000000000000000000..c523d2c1be71ecf980f40e7fd846b4e7e391a35c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0924.txt @@ -0,0 +1,5 @@ +insulator 127 266 1147 776 +insulator 839 335 1951 746 +insulator 737 695 1694 1455 +insulator 140 438 1010 1033 +insulator 488 706 1553 1544 diff --git a/contrib/insualtorDetection/ground-truth1/0926.txt b/contrib/insualtorDetection/ground-truth1/0926.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd203de14fbdbbcd2a21952f44aa2d30c660894f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0926.txt @@ -0,0 +1,2 @@ +insulator 151 227 981 366 +insulator 257 225 540 270 diff --git a/contrib/insualtorDetection/ground-truth1/0932.txt b/contrib/insualtorDetection/ground-truth1/0932.txt new file mode 100644 index 0000000000000000000000000000000000000000..05bdfc5b834b40512b7319170bd534fa5619fa9f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0932.txt @@ -0,0 +1,2 @@ +insulator 356 300 929 498 +insulator 40 346 868 530 diff --git a/contrib/insualtorDetection/ground-truth1/0933.txt b/contrib/insualtorDetection/ground-truth1/0933.txt new file mode 100644 index 0000000000000000000000000000000000000000..29aa708e0b0b7979bc937d1d3f4f88d62c242efb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0933.txt @@ -0,0 +1,2 @@ +insulator 151 409 935 606 +insulator 268 519 744 612 diff --git a/contrib/insualtorDetection/ground-truth1/0942.txt b/contrib/insualtorDetection/ground-truth1/0942.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d44835d7217a9c67550a525e4e148fb039dae5f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0942.txt @@ -0,0 +1,2 @@ +insulator 124 434 917 603 +insulator 251 148 547 209 diff --git a/contrib/insualtorDetection/ground-truth1/0943.txt b/contrib/insualtorDetection/ground-truth1/0943.txt new file mode 100644 index 0000000000000000000000000000000000000000..19d80d656d6fece44901655f3975de92454687dc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0943.txt @@ -0,0 +1,2 @@ +insulator 156 281 1032 548 +insulator 217 607 773 777 diff --git a/contrib/insualtorDetection/ground-truth1/0950.txt b/contrib/insualtorDetection/ground-truth1/0950.txt new file mode 100644 index 0000000000000000000000000000000000000000..8190f70d01556de41d8c170854a2d5460773fc3e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0950.txt @@ -0,0 +1,3 @@ +insulator 374 539 859 658 +insulator 326 305 564 330 +insulator 284 1 630 60 diff --git a/contrib/insualtorDetection/ground-truth1/0951.txt b/contrib/insualtorDetection/ground-truth1/0951.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa101f8b0c129eb384e1f77cc6ad5df45df5c8b9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0951.txt @@ -0,0 +1,2 @@ +insulator 201 505 994 684 +insulator 217 183 475 229 diff --git a/contrib/insualtorDetection/ground-truth1/0953.txt b/contrib/insualtorDetection/ground-truth1/0953.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4dcd0e983d30c389aaee0440fc52b47edf0fd18 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0953.txt @@ -0,0 +1,2 @@ +insulator 253 338 780 481 +insulator 1 34 246 69 diff --git a/contrib/insualtorDetection/ground-truth1/0972.txt b/contrib/insualtorDetection/ground-truth1/0972.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c8fa753e7e8a9cb132fda90bf9097ce5b02aa58 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0972.txt @@ -0,0 +1,2 @@ +insulator 149 338 999 469 +insulator 643 1 905 40 diff --git a/contrib/insualtorDetection/ground-truth1/0976.txt b/contrib/insualtorDetection/ground-truth1/0976.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a134d5afabb7a66c6d7b2934b45e61e61ea6f79 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0976.txt @@ -0,0 +1,2 @@ +insulator 396 400 942 528 +insulator 153 426 1064 630 diff --git a/contrib/insualtorDetection/ground-truth1/0977.txt b/contrib/insualtorDetection/ground-truth1/0977.txt new file mode 100644 index 0000000000000000000000000000000000000000..abf49a2e592bfadfd9c87b01813e266f7eae3a23 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0977.txt @@ -0,0 +1 @@ +insulator 150 465 944 629 diff --git a/contrib/insualtorDetection/ground-truth1/0979.txt b/contrib/insualtorDetection/ground-truth1/0979.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4ba09de7249a1a1694c0af79f1194f3f4458ab5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/0979.txt @@ -0,0 +1,2 @@ +insulator 176 466 989 676 +insulator 732 341 939 391 diff --git a/contrib/insualtorDetection/ground-truth1/1000.txt b/contrib/insualtorDetection/ground-truth1/1000.txt new file mode 100644 index 0000000000000000000000000000000000000000..03abfeadc62c2939e6d7e4d1ed365ca0bc5136d8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1000.txt @@ -0,0 +1,3 @@ +insulator 122 424 1008 594 +insulator 243 1 560 53 +insulator 134 559 883 646 diff --git a/contrib/insualtorDetection/ground-truth1/1003.txt b/contrib/insualtorDetection/ground-truth1/1003.txt new file mode 100644 index 0000000000000000000000000000000000000000..04a4f536b76cd003466984e6e1caaf2df081ee86 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1003.txt @@ -0,0 +1,4 @@ +insulator 177 562 1147 1196 +insulator 158 211 759 486 +insulator 181 477 1168 1245 +insulator 679 103 1672 293 diff --git a/contrib/insualtorDetection/ground-truth1/1010.txt b/contrib/insualtorDetection/ground-truth1/1010.txt new file mode 100644 index 0000000000000000000000000000000000000000..37cd95ab1a5e0e561cefcb0aa0eb20497a09735c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1010.txt @@ -0,0 +1 @@ +insulator 147 442 920 533 diff --git a/contrib/insualtorDetection/ground-truth1/1015.txt b/contrib/insualtorDetection/ground-truth1/1015.txt new file mode 100644 index 0000000000000000000000000000000000000000..39c3c829a246e567ab1e576435a6612e521c9318 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1015.txt @@ -0,0 +1 @@ +insulator 15 241 870 337 diff --git a/contrib/insualtorDetection/ground-truth1/1018.txt b/contrib/insualtorDetection/ground-truth1/1018.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddd20172787f09540c024929b56291a437aa7f41 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1018.txt @@ -0,0 +1,5 @@ +insulator 162 100 581 193 +insulator 134 337 889 484 +insulator 244 512 989 628 +insulator 262 231 601 293 +insulator 329 607 596 644 diff --git a/contrib/insualtorDetection/ground-truth1/1023.txt b/contrib/insualtorDetection/ground-truth1/1023.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d364853de6b5131f59523b7405f0ef6131f636c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1023.txt @@ -0,0 +1 @@ +insulator 544 517 1001 717 diff --git a/contrib/insualtorDetection/ground-truth1/1033.txt b/contrib/insualtorDetection/ground-truth1/1033.txt new file mode 100644 index 0000000000000000000000000000000000000000..9825b3e92338356b13d575885d7f7344d8475c35 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1033.txt @@ -0,0 +1,2 @@ +insulator 153 331 1129 495 +insulator 283 666 944 801 diff --git a/contrib/insualtorDetection/ground-truth1/1041.txt b/contrib/insualtorDetection/ground-truth1/1041.txt new file mode 100644 index 0000000000000000000000000000000000000000..177efb5f23f61320560b6d09852bb8c26b1b289e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1041.txt @@ -0,0 +1,3 @@ +insulator 158 447 922 566 +insulator 443 745 936 814 +insulator 1 571 202 729 diff --git a/contrib/insualtorDetection/ground-truth1/1045.txt b/contrib/insualtorDetection/ground-truth1/1045.txt new file mode 100644 index 0000000000000000000000000000000000000000..204ffe865c2da5b4c1784557cce8899ef1665630 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1045.txt @@ -0,0 +1 @@ +insulator 72 288 930 650 diff --git a/contrib/insualtorDetection/ground-truth1/1052.txt b/contrib/insualtorDetection/ground-truth1/1052.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e1fdcd71446bad883f279be384c57f942c201b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1052.txt @@ -0,0 +1,3 @@ +insulator 201 480 824 609 +insulator 161 460 961 687 +insulator 702 260 917 315 diff --git a/contrib/insualtorDetection/ground-truth1/1055.txt b/contrib/insualtorDetection/ground-truth1/1055.txt new file mode 100644 index 0000000000000000000000000000000000000000..095902ba89767aa4ed417f47e0e52d331c21fd55 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1055.txt @@ -0,0 +1,2 @@ +insulator 149 433 857 559 +insulator 621 103 890 148 diff --git a/contrib/insualtorDetection/ground-truth1/1056.txt b/contrib/insualtorDetection/ground-truth1/1056.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3eafe72d8f681797bc4e3badd30a0950071175c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1056.txt @@ -0,0 +1,4 @@ +insulator 131 333 1019 816 +insulator 374 542 1282 1223 +insulator 624 235 1576 558 +insulator 234 420 1311 1045 diff --git a/contrib/insualtorDetection/ground-truth1/1058.txt b/contrib/insualtorDetection/ground-truth1/1058.txt new file mode 100644 index 0000000000000000000000000000000000000000..375a9eb6fdb9de354b01d9b58f7802f00c32529b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1058.txt @@ -0,0 +1,6 @@ +insulator 199 451 1002 559 +insulator 503 303 699 337 +insulator 530 592 701 623 +insulator 237 519 768 605 +insulator 331 817 678 862 +insulator 909 789 1152 842 diff --git a/contrib/insualtorDetection/ground-truth1/1063.txt b/contrib/insualtorDetection/ground-truth1/1063.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c576b003fe90b1edd31be674473e0ea960f9502 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1063.txt @@ -0,0 +1 @@ +insulator 286 179 1089 424 diff --git a/contrib/insualtorDetection/ground-truth1/1070.txt b/contrib/insualtorDetection/ground-truth1/1070.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b7d73085a0aab5d7c88a7d7ced69147fa549e2b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1070.txt @@ -0,0 +1,3 @@ +insulator 251 516 865 581 +insulator 45 464 967 714 +insulator 710 16 1112 133 diff --git a/contrib/insualtorDetection/ground-truth1/1072.txt b/contrib/insualtorDetection/ground-truth1/1072.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c053b2b11dc7922297ca37757e47ee5bae0da7c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1072.txt @@ -0,0 +1,3 @@ +insulator 129 510 858 784 +insulator 165 297 1036 397 +insulator 675 47 947 85 diff --git a/contrib/insualtorDetection/ground-truth1/1074.txt b/contrib/insualtorDetection/ground-truth1/1074.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb0c8f38e7bbac7b4b896f699cfebda2bb70183 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1074.txt @@ -0,0 +1 @@ +insulator 180 338 948 626 diff --git a/contrib/insualtorDetection/ground-truth1/1075.txt b/contrib/insualtorDetection/ground-truth1/1075.txt new file mode 100644 index 0000000000000000000000000000000000000000..897b994cfef9b2ecad0423d6581f2bc9e12ad6be --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1075.txt @@ -0,0 +1,3 @@ +insulator 207 476 994 551 +insulator 182 454 985 601 +insulator 947 1 1152 33 diff --git a/contrib/insualtorDetection/ground-truth1/1077.txt b/contrib/insualtorDetection/ground-truth1/1077.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f28288dcef657e6c5214e699e917275d1ce91a4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1077.txt @@ -0,0 +1,2 @@ +insulator 214 288 879 518 +insulator 528 490 1001 677 diff --git a/contrib/insualtorDetection/ground-truth1/1080.txt b/contrib/insualtorDetection/ground-truth1/1080.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c21d967ca7f46d62280eae49633d76ec5d50dc0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1080.txt @@ -0,0 +1,2 @@ +insulator 182 387 967 558 +insulator 331 53 828 148 diff --git a/contrib/insualtorDetection/ground-truth1/1087.txt b/contrib/insualtorDetection/ground-truth1/1087.txt new file mode 100644 index 0000000000000000000000000000000000000000..11f39e4caaae9f83937fb21fb1e2f80a5bd1e121 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1087.txt @@ -0,0 +1,2 @@ +insulator 216 246 1001 417 +insulator 164 27 440 70 diff --git a/contrib/insualtorDetection/ground-truth1/1100.txt b/contrib/insualtorDetection/ground-truth1/1100.txt new file mode 100644 index 0000000000000000000000000000000000000000..531882bbaaa25d1b4d7796cfd2e698897a7e66f5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1100.txt @@ -0,0 +1 @@ +insulator 395 542 937 687 diff --git a/contrib/insualtorDetection/ground-truth1/1102.txt b/contrib/insualtorDetection/ground-truth1/1102.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d05393cca669685f06b5587667c69fe1fa796fd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1102.txt @@ -0,0 +1 @@ +insulator 192 470 922 659 diff --git a/contrib/insualtorDetection/ground-truth1/1104.txt b/contrib/insualtorDetection/ground-truth1/1104.txt new file mode 100644 index 0000000000000000000000000000000000000000..4693ae2cbf87ac12868f392f898f49a4b5aaff29 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1104.txt @@ -0,0 +1,4 @@ +insulator 354 402 661 483 +insulator 236 464 1033 677 +insulator 88 256 1152 511 +insulator 269 443 786 506 diff --git a/contrib/insualtorDetection/ground-truth1/1106.txt b/contrib/insualtorDetection/ground-truth1/1106.txt new file mode 100644 index 0000000000000000000000000000000000000000..03e7c14d43988eb5a4355b0a2a8be2a7c8533990 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1106.txt @@ -0,0 +1,2 @@ +insulator 146 408 1058 514 +insulator 123 232 422 268 diff --git a/contrib/insualtorDetection/ground-truth1/1119.txt b/contrib/insualtorDetection/ground-truth1/1119.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd1868bdf5857a3ce7d34bb1642c8e30313882db --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1119.txt @@ -0,0 +1 @@ +insulator 215 223 926 488 diff --git a/contrib/insualtorDetection/ground-truth1/1123.txt b/contrib/insualtorDetection/ground-truth1/1123.txt new file mode 100644 index 0000000000000000000000000000000000000000..c53417fde37dfeace7c55327d373a252132c3aaf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1123.txt @@ -0,0 +1,2 @@ +insulator 147 479 1062 638 +insulator 295 20 617 90 diff --git a/contrib/insualtorDetection/ground-truth1/1127.txt b/contrib/insualtorDetection/ground-truth1/1127.txt new file mode 100644 index 0000000000000000000000000000000000000000..a58bccf5f0142a0651b57f70db28c0e674051db9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1127.txt @@ -0,0 +1,2 @@ +insulator 190 322 835 691 +insulator 323 274 565 324 diff --git a/contrib/insualtorDetection/ground-truth1/1128.txt b/contrib/insualtorDetection/ground-truth1/1128.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1fa68e23cf2e895bcbc8d587590933cec116dbb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1128.txt @@ -0,0 +1,2 @@ +insulator 265 493 995 588 +insulator 401 2 632 38 diff --git a/contrib/insualtorDetection/ground-truth1/1142.txt b/contrib/insualtorDetection/ground-truth1/1142.txt new file mode 100644 index 0000000000000000000000000000000000000000..58c44323c408a8e2780aff8e66d73feabdc52645 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1142.txt @@ -0,0 +1,2 @@ +insulator 130 431 1052 544 +insulator 334 108 590 149 diff --git a/contrib/insualtorDetection/ground-truth1/1143.txt b/contrib/insualtorDetection/ground-truth1/1143.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2b7db3bfd5d97af3ea2d263ce2cb9eadb379ff3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1143.txt @@ -0,0 +1,2 @@ +insulator 101 282 965 833 +insulator 166 323 964 785 diff --git a/contrib/insualtorDetection/ground-truth1/1145.txt b/contrib/insualtorDetection/ground-truth1/1145.txt new file mode 100644 index 0000000000000000000000000000000000000000..6671b3ee062b9832f4e9ef6cbbe8a26a704cb13b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1145.txt @@ -0,0 +1,3 @@ +insulator 101 212 916 853 +insulator 164 427 1008 1004 +insulator 932 57 2037 333 diff --git a/contrib/insualtorDetection/ground-truth1/1148.txt b/contrib/insualtorDetection/ground-truth1/1148.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f571964a2a7e402de543650a33469706dc061bd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1148.txt @@ -0,0 +1,2 @@ +insulator 79 374 1009 541 +insulator 221 236 954 524 diff --git a/contrib/insualtorDetection/ground-truth1/1170.txt b/contrib/insualtorDetection/ground-truth1/1170.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf90f166520c6ef161a162f526a225e8a68813b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1170.txt @@ -0,0 +1,4 @@ +insulator 146 511 928 614 +insulator 350 1 729 46 +insulator 165 344 979 447 +insulator 343 176 599 203 diff --git a/contrib/insualtorDetection/ground-truth1/1181.txt b/contrib/insualtorDetection/ground-truth1/1181.txt new file mode 100644 index 0000000000000000000000000000000000000000..61876fa95d0fc0205ba75825027b539a5410117c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1181.txt @@ -0,0 +1,2 @@ +insulator 141 596 769 671 +insulator 160 455 415 486 diff --git a/contrib/insualtorDetection/ground-truth1/1189.txt b/contrib/insualtorDetection/ground-truth1/1189.txt new file mode 100644 index 0000000000000000000000000000000000000000..5117b82141f5e60a70b5a8101a74f51627fcfcba --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1189.txt @@ -0,0 +1 @@ +insulator 146 410 962 594 diff --git a/contrib/insualtorDetection/ground-truth1/1191.txt b/contrib/insualtorDetection/ground-truth1/1191.txt new file mode 100644 index 0000000000000000000000000000000000000000..4573f11b8ff5739c6e51c23ffd0dc7fffecf1ed2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1191.txt @@ -0,0 +1 @@ +insulator 204 588 653 708 diff --git a/contrib/insualtorDetection/ground-truth1/1192.txt b/contrib/insualtorDetection/ground-truth1/1192.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7b12e04e3d51a70eb44cd331cdc781bb411917b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1192.txt @@ -0,0 +1 @@ +insulator 196 397 967 489 diff --git a/contrib/insualtorDetection/ground-truth1/1196.txt b/contrib/insualtorDetection/ground-truth1/1196.txt new file mode 100644 index 0000000000000000000000000000000000000000..24976bc18ed8ab46af06949feb5b30fa857b18a0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1196.txt @@ -0,0 +1 @@ +insulator 72 202 933 375 diff --git a/contrib/insualtorDetection/ground-truth1/1211.txt b/contrib/insualtorDetection/ground-truth1/1211.txt new file mode 100644 index 0000000000000000000000000000000000000000..27975350251dc72015010f70beaf9384109fa4fc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1211.txt @@ -0,0 +1,4 @@ +insulator 176 341 905 652 +insulator 173 433 986 538 +insulator 226 447 966 647 +insulator 447 312 694 376 diff --git a/contrib/insualtorDetection/ground-truth1/1213.txt b/contrib/insualtorDetection/ground-truth1/1213.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe440229d423bc591337169664a899a0d5c3c81 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1213.txt @@ -0,0 +1 @@ +insulator 68 491 1011 671 diff --git a/contrib/insualtorDetection/ground-truth1/1214.txt b/contrib/insualtorDetection/ground-truth1/1214.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7d3d2395e17ac4ee8e30fe598bc76e70655932c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1214.txt @@ -0,0 +1 @@ +insulator 167 252 922 385 diff --git a/contrib/insualtorDetection/ground-truth1/1233.txt b/contrib/insualtorDetection/ground-truth1/1233.txt new file mode 100644 index 0000000000000000000000000000000000000000..a781b052aa007d05b829cbce6e12678e79164c28 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1233.txt @@ -0,0 +1 @@ +insulator 203 367 953 619 diff --git a/contrib/insualtorDetection/ground-truth1/1238.txt b/contrib/insualtorDetection/ground-truth1/1238.txt new file mode 100644 index 0000000000000000000000000000000000000000..c46e5926f425043fd02973a382707980e4467dbc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1238.txt @@ -0,0 +1 @@ +insulator 238 489 1152 614 diff --git a/contrib/insualtorDetection/ground-truth1/1247.txt b/contrib/insualtorDetection/ground-truth1/1247.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b531347da27c6b8d22777307d465bf70a893e73 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1247.txt @@ -0,0 +1,2 @@ +insulator 312 571 865 660 +insulator 688 325 923 369 diff --git a/contrib/insualtorDetection/ground-truth1/1262.txt b/contrib/insualtorDetection/ground-truth1/1262.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04fb67aef93766664ac81c6c93b1f6c4f654730 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1262.txt @@ -0,0 +1,2 @@ +insulator 165 393 964 545 +insulator 201 22 498 76 diff --git a/contrib/insualtorDetection/ground-truth1/1268.txt b/contrib/insualtorDetection/ground-truth1/1268.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cb58bce74a51fa7abe890e3b3d033da42b9d39f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1268.txt @@ -0,0 +1,2 @@ +insulator 82 548 1049 644 +insulator 749 293 1152 336 diff --git a/contrib/insualtorDetection/ground-truth1/1271.txt b/contrib/insualtorDetection/ground-truth1/1271.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6593204de00120c7dd7478a3f4644bf184d01db --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1271.txt @@ -0,0 +1,2 @@ +insulator 133 584 994 710 +insulator 463 459 767 510 diff --git a/contrib/insualtorDetection/ground-truth1/1281.txt b/contrib/insualtorDetection/ground-truth1/1281.txt new file mode 100644 index 0000000000000000000000000000000000000000..c948dada097e4f3eb73ef15d5c881404564fa34b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1281.txt @@ -0,0 +1,2 @@ +insulator 179 403 1129 590 +insulator 460 243 723 300 diff --git a/contrib/insualtorDetection/ground-truth1/1292.txt b/contrib/insualtorDetection/ground-truth1/1292.txt new file mode 100644 index 0000000000000000000000000000000000000000..7da676a4bd933913ad8b9e9aa3b2f5eb6056d99a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1292.txt @@ -0,0 +1,3 @@ +insulator 130 254 1139 640 +insulator 227 331 1154 1028 +insulator 644 213 1575 573 diff --git a/contrib/insualtorDetection/ground-truth1/1302.txt b/contrib/insualtorDetection/ground-truth1/1302.txt new file mode 100644 index 0000000000000000000000000000000000000000..a381a8c769bca5b9f4336546bd7f8a15a1b61f8b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1302.txt @@ -0,0 +1 @@ +insulator 208 371 940 509 diff --git a/contrib/insualtorDetection/ground-truth1/1303.txt b/contrib/insualtorDetection/ground-truth1/1303.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e91dd0006b030ab6ca1c94b69f48395b11bf4b3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1303.txt @@ -0,0 +1,2 @@ +insulator 763 368 1052 404 +insulator 158 524 979 645 diff --git a/contrib/insualtorDetection/ground-truth1/1345.txt b/contrib/insualtorDetection/ground-truth1/1345.txt new file mode 100644 index 0000000000000000000000000000000000000000..826955a31226b45e98852020931466d3ef912592 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1345.txt @@ -0,0 +1,4 @@ +insulator 203 323 1237 790 +insulator 759 195 1763 434 +insulator 129 403 1056 931 +insulator 291 30 857 109 diff --git a/contrib/insualtorDetection/ground-truth1/1347.txt b/contrib/insualtorDetection/ground-truth1/1347.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b96e7667096770b6b050f832a06a945c4ceba57 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1347.txt @@ -0,0 +1,2 @@ +insulator 193 360 975 531 +insulator 698 315 907 365 diff --git a/contrib/insualtorDetection/ground-truth1/1361.txt b/contrib/insualtorDetection/ground-truth1/1361.txt new file mode 100644 index 0000000000000000000000000000000000000000..9737dd10ac71aef99a059cce6d4e7bdd194b69a3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1361.txt @@ -0,0 +1,2 @@ +insulator 208 355 772 488 +insulator 178 115 526 195 diff --git a/contrib/insualtorDetection/ground-truth1/1364.txt b/contrib/insualtorDetection/ground-truth1/1364.txt new file mode 100644 index 0000000000000000000000000000000000000000..87c025c5f5fef6437725538138b9e122e38a656d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1364.txt @@ -0,0 +1,2 @@ +insulator 88 458 1077 697 +insulator 35 365 827 574 diff --git a/contrib/insualtorDetection/ground-truth1/1366.txt b/contrib/insualtorDetection/ground-truth1/1366.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca5017f94de55f942d08ddfca4b46e4d5a73e801 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1366.txt @@ -0,0 +1,3 @@ +insulator 204 453 1055 678 +insulator 562 258 795 305 +insulator 1 433 907 517 diff --git a/contrib/insualtorDetection/ground-truth1/1367.txt b/contrib/insualtorDetection/ground-truth1/1367.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6f4b03ece13428abe2bdea30a18a5e1edacf42d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1367.txt @@ -0,0 +1,2 @@ +insulator 89 158 1196 647 +insulator 36 203 1159 785 diff --git a/contrib/insualtorDetection/ground-truth1/1374.txt b/contrib/insualtorDetection/ground-truth1/1374.txt new file mode 100644 index 0000000000000000000000000000000000000000..b57d3599de359b570bea297f9afa5ec00460e3f9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1374.txt @@ -0,0 +1 @@ +insulator 172 233 1080 597 diff --git a/contrib/insualtorDetection/ground-truth1/1378.txt b/contrib/insualtorDetection/ground-truth1/1378.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83d15787f6d85ba885d02df9cc1b4db3ce2a415 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1378.txt @@ -0,0 +1,3 @@ +insulator 76 364 944 503 +insulator 196 503 1013 595 +insulator 157 95 517 153 diff --git a/contrib/insualtorDetection/ground-truth1/1379.txt b/contrib/insualtorDetection/ground-truth1/1379.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c1b660860c0e535478e0fb2a2e504bce0d42750 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1379.txt @@ -0,0 +1,3 @@ +insulator 165 403 850 509 +insulator 111 287 937 457 +insulator 341 1 636 59 diff --git a/contrib/insualtorDetection/ground-truth1/1380.txt b/contrib/insualtorDetection/ground-truth1/1380.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89888824c0858326fd0f9606d67e15948bf50b7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1380.txt @@ -0,0 +1,3 @@ +insulator 217 426 874 545 +insulator 345 794 784 864 +insulator 54 436 922 598 diff --git a/contrib/insualtorDetection/ground-truth1/1385.txt b/contrib/insualtorDetection/ground-truth1/1385.txt new file mode 100644 index 0000000000000000000000000000000000000000..f290b15489b9aa2e19a3635307e01a5da4e58ac8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1385.txt @@ -0,0 +1 @@ +insulator 139 367 822 466 diff --git a/contrib/insualtorDetection/ground-truth1/1388.txt b/contrib/insualtorDetection/ground-truth1/1388.txt new file mode 100644 index 0000000000000000000000000000000000000000..066928386942ce2dd2c8089d04042559961a9f15 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1388.txt @@ -0,0 +1,2 @@ +insulator 261 352 922 485 +insulator 182 344 887 542 diff --git a/contrib/insualtorDetection/ground-truth1/1400.txt b/contrib/insualtorDetection/ground-truth1/1400.txt new file mode 100644 index 0000000000000000000000000000000000000000..80f814ada90f70b74f2649f11e902a8c296fd70c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1400.txt @@ -0,0 +1,4 @@ +insulator 143 239 857 888 +insulator 177 192 572 515 +insulator 179 431 1140 967 +insulator 498 53 1331 161 diff --git a/contrib/insualtorDetection/ground-truth1/1401.txt b/contrib/insualtorDetection/ground-truth1/1401.txt new file mode 100644 index 0000000000000000000000000000000000000000..81b11d66584444dfccf94f6db82f6e59450ce6fb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1401.txt @@ -0,0 +1,7 @@ +insulator 94 343 853 505 +insulator 597 1 923 92 +insulator 52 415 791 555 +insulator 55 405 1056 525 +insulator 320 734 572 767 +insulator 254 389 537 437 +insulator 297 1 522 43 diff --git a/contrib/insualtorDetection/ground-truth1/1404.txt b/contrib/insualtorDetection/ground-truth1/1404.txt new file mode 100644 index 0000000000000000000000000000000000000000..b26b09c1f99d6db8e7c6af370e1f002c321d2def --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1404.txt @@ -0,0 +1 @@ +insulator 58 218 1086 504 diff --git a/contrib/insualtorDetection/ground-truth1/1408.txt b/contrib/insualtorDetection/ground-truth1/1408.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8f59dfc02efe9819e8b7febfb05553681841ce8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1408.txt @@ -0,0 +1 @@ +insulator 286 262 1044 591 diff --git a/contrib/insualtorDetection/ground-truth1/1414.txt b/contrib/insualtorDetection/ground-truth1/1414.txt new file mode 100644 index 0000000000000000000000000000000000000000..0708d8322203278a4b13d38afa8ab21dc17bb432 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1414.txt @@ -0,0 +1,8 @@ +insulator 235 303 1042 688 +insulator 362 549 552 648 +insulator 283 271 512 375 +insulator 222 316 886 430 +insulator 342 11 574 48 +insulator 227 472 1137 661 +insulator 204 636 397 673 +insulator 106 170 319 214 diff --git a/contrib/insualtorDetection/ground-truth1/1415.txt b/contrib/insualtorDetection/ground-truth1/1415.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a88bcce2e117eeb3bf992c0cc5f04f1c0245809 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1415.txt @@ -0,0 +1 @@ +insulator 62 353 921 578 diff --git a/contrib/insualtorDetection/ground-truth1/1416.txt b/contrib/insualtorDetection/ground-truth1/1416.txt new file mode 100644 index 0000000000000000000000000000000000000000..1778bf3ff48b5248275c58af2e7428761a64ddf2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1416.txt @@ -0,0 +1,3 @@ +insulator 123 385 920 564 +insulator 843 146 1152 214 +insulator 131 442 797 667 diff --git a/contrib/insualtorDetection/ground-truth1/1419.txt b/contrib/insualtorDetection/ground-truth1/1419.txt new file mode 100644 index 0000000000000000000000000000000000000000..d62afb02abe3bfadf452fe8e05d1c4992dc3bc13 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1419.txt @@ -0,0 +1,4 @@ +insulator 183 434 961 584 +insulator 297 745 502 787 +insulator 271 422 502 466 +insulator 225 16 524 72 diff --git a/contrib/insualtorDetection/ground-truth1/1420.txt b/contrib/insualtorDetection/ground-truth1/1420.txt new file mode 100644 index 0000000000000000000000000000000000000000..adfed1fff0f8fb3a41bc20aaf2efe7f13fbd95b5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1420.txt @@ -0,0 +1,3 @@ +insulator 97 368 937 495 +insulator 596 479 829 513 +insulator 550 48 877 109 diff --git a/contrib/insualtorDetection/ground-truth1/1424.txt b/contrib/insualtorDetection/ground-truth1/1424.txt new file mode 100644 index 0000000000000000000000000000000000000000..27cfe159bc456184d04f8d24e68ae5664f30c77b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1424.txt @@ -0,0 +1,4 @@ +insulator 66 411 965 1436 +insulator 188 420 1513 1530 +insulator 661 9 2474 123 +insulator 148 458 1331 1472 diff --git a/contrib/insualtorDetection/ground-truth1/1425.txt b/contrib/insualtorDetection/ground-truth1/1425.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9e464bafa1eef1dbaa6dacd7fde8c84dc4d96aa --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1425.txt @@ -0,0 +1,5 @@ +insulator 299 516 996 1203 +insulator 1 253 251 557 +insulator 243 486 1304 1157 +insulator 912 500 2064 1069 +insulator 977 84 2129 218 diff --git a/contrib/insualtorDetection/ground-truth1/1427.txt b/contrib/insualtorDetection/ground-truth1/1427.txt new file mode 100644 index 0000000000000000000000000000000000000000..31afd8ea0fe702de1a47a4b0e96c34298ab21528 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1427.txt @@ -0,0 +1,2 @@ +insulator 239 310 699 506 +insulator 608 167 864 237 diff --git a/contrib/insualtorDetection/ground-truth1/1428.txt b/contrib/insualtorDetection/ground-truth1/1428.txt new file mode 100644 index 0000000000000000000000000000000000000000..df628c5680f7f1003a93a74a4b5f4459628debb2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1428.txt @@ -0,0 +1,2 @@ +insulator 172 223 1287 887 +insulator 93 367 1012 917 diff --git a/contrib/insualtorDetection/ground-truth1/1433.txt b/contrib/insualtorDetection/ground-truth1/1433.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a7f78abbfe4154af8507f4b2c83d0959e94b657 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1433.txt @@ -0,0 +1 @@ +insulator 175 375 944 754 diff --git a/contrib/insualtorDetection/ground-truth1/1434.txt b/contrib/insualtorDetection/ground-truth1/1434.txt new file mode 100644 index 0000000000000000000000000000000000000000..20fb6f462b703e05b3b9e74abb1f8b9039c328a3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1434.txt @@ -0,0 +1,2 @@ +insulator 414 410 987 511 +insulator 286 156 516 199 diff --git a/contrib/insualtorDetection/ground-truth1/1437.txt b/contrib/insualtorDetection/ground-truth1/1437.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e58a6b698f232218e1dcfa965c58cb95dd4161d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1437.txt @@ -0,0 +1 @@ +insulator 150 403 868 487 diff --git a/contrib/insualtorDetection/ground-truth1/1446.txt b/contrib/insualtorDetection/ground-truth1/1446.txt new file mode 100644 index 0000000000000000000000000000000000000000..427aa013e75f935abb21f9291813dc4e8212eb3b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1446.txt @@ -0,0 +1,4 @@ +insulator 29 263 930 653 +insulator 231 430 544 557 +insulator 161 148 535 204 +insulator 258 571 1045 657 diff --git a/contrib/insualtorDetection/ground-truth1/1456.txt b/contrib/insualtorDetection/ground-truth1/1456.txt new file mode 100644 index 0000000000000000000000000000000000000000..12fab4026643f9af36f6d966a48841b1b0f3261b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1456.txt @@ -0,0 +1,2 @@ +insulator 241 560 1018 724 +insulator 471 160 791 236 diff --git a/contrib/insualtorDetection/ground-truth1/1465.txt b/contrib/insualtorDetection/ground-truth1/1465.txt new file mode 100644 index 0000000000000000000000000000000000000000..10eab3c62352343898a755b5bb77d8bcab3f78f3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1465.txt @@ -0,0 +1,2 @@ +insulator 132 390 991 595 +insulator 460 46 681 102 diff --git a/contrib/insualtorDetection/ground-truth1/1472.txt b/contrib/insualtorDetection/ground-truth1/1472.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e84c96cdff7a5905dbbfa782edb17ce262baa33 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1472.txt @@ -0,0 +1,4 @@ +insulator 282 314 962 485 +insulator 160 403 989 573 +insulator 493 541 793 608 +insulator 494 32 887 117 diff --git a/contrib/insualtorDetection/ground-truth1/1479.txt b/contrib/insualtorDetection/ground-truth1/1479.txt new file mode 100644 index 0000000000000000000000000000000000000000..d447c05ccdb307c2a82e151e9c77ee81429da2af --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1479.txt @@ -0,0 +1,3 @@ +insulator 163 393 1231 886 +insulator 218 436 1177 1059 +insulator 544 7 1391 88 diff --git a/contrib/insualtorDetection/ground-truth1/1486.txt b/contrib/insualtorDetection/ground-truth1/1486.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a70331c2d3586232a1bf095e552519d2e7f192c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1486.txt @@ -0,0 +1 @@ +insulator 158 383 893 561 diff --git a/contrib/insualtorDetection/ground-truth1/1488.txt b/contrib/insualtorDetection/ground-truth1/1488.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fcf14e5da602b50d3cf0c8c9ea297443bffb67c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1488.txt @@ -0,0 +1,3 @@ +insulator 100 381 928 524 +insulator 525 707 739 741 +insulator 84 325 1133 468 diff --git a/contrib/insualtorDetection/ground-truth1/1490.txt b/contrib/insualtorDetection/ground-truth1/1490.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6e15fa2738da304ee9ac4a0ac6a454b2ff2e7a8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1490.txt @@ -0,0 +1 @@ +insulator 192 275 1068 645 diff --git a/contrib/insualtorDetection/ground-truth1/1492.txt b/contrib/insualtorDetection/ground-truth1/1492.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c18d7e413973e9123849b2506374bc838c93d8a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1492.txt @@ -0,0 +1 @@ +insulator 216 403 943 663 diff --git a/contrib/insualtorDetection/ground-truth1/1496.txt b/contrib/insualtorDetection/ground-truth1/1496.txt new file mode 100644 index 0000000000000000000000000000000000000000..532d56cb892e1916abefe93771feba41a787015e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1496.txt @@ -0,0 +1,2 @@ +insulator 115 169 1074 922 +insulator 51 344 1173 903 diff --git a/contrib/insualtorDetection/ground-truth1/1500.txt b/contrib/insualtorDetection/ground-truth1/1500.txt new file mode 100644 index 0000000000000000000000000000000000000000..43dc0829d555c867004aff06e93f8ddc2852f9c8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1500.txt @@ -0,0 +1,2 @@ +insulator 230 527 918 599 +insulator 125 186 380 208 diff --git a/contrib/insualtorDetection/ground-truth1/1503.txt b/contrib/insualtorDetection/ground-truth1/1503.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b173d53da013997a798568a00594845bd86d45c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1503.txt @@ -0,0 +1,4 @@ +insulator 579 340 1416 797 +insulator 348 402 1373 1137 +insulator 122 425 1110 992 +insulator 504 152 1322 365 diff --git a/contrib/insualtorDetection/ground-truth1/1504.txt b/contrib/insualtorDetection/ground-truth1/1504.txt new file mode 100644 index 0000000000000000000000000000000000000000..90087c4f5df195309690efd70268170e177586a9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1504.txt @@ -0,0 +1,3 @@ +insulator 167 331 1031 412 +insulator 367 522 621 551 +insulator 326 1 606 42 diff --git a/contrib/insualtorDetection/ground-truth1/1507.txt b/contrib/insualtorDetection/ground-truth1/1507.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b05694f16d33c745cd0dab9b5e6272f368c60f4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1507.txt @@ -0,0 +1,4 @@ +insulator 1 245 383 328 +insulator 837 246 1152 346 +insulator 320 396 507 429 +insulator 730 410 886 466 diff --git a/contrib/insualtorDetection/ground-truth1/1522.txt b/contrib/insualtorDetection/ground-truth1/1522.txt new file mode 100644 index 0000000000000000000000000000000000000000..cac35f8dcd96f44a981d1bc9b8d21b83787abb8d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1522.txt @@ -0,0 +1 @@ +insulator 233 333 879 474 diff --git a/contrib/insualtorDetection/ground-truth1/1527.txt b/contrib/insualtorDetection/ground-truth1/1527.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f3c67d7550439dcd2cbd8ca4f2eb4b8b55de9dd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1527.txt @@ -0,0 +1,9 @@ +insulator 120 510 1147 1778 +insulator 58 205 485 698 +insulator 123 791 618 2445 +insulator 192 488 1297 1649 +insulator 707 417 2345 1308 +insulator 738 14 2517 113 +insulator 658 735 2181 2264 +insulator 381 367 1705 1287 +insulator 158 215 805 723 diff --git a/contrib/insualtorDetection/ground-truth1/1532.txt b/contrib/insualtorDetection/ground-truth1/1532.txt new file mode 100644 index 0000000000000000000000000000000000000000..edbc4401f1a0c64903b496f3822a7b2b71bd1a75 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1532.txt @@ -0,0 +1,2 @@ +insulator 153 396 887 816 +insulator 279 377 535 514 diff --git a/contrib/insualtorDetection/ground-truth1/1538.txt b/contrib/insualtorDetection/ground-truth1/1538.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8417ea68ab7e7ee5d33952636abfde6451282fe --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1538.txt @@ -0,0 +1,3 @@ +insulator 183 438 1044 581 +insulator 650 151 926 203 +insulator 136 252 977 519 diff --git a/contrib/insualtorDetection/ground-truth1/1545.txt b/contrib/insualtorDetection/ground-truth1/1545.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0732abfb00f79ca692b4c5b61053aa9915f53bc --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1545.txt @@ -0,0 +1,5 @@ +insulator 269 407 1282 1032 +insulator 511 131 1319 339 +insulator 87 427 1167 971 +insulator 611 606 1583 1248 +insulator 665 59 1728 191 diff --git a/contrib/insualtorDetection/ground-truth1/1546.txt b/contrib/insualtorDetection/ground-truth1/1546.txt new file mode 100644 index 0000000000000000000000000000000000000000..274444ae376d4acfa35223b67735fb3fb8cc05bb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1546.txt @@ -0,0 +1,5 @@ +insulator 193 266 275 631 +insulator 496 176 594 721 +insulator 1011 228 1066 574 +insulator 168 248 851 449 +insulator 198 467 533 567 diff --git a/contrib/insualtorDetection/ground-truth1/1548.txt b/contrib/insualtorDetection/ground-truth1/1548.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5119f338f307cd7fea4bbcc9018da98e1151d50 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1548.txt @@ -0,0 +1,3 @@ +insulator 181 232 274 614 +insulator 499 117 590 676 +insulator 1030 287 1081 647 diff --git a/contrib/insualtorDetection/ground-truth1/1567.txt b/contrib/insualtorDetection/ground-truth1/1567.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6cc21ccbe9fbd7a87d7b20f950ecfe8d230fe47 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1567.txt @@ -0,0 +1 @@ +insulator 272 282 1036 375 diff --git a/contrib/insualtorDetection/ground-truth1/1581.txt b/contrib/insualtorDetection/ground-truth1/1581.txt new file mode 100644 index 0000000000000000000000000000000000000000..ded152ac9b761c240296e68ae8d9303cacc61b9e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1581.txt @@ -0,0 +1,3 @@ +insulator 72 464 1102 591 +insulator 999 757 1152 803 +insulator 1016 151 1152 189 diff --git a/contrib/insualtorDetection/ground-truth1/1583.txt b/contrib/insualtorDetection/ground-truth1/1583.txt new file mode 100644 index 0000000000000000000000000000000000000000..6101f9ee5f0d4a01a93d428cbb8e806893ba19ca --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1583.txt @@ -0,0 +1 @@ +insulator 16 391 933 620 diff --git a/contrib/insualtorDetection/ground-truth1/1584.txt b/contrib/insualtorDetection/ground-truth1/1584.txt new file mode 100644 index 0000000000000000000000000000000000000000..de62586d21731e4abe218bd9e8d7c03284518f27 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1584.txt @@ -0,0 +1,4 @@ +insulator 157 508 1040 607 +insulator 393 762 622 788 +insulator 391 445 653 483 +insulator 363 52 722 125 diff --git a/contrib/insualtorDetection/ground-truth1/1585.txt b/contrib/insualtorDetection/ground-truth1/1585.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca396b35f85acfec94e9372b8d0ffb780e191bf3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1585.txt @@ -0,0 +1,2 @@ +insulator 169 496 1012 663 +insulator 321 417 651 481 diff --git a/contrib/insualtorDetection/ground-truth1/1588.txt b/contrib/insualtorDetection/ground-truth1/1588.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b3a93e2918103a5b2258c7ed1c6e6858a9228a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1588.txt @@ -0,0 +1,4 @@ +insulator 124 412 903 624 +insulator 125 1 457 89 +insulator 136 390 980 602 +insulator 472 40 716 102 diff --git a/contrib/insualtorDetection/ground-truth1/1590.txt b/contrib/insualtorDetection/ground-truth1/1590.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e6e6d7ba9d74515e66f30e95b2d735211edbc4c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1590.txt @@ -0,0 +1 @@ +insulator 65 454 1122 738 diff --git a/contrib/insualtorDetection/ground-truth1/1592.txt b/contrib/insualtorDetection/ground-truth1/1592.txt new file mode 100644 index 0000000000000000000000000000000000000000..466b5c4ebe29a8716b02ccf0312a0571576e6287 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1592.txt @@ -0,0 +1,2 @@ +insulator 182 518 955 641 +insulator 565 266 774 311 diff --git a/contrib/insualtorDetection/ground-truth1/1593.txt b/contrib/insualtorDetection/ground-truth1/1593.txt new file mode 100644 index 0000000000000000000000000000000000000000..362618b2303abdd1c295c6bc855cc905d1af4645 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1593.txt @@ -0,0 +1,3 @@ +insulator 422 675 1373 1426 +insulator 96 402 1203 953 +insulator 548 125 1328 299 diff --git a/contrib/insualtorDetection/ground-truth1/1608.txt b/contrib/insualtorDetection/ground-truth1/1608.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2637e9a18fd9394681eae230f70bd75e8608d1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1608.txt @@ -0,0 +1 @@ +insulator 241 174 685 483 diff --git a/contrib/insualtorDetection/ground-truth1/1617.txt b/contrib/insualtorDetection/ground-truth1/1617.txt new file mode 100644 index 0000000000000000000000000000000000000000..a90a2ed5ada29e12c9b507ce057fad26f2e6338a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1617.txt @@ -0,0 +1,5 @@ +insulator 297 313 935 415 +insulator 399 681 908 783 +insulator 182 338 972 545 +insulator 480 506 696 572 +insulator 407 91 679 162 diff --git a/contrib/insualtorDetection/ground-truth1/1621.txt b/contrib/insualtorDetection/ground-truth1/1621.txt new file mode 100644 index 0000000000000000000000000000000000000000..104120212a282e8c14406f6b2fbac8f0a42b5365 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1621.txt @@ -0,0 +1,2 @@ +insulator 172 591 858 759 +insulator 303 261 581 316 diff --git a/contrib/insualtorDetection/ground-truth1/1622.txt b/contrib/insualtorDetection/ground-truth1/1622.txt new file mode 100644 index 0000000000000000000000000000000000000000..09baea85666295fed498e1287917ddbe5d485363 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1622.txt @@ -0,0 +1,2 @@ +insulator 233 442 894 691 +insulator 637 64 983 174 diff --git a/contrib/insualtorDetection/ground-truth1/1624.txt b/contrib/insualtorDetection/ground-truth1/1624.txt new file mode 100644 index 0000000000000000000000000000000000000000..37ab671377042a77b37289080675c51adcdafad5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1624.txt @@ -0,0 +1,2 @@ +insulator 189 470 946 546 +insulator 474 97 803 136 diff --git a/contrib/insualtorDetection/ground-truth1/1634.txt b/contrib/insualtorDetection/ground-truth1/1634.txt new file mode 100644 index 0000000000000000000000000000000000000000..c737d43dc8264c0a5d0f862056a77d0e4d689e23 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1634.txt @@ -0,0 +1 @@ +insulator 41 242 1152 448 diff --git a/contrib/insualtorDetection/ground-truth1/1639.txt b/contrib/insualtorDetection/ground-truth1/1639.txt new file mode 100644 index 0000000000000000000000000000000000000000..46921f667cbdbf68e3b5b4794250335ab1121168 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1639.txt @@ -0,0 +1,3 @@ +insulator 9 456 852 563 +insulator 447 347 800 489 +insulator 281 477 554 582 diff --git a/contrib/insualtorDetection/ground-truth1/1654.txt b/contrib/insualtorDetection/ground-truth1/1654.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c0c84713b5c5826df4e4cab8b3366a0244ae990 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1654.txt @@ -0,0 +1 @@ +insulator 244 477 825 600 diff --git a/contrib/insualtorDetection/ground-truth1/1659.txt b/contrib/insualtorDetection/ground-truth1/1659.txt new file mode 100644 index 0000000000000000000000000000000000000000..359a4894a87fe895b59c570640b5e2da075e6b25 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1659.txt @@ -0,0 +1,2 @@ +insulator 287 238 796 508 +insulator 591 531 1000 748 diff --git a/contrib/insualtorDetection/ground-truth1/1670.txt b/contrib/insualtorDetection/ground-truth1/1670.txt new file mode 100644 index 0000000000000000000000000000000000000000..abc596097a61530a67c2aec3abe6bdea2fee46d6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1670.txt @@ -0,0 +1,2 @@ +insulator 137 432 1137 677 +insulator 568 195 986 293 diff --git a/contrib/insualtorDetection/ground-truth1/1683.txt b/contrib/insualtorDetection/ground-truth1/1683.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b17505354e07bcea07b6607d099e5e8da19c6a0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1683.txt @@ -0,0 +1,2 @@ +insulator 181 417 904 532 +insulator 123 196 508 283 diff --git a/contrib/insualtorDetection/ground-truth1/1698.txt b/contrib/insualtorDetection/ground-truth1/1698.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b3b998f78db9b99056ba409c478705e9274eb35 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1698.txt @@ -0,0 +1,2 @@ +insulator 135 144 940 323 +insulator 594 596 1152 724 diff --git a/contrib/insualtorDetection/ground-truth1/1699.txt b/contrib/insualtorDetection/ground-truth1/1699.txt new file mode 100644 index 0000000000000000000000000000000000000000..33250eccc5a2eefb86415f7efcc41fc5f8d2f904 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1699.txt @@ -0,0 +1,5 @@ +insulator 26 392 1106 511 +insulator 772 1 1152 82 +insulator 309 273 949 674 +insulator 363 283 566 365 +insulator 354 629 553 681 diff --git a/contrib/insualtorDetection/ground-truth1/1709.txt b/contrib/insualtorDetection/ground-truth1/1709.txt new file mode 100644 index 0000000000000000000000000000000000000000..64e16e27275635ba3591c34365584970413b0ee8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1709.txt @@ -0,0 +1,3 @@ +insulator 180 397 940 609 +insulator 549 139 801 209 +insulator 94 173 991 547 diff --git a/contrib/insualtorDetection/ground-truth1/1711.txt b/contrib/insualtorDetection/ground-truth1/1711.txt new file mode 100644 index 0000000000000000000000000000000000000000..c17f6666f59da2885853756d60f6bda4cdb1b39a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1711.txt @@ -0,0 +1 @@ +insulator 230 467 953 559 diff --git a/contrib/insualtorDetection/ground-truth1/1712.txt b/contrib/insualtorDetection/ground-truth1/1712.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8d9a400941c1e0e04ff1b18bd1c73b0fdbd51d5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1712.txt @@ -0,0 +1 @@ +insulator 177 558 858 701 diff --git a/contrib/insualtorDetection/ground-truth1/1714.txt b/contrib/insualtorDetection/ground-truth1/1714.txt new file mode 100644 index 0000000000000000000000000000000000000000..47cb4fa36bb6cdf440e4f42b9f98d15c57327de0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1714.txt @@ -0,0 +1,2 @@ +insulator 296 393 932 478 +insulator 1 449 240 503 diff --git a/contrib/insualtorDetection/ground-truth1/1717.txt b/contrib/insualtorDetection/ground-truth1/1717.txt new file mode 100644 index 0000000000000000000000000000000000000000..8161d755ee8747115dc1873b1f410088fd7f557d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1717.txt @@ -0,0 +1,3 @@ +insulator 160 429 1033 524 +insulator 297 664 564 693 +insulator 262 166 605 217 diff --git a/contrib/insualtorDetection/ground-truth1/1729.txt b/contrib/insualtorDetection/ground-truth1/1729.txt new file mode 100644 index 0000000000000000000000000000000000000000..762ef7d9e818edfddc015b999f0256c59d21e769 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1729.txt @@ -0,0 +1,4 @@ +insulator 289 455 1059 604 +insulator 468 546 973 670 +insulator 285 458 901 556 +insulator 598 289 794 320 diff --git a/contrib/insualtorDetection/ground-truth1/1731.txt b/contrib/insualtorDetection/ground-truth1/1731.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1b180043510c4ef67c8e5c6130424b3f8f500ff --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1731.txt @@ -0,0 +1,5 @@ +insulator 121 513 977 1153 +insulator 417 125 1139 290 +insulator 437 523 1102 1084 +insulator 16 281 893 864 +insulator 901 70 2053 227 diff --git a/contrib/insualtorDetection/ground-truth1/1733.txt b/contrib/insualtorDetection/ground-truth1/1733.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4a022d50c6d13430fd0a512545476dfbe7a271c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1733.txt @@ -0,0 +1,2 @@ +insulator 123 424 810 549 +insulator 140 1 419 48 diff --git a/contrib/insualtorDetection/ground-truth1/1751.txt b/contrib/insualtorDetection/ground-truth1/1751.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbeafcdb95ca2f363c6ae02b05efedaf842a1a58 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1751.txt @@ -0,0 +1,2 @@ +insulator 275 420 1077 607 +insulator 656 251 986 334 diff --git a/contrib/insualtorDetection/ground-truth1/1767.txt b/contrib/insualtorDetection/ground-truth1/1767.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f17accd2f7371443d847bb44ee5167044d9da3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1767.txt @@ -0,0 +1 @@ +insulator 139 240 857 364 diff --git a/contrib/insualtorDetection/ground-truth1/1775.txt b/contrib/insualtorDetection/ground-truth1/1775.txt new file mode 100644 index 0000000000000000000000000000000000000000..f41de892ffc1111822ae9e8ecf1487ee25fbc51c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1775.txt @@ -0,0 +1,5 @@ +insulator 161 449 1051 576 +insulator 351 217 769 287 +insulator 416 769 787 830 +insulator 252 434 887 549 +insulator 194 640 654 715 diff --git a/contrib/insualtorDetection/ground-truth1/1778.txt b/contrib/insualtorDetection/ground-truth1/1778.txt new file mode 100644 index 0000000000000000000000000000000000000000..5251529042fee99fe57f18e03df2865c00e88fd1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1778.txt @@ -0,0 +1,4 @@ +insulator 175 283 846 546 +insulator 228 650 443 783 +insulator 250 201 904 491 +insulator 369 1 538 38 diff --git a/contrib/insualtorDetection/ground-truth1/1784.txt b/contrib/insualtorDetection/ground-truth1/1784.txt new file mode 100644 index 0000000000000000000000000000000000000000..58e9d9a5b6ca26faf1122fa69149cf212e77fbce --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1784.txt @@ -0,0 +1,4 @@ +insulator 117 437 1066 1129 +insulator 752 555 1726 1188 +insulator 845 104 1950 278 +insulator 150 441 1056 1007 diff --git a/contrib/insualtorDetection/ground-truth1/1794.txt b/contrib/insualtorDetection/ground-truth1/1794.txt new file mode 100644 index 0000000000000000000000000000000000000000..af7c9bb8dc8309bd377934a4227b4912af3ebaec --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1794.txt @@ -0,0 +1,2 @@ +insulator 240 341 989 531 +insulator 465 68 876 170 diff --git a/contrib/insualtorDetection/ground-truth1/1797.txt b/contrib/insualtorDetection/ground-truth1/1797.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa2a6bf3342fee42053774917f1593f2a29dcfd1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1797.txt @@ -0,0 +1,2 @@ +insulator 155 444 814 528 +insulator 333 795 834 861 diff --git a/contrib/insualtorDetection/ground-truth1/1802.txt b/contrib/insualtorDetection/ground-truth1/1802.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc9c2b06bad5f0daa201166a201b350a3d748ba2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1802.txt @@ -0,0 +1,6 @@ +insulator 118 360 937 504 +insulator 224 273 1081 392 +insulator 1 1 244 80 +insulator 185 488 897 695 +insulator 75 419 308 485 +insulator 198 725 416 784 diff --git a/contrib/insualtorDetection/ground-truth1/1805.txt b/contrib/insualtorDetection/ground-truth1/1805.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1c9c2e460490a08e21d054ae2f482113e146a6b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1805.txt @@ -0,0 +1 @@ +insulator 183 504 913 684 diff --git a/contrib/insualtorDetection/ground-truth1/1816.txt b/contrib/insualtorDetection/ground-truth1/1816.txt new file mode 100644 index 0000000000000000000000000000000000000000..897de3c192133601688c4bddd28477a1e96cc70f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1816.txt @@ -0,0 +1,2 @@ +insulator 85 470 885 721 +insulator 939 512 1152 590 diff --git a/contrib/insualtorDetection/ground-truth1/1835.txt b/contrib/insualtorDetection/ground-truth1/1835.txt new file mode 100644 index 0000000000000000000000000000000000000000..90b2dd6851dd9ccad24eba99b13bad622922fa1f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1835.txt @@ -0,0 +1,2 @@ +insulator 227 403 803 510 +insulator 57 82 377 154 diff --git a/contrib/insualtorDetection/ground-truth1/1845.txt b/contrib/insualtorDetection/ground-truth1/1845.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c784f2bf4c9867b3fa59335d90d5e17da83a94d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1845.txt @@ -0,0 +1,2 @@ +insulator 87 313 1022 532 +insulator 554 542 849 619 diff --git a/contrib/insualtorDetection/ground-truth1/1851.txt b/contrib/insualtorDetection/ground-truth1/1851.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfbc3e7a05a42e55ec8452dae52f58a107d0ecd7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1851.txt @@ -0,0 +1,3 @@ +insulator 138 1 1104 489 +insulator 187 488 1114 1088 +insulator 899 660 1895 1523 diff --git a/contrib/insualtorDetection/ground-truth1/1871.txt b/contrib/insualtorDetection/ground-truth1/1871.txt new file mode 100644 index 0000000000000000000000000000000000000000..057f59fbd7378d5265b9e128a5ce38c4392808b5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1871.txt @@ -0,0 +1,2 @@ +insulator 170 402 1070 490 +insulator 804 62 1050 106 diff --git a/contrib/insualtorDetection/ground-truth1/1876.txt b/contrib/insualtorDetection/ground-truth1/1876.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb170b9f5ad9cb4a6ffcfce5565cdb01dd537c3e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1876.txt @@ -0,0 +1 @@ +insulator 165 376 936 555 diff --git a/contrib/insualtorDetection/ground-truth1/1878.txt b/contrib/insualtorDetection/ground-truth1/1878.txt new file mode 100644 index 0000000000000000000000000000000000000000..55cd3427ff42a6148416968df3a2825bb4d9f86d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1878.txt @@ -0,0 +1,4 @@ +insulator 195 493 970 602 +insulator 327 155 546 193 +insulator 259 459 963 681 +insulator 219 345 1002 617 diff --git a/contrib/insualtorDetection/ground-truth1/1880.txt b/contrib/insualtorDetection/ground-truth1/1880.txt new file mode 100644 index 0000000000000000000000000000000000000000..31259101b50fd721c4b05c4faa96247971bc3f41 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1880.txt @@ -0,0 +1,2 @@ +insulator 189 476 969 636 +insulator 651 284 951 335 diff --git a/contrib/insualtorDetection/ground-truth1/1890.txt b/contrib/insualtorDetection/ground-truth1/1890.txt new file mode 100644 index 0000000000000000000000000000000000000000..b968821fddcde191e91a977786767202edeccc83 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1890.txt @@ -0,0 +1,3 @@ +insulator 188 438 871 609 +insulator 329 550 772 676 +insulator 132 389 963 535 diff --git a/contrib/insualtorDetection/ground-truth1/1893.txt b/contrib/insualtorDetection/ground-truth1/1893.txt new file mode 100644 index 0000000000000000000000000000000000000000..0683ac6df97c0f9d9207556f387692e5e98788d7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1893.txt @@ -0,0 +1,2 @@ +insulator 162 403 994 648 +insulator 40 267 1028 524 diff --git a/contrib/insualtorDetection/ground-truth1/1897.txt b/contrib/insualtorDetection/ground-truth1/1897.txt new file mode 100644 index 0000000000000000000000000000000000000000..95ca7feaa5bb256ed0aa92f87fc627f5c7a173a6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1897.txt @@ -0,0 +1 @@ +insulator 191 155 1102 771 diff --git a/contrib/insualtorDetection/ground-truth1/1899.txt b/contrib/insualtorDetection/ground-truth1/1899.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2fd1d5621bbe9bde4d51c65a827960677bfbd0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1899.txt @@ -0,0 +1,2 @@ +insulator 158 501 1145 1189 +insulator 21 358 965 816 diff --git a/contrib/insualtorDetection/ground-truth1/1907.txt b/contrib/insualtorDetection/ground-truth1/1907.txt new file mode 100644 index 0000000000000000000000000000000000000000..34bf96f643e4c86a29256140b4b48c044fdb1b0c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1907.txt @@ -0,0 +1,3 @@ +insulator 178 386 900 500 +insulator 175 223 382 263 +insulator 149 365 1072 506 diff --git a/contrib/insualtorDetection/ground-truth1/1909.txt b/contrib/insualtorDetection/ground-truth1/1909.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd44fbb18d65ab5bb6d3a73ca8bdff569f32a859 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1909.txt @@ -0,0 +1,2 @@ +insulator 196 367 881 597 +insulator 456 30 826 133 diff --git a/contrib/insualtorDetection/ground-truth1/1924.txt b/contrib/insualtorDetection/ground-truth1/1924.txt new file mode 100644 index 0000000000000000000000000000000000000000..74479c57ad4a34ce203b231dd2061495df5c4fbd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1924.txt @@ -0,0 +1,5 @@ +insulator 127 266 1020 510 +insulator 839 335 1112 411 +insulator 737 695 957 760 +insulator 140 438 870 595 +insulator 488 706 1065 838 diff --git a/contrib/insualtorDetection/ground-truth1/1932.txt b/contrib/insualtorDetection/ground-truth1/1932.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d6bbe641014081189899774779b7d27916e2570 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1932.txt @@ -0,0 +1,2 @@ +insulator 356 300 1285 798 +insulator 40 346 908 876 diff --git a/contrib/insualtorDetection/ground-truth1/1938.txt b/contrib/insualtorDetection/ground-truth1/1938.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0b6e21e0e3196e13990066ef26072ee58252631 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1938.txt @@ -0,0 +1 @@ +insulator 248 181 683 485 diff --git a/contrib/insualtorDetection/ground-truth1/1940.txt b/contrib/insualtorDetection/ground-truth1/1940.txt new file mode 100644 index 0000000000000000000000000000000000000000..061577e8d640bffcf6773f2fcb1e91bc1e06b266 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1940.txt @@ -0,0 +1 @@ +insulator 137 583 873 778 diff --git a/contrib/insualtorDetection/ground-truth1/1955.txt b/contrib/insualtorDetection/ground-truth1/1955.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e4f1fecd2946304e90368fbf90ea96ac943c230 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1955.txt @@ -0,0 +1,2 @@ +insulator 49 346 958 510 +insulator 548 1 951 70 diff --git a/contrib/insualtorDetection/ground-truth1/1965.txt b/contrib/insualtorDetection/ground-truth1/1965.txt new file mode 100644 index 0000000000000000000000000000000000000000..1088243e1c17363931fe443d9de97719c4f0dbd1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1965.txt @@ -0,0 +1,2 @@ +insulator 217 391 1152 730 +insulator 516 681 1013 864 diff --git a/contrib/insualtorDetection/ground-truth1/1967.txt b/contrib/insualtorDetection/ground-truth1/1967.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cb35e1de8faa61750152eaad6d4a5c89fb63629 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1967.txt @@ -0,0 +1,2 @@ +insulator 286 296 977 456 +insulator 158 563 655 689 diff --git a/contrib/insualtorDetection/ground-truth1/1989.txt b/contrib/insualtorDetection/ground-truth1/1989.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79be1d76a7e061d175e358dd2fbc503ac17fc3f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1989.txt @@ -0,0 +1,3 @@ +insulator 228 481 1020 634 +insulator 326 305 553 344 +insulator 363 693 587 740 diff --git a/contrib/insualtorDetection/ground-truth1/1999.txt b/contrib/insualtorDetection/ground-truth1/1999.txt new file mode 100644 index 0000000000000000000000000000000000000000..72ecc15963d1bd9e18b20714ec05abdb8e370cef --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/1999.txt @@ -0,0 +1 @@ +insulator 85 405 987 556 diff --git a/contrib/insualtorDetection/ground-truth1/2000.txt b/contrib/insualtorDetection/ground-truth1/2000.txt new file mode 100644 index 0000000000000000000000000000000000000000..945ecf3d75fa3a336691708a683861de2c5792cd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2000.txt @@ -0,0 +1,3 @@ +insulator 122 424 1130 1018 +insulator 243 1 803 54 +insulator 134 559 1017 1205 diff --git a/contrib/insualtorDetection/ground-truth1/2005.txt b/contrib/insualtorDetection/ground-truth1/2005.txt new file mode 100644 index 0000000000000000000000000000000000000000..10df94bac34c3c56caf721af180d682ab5ec7811 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2005.txt @@ -0,0 +1 @@ +insulator 87 298 988 518 diff --git a/contrib/insualtorDetection/ground-truth1/2008.txt b/contrib/insualtorDetection/ground-truth1/2008.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4ff0cfc2adf3653a91509a093cc5f72aecb8c10 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2008.txt @@ -0,0 +1,2 @@ +insulator 198 530 1009 703 +insulator 515 110 772 167 diff --git a/contrib/insualtorDetection/ground-truth1/2018.txt b/contrib/insualtorDetection/ground-truth1/2018.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb35ab816d90889beb0c36522d7d6fcfdda77ac7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2018.txt @@ -0,0 +1,5 @@ +insulator 162 100 743 293 +insulator 134 337 1023 821 +insulator 244 512 1233 1140 +insulator 262 231 863 524 +insulator 329 607 925 1251 diff --git a/contrib/insualtorDetection/ground-truth1/2027.txt b/contrib/insualtorDetection/ground-truth1/2027.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31b322edc063ca6ea0abfe83ffbaa5717a11f64 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2027.txt @@ -0,0 +1,2 @@ +insulator 50 560 997 644 +insulator 752 217 1111 278 diff --git a/contrib/insualtorDetection/ground-truth1/2028.txt b/contrib/insualtorDetection/ground-truth1/2028.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba2c8bc6fc3aa679913ce34ecf9667f5538b3f88 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2028.txt @@ -0,0 +1 @@ +insulator 76 110 1136 368 diff --git a/contrib/insualtorDetection/ground-truth1/2039.txt b/contrib/insualtorDetection/ground-truth1/2039.txt new file mode 100644 index 0000000000000000000000000000000000000000..02c1d668155730b2947723814a9111b27ddc6938 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2039.txt @@ -0,0 +1 @@ +insulator 104 354 851 603 diff --git a/contrib/insualtorDetection/ground-truth1/2042.txt b/contrib/insualtorDetection/ground-truth1/2042.txt new file mode 100644 index 0000000000000000000000000000000000000000..f95b99aabed8f09225631ff737434739b15aa175 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2042.txt @@ -0,0 +1 @@ +insulator 192 469 981 639 diff --git a/contrib/insualtorDetection/ground-truth1/2047.txt b/contrib/insualtorDetection/ground-truth1/2047.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d0185c3bb26ffb8f7f82325d74057d3a2eed746 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2047.txt @@ -0,0 +1,2 @@ +insulator 125 428 1065 606 +insulator 86 440 990 567 diff --git a/contrib/insualtorDetection/ground-truth1/2052.txt b/contrib/insualtorDetection/ground-truth1/2052.txt new file mode 100644 index 0000000000000000000000000000000000000000..a97ae579d484a9e2b5dae962fafa82248c99eeb6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2052.txt @@ -0,0 +1,3 @@ +insulator 201 480 1025 1089 +insulator 161 460 1122 1147 +insulator 702 260 1619 575 diff --git a/contrib/insualtorDetection/ground-truth1/2053.txt b/contrib/insualtorDetection/ground-truth1/2053.txt new file mode 100644 index 0000000000000000000000000000000000000000..42372a406edeb389f85df9938af0b6de3d9dbba2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2053.txt @@ -0,0 +1 @@ +insulator 121 718 798 821 diff --git a/contrib/insualtorDetection/ground-truth1/2060.txt b/contrib/insualtorDetection/ground-truth1/2060.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd396079a4c6b16652a3e4c330b428b345018a2c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2060.txt @@ -0,0 +1,3 @@ +insulator 260 331 1037 605 +insulator 1 33 325 107 +insulator 94 159 901 723 diff --git a/contrib/insualtorDetection/ground-truth1/2062.txt b/contrib/insualtorDetection/ground-truth1/2062.txt new file mode 100644 index 0000000000000000000000000000000000000000..1565840285f5dd97a3e9b7b55f04d5d5ac5594a3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2062.txt @@ -0,0 +1,4 @@ +insulator 275 324 1026 484 +insulator 144 278 977 536 +insulator 813 114 1125 195 +insulator 291 68 485 102 diff --git a/contrib/insualtorDetection/ground-truth1/2079.txt b/contrib/insualtorDetection/ground-truth1/2079.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd966f7b6dcdae7e596a9a088f323b5530d513 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2079.txt @@ -0,0 +1 @@ +insulator 257 363 1129 704 diff --git a/contrib/insualtorDetection/ground-truth1/2086.txt b/contrib/insualtorDetection/ground-truth1/2086.txt new file mode 100644 index 0000000000000000000000000000000000000000..299b8a449d6dadb6f7824068ddda806e7633df79 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2086.txt @@ -0,0 +1,2 @@ +insulator 297 254 1068 381 +insulator 800 547 1152 613 diff --git a/contrib/insualtorDetection/ground-truth1/2104.txt b/contrib/insualtorDetection/ground-truth1/2104.txt new file mode 100644 index 0000000000000000000000000000000000000000..98a483610ae0515380334291b1779c0b96bd7e6d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2104.txt @@ -0,0 +1,4 @@ +insulator 354 402 1369 1287 +insulator 236 464 1505 1605 +insulator 88 256 1328 1023 +insulator 269 443 1324 1392 diff --git a/contrib/insualtorDetection/ground-truth1/2113.txt b/contrib/insualtorDetection/ground-truth1/2113.txt new file mode 100644 index 0000000000000000000000000000000000000000..d381c7202a7964ba45b47dbf0aa6a7e9248c1fcf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2113.txt @@ -0,0 +1,3 @@ +insulator 260 476 1034 620 +insulator 644 672 912 725 +insulator 592 212 922 277 diff --git a/contrib/insualtorDetection/ground-truth1/2131.txt b/contrib/insualtorDetection/ground-truth1/2131.txt new file mode 100644 index 0000000000000000000000000000000000000000..6019800b74dbf385c0aab9fb1d05035e0b183540 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2131.txt @@ -0,0 +1 @@ +insulator 95 228 979 507 diff --git a/contrib/insualtorDetection/ground-truth1/2134.txt b/contrib/insualtorDetection/ground-truth1/2134.txt new file mode 100644 index 0000000000000000000000000000000000000000..c252a151225d4e65c0fe8de7938a9f890497d7c1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2134.txt @@ -0,0 +1,4 @@ +insulator 87 374 990 916 +insulator 1000 10 2152 71 +insulator 101 396 973 966 +insulator 413 78 1184 217 diff --git a/contrib/insualtorDetection/ground-truth1/2155.txt b/contrib/insualtorDetection/ground-truth1/2155.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7be90a0d722947b46d167574c41696af677218c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2155.txt @@ -0,0 +1 @@ +insulator 139 410 922 687 diff --git a/contrib/insualtorDetection/ground-truth1/2156.txt b/contrib/insualtorDetection/ground-truth1/2156.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f2a40183d7cff6836fe31ed37edf812eabe0a27 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2156.txt @@ -0,0 +1,2 @@ +insulator 219 525 944 637 +insulator 281 207 514 253 diff --git a/contrib/insualtorDetection/ground-truth1/2170.txt b/contrib/insualtorDetection/ground-truth1/2170.txt new file mode 100644 index 0000000000000000000000000000000000000000..0169fa24c75c904e70773a2e7acd9c8daf0c7e01 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2170.txt @@ -0,0 +1,4 @@ +insulator 146 511 1074 1125 +insulator 350 1 1079 47 +insulator 165 344 1144 791 +insulator 343 176 942 379 diff --git a/contrib/insualtorDetection/ground-truth1/2171.txt b/contrib/insualtorDetection/ground-truth1/2171.txt new file mode 100644 index 0000000000000000000000000000000000000000..6041fdf347ac3407b297e666545535a51f3c0305 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2171.txt @@ -0,0 +1,2 @@ +insulator 69 378 783 612 +insulator 251 1 527 86 diff --git a/contrib/insualtorDetection/ground-truth1/2173.txt b/contrib/insualtorDetection/ground-truth1/2173.txt new file mode 100644 index 0000000000000000000000000000000000000000..1baa75c440d88f7612f07252a6e2f6aaa9bd4a7e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2173.txt @@ -0,0 +1,2 @@ +insulator 165 380 1001 605 +insulator 171 442 882 553 diff --git a/contrib/insualtorDetection/ground-truth1/2180.txt b/contrib/insualtorDetection/ground-truth1/2180.txt new file mode 100644 index 0000000000000000000000000000000000000000..11e0757868833005c2d4b9d6b54222e6e8bfc728 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2180.txt @@ -0,0 +1 @@ +insulator 102 260 902 447 diff --git a/contrib/insualtorDetection/ground-truth1/2210.txt b/contrib/insualtorDetection/ground-truth1/2210.txt new file mode 100644 index 0000000000000000000000000000000000000000..46e454a1c764259f68d01e39caaacf0f269f6834 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2210.txt @@ -0,0 +1 @@ +insulator 174 410 934 644 diff --git a/contrib/insualtorDetection/ground-truth1/2211.txt b/contrib/insualtorDetection/ground-truth1/2211.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9b510530d59df3499952f406169ceea6b44b66b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2211.txt @@ -0,0 +1,4 @@ +insulator 176 341 1081 993 +insulator 173 433 1159 971 +insulator 226 447 1192 1094 +insulator 447 312 1141 688 diff --git a/contrib/insualtorDetection/ground-truth1/2224.txt b/contrib/insualtorDetection/ground-truth1/2224.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0d4bb847f5d1315795bc18e9fcd9b84b79c1226 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2224.txt @@ -0,0 +1,2 @@ +insulator 179 381 865 468 +insulator 343 703 860 760 diff --git a/contrib/insualtorDetection/ground-truth1/2225.txt b/contrib/insualtorDetection/ground-truth1/2225.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfcd579af2ce465ad6127ce0f9753f336fd88b6e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2225.txt @@ -0,0 +1 @@ +insulator 117 404 991 630 diff --git a/contrib/insualtorDetection/ground-truth1/2226.txt b/contrib/insualtorDetection/ground-truth1/2226.txt new file mode 100644 index 0000000000000000000000000000000000000000..407b022a90205293ad243e166117e2ffd74ae725 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2226.txt @@ -0,0 +1,4 @@ +insulator 158 347 1219 862 +insulator 534 574 1290 1188 +insulator 583 164 1405 366 +insulator 369 431 1394 1064 diff --git a/contrib/insualtorDetection/ground-truth1/2236.txt b/contrib/insualtorDetection/ground-truth1/2236.txt new file mode 100644 index 0000000000000000000000000000000000000000..c573ed0a2ad81611c69b06f1806ed9371fbde4ea --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2236.txt @@ -0,0 +1,3 @@ +insulator 179 218 881 453 +insulator 174 369 421 442 +insulator 273 691 486 757 diff --git a/contrib/insualtorDetection/ground-truth1/2244.txt b/contrib/insualtorDetection/ground-truth1/2244.txt new file mode 100644 index 0000000000000000000000000000000000000000..b29cb824d4e3ab9a1d43593b3f0efdc846be6ea3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2244.txt @@ -0,0 +1,5 @@ +insulator 240 502 1141 1092 +insulator 676 170 1687 398 +insulator 192 364 1224 921 +insulator 467 547 1206 1160 +insulator 444 104 1233 285 diff --git a/contrib/insualtorDetection/ground-truth1/2257.txt b/contrib/insualtorDetection/ground-truth1/2257.txt new file mode 100644 index 0000000000000000000000000000000000000000..24122f923c539d8629a352bb1eee39421a9953eb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2257.txt @@ -0,0 +1 @@ +insulator 164 432 915 575 diff --git a/contrib/insualtorDetection/ground-truth1/2259.txt b/contrib/insualtorDetection/ground-truth1/2259.txt new file mode 100644 index 0000000000000000000000000000000000000000..074aca8a6e13d6999fb5b4f2eb82117a68dfe905 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2259.txt @@ -0,0 +1 @@ +insulator 229 359 964 567 diff --git a/contrib/insualtorDetection/ground-truth1/2261.txt b/contrib/insualtorDetection/ground-truth1/2261.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc84278e699324cbf2abf77437b37e5f946edeb1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2261.txt @@ -0,0 +1,4 @@ +insulator 254 210 985 601 +insulator 685 117 930 245 +insulator 632 493 830 602 +insulator 175 288 1026 433 diff --git a/contrib/insualtorDetection/ground-truth1/2270.txt b/contrib/insualtorDetection/ground-truth1/2270.txt new file mode 100644 index 0000000000000000000000000000000000000000..240e0483f19bed007344267c011f07e1222f889e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2270.txt @@ -0,0 +1,2 @@ +insulator 291 370 931 590 +insulator 65 667 588 864 diff --git a/contrib/insualtorDetection/ground-truth1/2274.txt b/contrib/insualtorDetection/ground-truth1/2274.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8b36c6da7538b937295f6ba2cd523bc0002c19d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2274.txt @@ -0,0 +1,2 @@ +insulator 197 410 923 531 +insulator 816 42 1075 93 diff --git a/contrib/insualtorDetection/ground-truth1/2277.txt b/contrib/insualtorDetection/ground-truth1/2277.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5943fd069af8d5d7ba465fcb63cacb573a92e45 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2277.txt @@ -0,0 +1,2 @@ +insulator 224 660 908 1434 +insulator 208 339 1094 866 diff --git a/contrib/insualtorDetection/ground-truth1/2292.txt b/contrib/insualtorDetection/ground-truth1/2292.txt new file mode 100644 index 0000000000000000000000000000000000000000..7546880440e2cd28ded0c7ab261b8066162cd9d9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2292.txt @@ -0,0 +1,3 @@ +insulator 130 254 1009 386 +insulator 227 331 927 697 +insulator 644 213 931 360 diff --git a/contrib/insualtorDetection/ground-truth1/2296.txt b/contrib/insualtorDetection/ground-truth1/2296.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccec04438c29803be65969bbc05d7d103fce60e3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2296.txt @@ -0,0 +1,2 @@ +insulator 82 468 1044 1116 +insulator 15 395 1050 864 diff --git a/contrib/insualtorDetection/ground-truth1/2306.txt b/contrib/insualtorDetection/ground-truth1/2306.txt new file mode 100644 index 0000000000000000000000000000000000000000..07803b097668d3c99aa7bbe5efe49c514b9e2995 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2306.txt @@ -0,0 +1 @@ +insulator 304 338 965 413 diff --git a/contrib/insualtorDetection/ground-truth1/2307.txt b/contrib/insualtorDetection/ground-truth1/2307.txt new file mode 100644 index 0000000000000000000000000000000000000000..15cb832612ac08ddd4ee9010da81bd01fc6f6451 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2307.txt @@ -0,0 +1,5 @@ +insulator 70 517 1052 1189 +insulator 617 530 1522 1112 +insulator 549 28 1493 118 +insulator 62 584 891 1316 +insulator 333 796 1244 1659 diff --git a/contrib/insualtorDetection/ground-truth1/2311.txt b/contrib/insualtorDetection/ground-truth1/2311.txt new file mode 100644 index 0000000000000000000000000000000000000000..7016cb6e2dd5720a521257ce14a6fd55b25711d5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2311.txt @@ -0,0 +1,4 @@ +insulator 310 226 1061 362 +insulator 357 30 644 81 +insulator 337 453 564 497 +insulator 313 810 524 853 diff --git a/contrib/insualtorDetection/ground-truth1/2313.txt b/contrib/insualtorDetection/ground-truth1/2313.txt new file mode 100644 index 0000000000000000000000000000000000000000..82a3786a47d6b3475b450aabcfec188d4c2e53e9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2313.txt @@ -0,0 +1,4 @@ +insulator 42 448 975 1019 +insulator 457 68 1182 163 +insulator 149 325 990 948 +insulator 142 437 598 1007 diff --git a/contrib/insualtorDetection/ground-truth1/2314.txt b/contrib/insualtorDetection/ground-truth1/2314.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e6f770cc8bc6a04a60bc466820eed1888ab805c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2314.txt @@ -0,0 +1 @@ +insulator 29 191 950 493 diff --git a/contrib/insualtorDetection/ground-truth1/2318.txt b/contrib/insualtorDetection/ground-truth1/2318.txt new file mode 100644 index 0000000000000000000000000000000000000000..99f2c424c8b33edc1b5ae75177b80128cba677b8 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2318.txt @@ -0,0 +1 @@ +insulator 35 364 1081 607 diff --git a/contrib/insualtorDetection/ground-truth1/2319.txt b/contrib/insualtorDetection/ground-truth1/2319.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32bb291a7decb741a93e659901c853695c38348 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2319.txt @@ -0,0 +1 @@ +insulator 297 325 1003 515 diff --git a/contrib/insualtorDetection/ground-truth1/2323.txt b/contrib/insualtorDetection/ground-truth1/2323.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c49affe672f0400ebf5e2ad458a92eaf77bb00 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2323.txt @@ -0,0 +1 @@ +insulator 489 567 1033 632 diff --git a/contrib/insualtorDetection/ground-truth1/2337.txt b/contrib/insualtorDetection/ground-truth1/2337.txt new file mode 100644 index 0000000000000000000000000000000000000000..85dfb849221b24ae893c1d63af13be29ace73a6e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2337.txt @@ -0,0 +1,2 @@ +insulator 337 521 1077 745 +insulator 385 126 718 183 diff --git a/contrib/insualtorDetection/ground-truth1/2338.txt b/contrib/insualtorDetection/ground-truth1/2338.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ce6f813a5041721e3f327b3904870e047e3823f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2338.txt @@ -0,0 +1,2 @@ +insulator 241 381 922 522 +insulator 272 67 645 113 diff --git a/contrib/insualtorDetection/ground-truth1/2341.txt b/contrib/insualtorDetection/ground-truth1/2341.txt new file mode 100644 index 0000000000000000000000000000000000000000..49bf036ee8d8ec9a9c27fea8c5e8678d0faa5079 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2341.txt @@ -0,0 +1,4 @@ +insulator 194 336 1026 996 +insulator 1 1 202 56 +insulator 72 217 1109 773 +insulator 21 553 769 1370 diff --git a/contrib/insualtorDetection/ground-truth1/2344.txt b/contrib/insualtorDetection/ground-truth1/2344.txt new file mode 100644 index 0000000000000000000000000000000000000000..b298b1e5ab429a57bb606e516725489ad4166681 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2344.txt @@ -0,0 +1,3 @@ +insulator 144 390 957 488 +insulator 311 546 1002 618 +insulator 50 485 295 513 diff --git a/contrib/insualtorDetection/ground-truth1/2349.txt b/contrib/insualtorDetection/ground-truth1/2349.txt new file mode 100644 index 0000000000000000000000000000000000000000..d26528d3e7b1cb79c48a13d8b79d017bd186802e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2349.txt @@ -0,0 +1 @@ +insulator 48 422 894 573 diff --git a/contrib/insualtorDetection/ground-truth1/2354.txt b/contrib/insualtorDetection/ground-truth1/2354.txt new file mode 100644 index 0000000000000000000000000000000000000000..219478792353f2dd54402dfc0f8a701191ce493f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2354.txt @@ -0,0 +1,3 @@ +insulator 44 440 1015 718 +insulator 1 33 186 100 +insulator 117 424 1058 591 diff --git a/contrib/insualtorDetection/ground-truth1/2356.txt b/contrib/insualtorDetection/ground-truth1/2356.txt new file mode 100644 index 0000000000000000000000000000000000000000..2aaceba3842125e53b66b08537445080fc08fc7e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2356.txt @@ -0,0 +1 @@ +insulator 207 535 891 623 diff --git a/contrib/insualtorDetection/ground-truth1/2358.txt b/contrib/insualtorDetection/ground-truth1/2358.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f1098d013504aecd20c8255f342a509446ca3f4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2358.txt @@ -0,0 +1,3 @@ +insulator 177 494 883 576 +insulator 401 198 734 246 +insulator 192 574 903 701 diff --git a/contrib/insualtorDetection/ground-truth1/2372.txt b/contrib/insualtorDetection/ground-truth1/2372.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f576b9e40c748ea209e0990ad2de8d444f6ea43 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2372.txt @@ -0,0 +1 @@ +insulator 152 455 992 580 diff --git a/contrib/insualtorDetection/ground-truth1/2380.txt b/contrib/insualtorDetection/ground-truth1/2380.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79c7d6fa52c3dab7d0421e85860e838eb1163e7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2380.txt @@ -0,0 +1,3 @@ +insulator 217 426 1091 971 +insulator 345 794 1129 1658 +insulator 54 436 976 1034 diff --git a/contrib/insualtorDetection/ground-truth1/2396.txt b/contrib/insualtorDetection/ground-truth1/2396.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa54ae902641bb7aaf85431bf86fbf69984015c1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2396.txt @@ -0,0 +1,2 @@ +insulator 182 442 928 601 +insulator 531 206 770 250 diff --git a/contrib/insualtorDetection/ground-truth1/2398.txt b/contrib/insualtorDetection/ground-truth1/2398.txt new file mode 100644 index 0000000000000000000000000000000000000000..93da50ebb1b1fce0237158163738bf0b1336476b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2398.txt @@ -0,0 +1,2 @@ +insulator 158 447 940 594 +insulator 537 9 895 82 diff --git a/contrib/insualtorDetection/ground-truth1/2400.txt b/contrib/insualtorDetection/ground-truth1/2400.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7e6a40d154fe4fde2b7ba0f58dc9b120ccdff0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2400.txt @@ -0,0 +1,4 @@ +insulator 143 239 714 649 +insulator 177 192 395 323 +insulator 179 431 961 536 +insulator 498 53 833 108 diff --git a/contrib/insualtorDetection/ground-truth1/2405.txt b/contrib/insualtorDetection/ground-truth1/2405.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b511db7aa125fc4499158cc5a0cfe4a06ebe719 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2405.txt @@ -0,0 +1,2 @@ +insulator 173 498 1036 589 +insulator 554 291 867 345 diff --git a/contrib/insualtorDetection/ground-truth1/2421.txt b/contrib/insualtorDetection/ground-truth1/2421.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8e11ae3b6cfb68ed7f2768a8b6a7c21a2499ef7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2421.txt @@ -0,0 +1,2 @@ +insulator 467 350 1003 431 +insulator 379 69 699 113 diff --git a/contrib/insualtorDetection/ground-truth1/2423.txt b/contrib/insualtorDetection/ground-truth1/2423.txt new file mode 100644 index 0000000000000000000000000000000000000000..2008a2eda23eaa478e01f0103d2e8c5113f83e58 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2423.txt @@ -0,0 +1 @@ +insulator 246 375 939 608 diff --git a/contrib/insualtorDetection/ground-truth1/2424.txt b/contrib/insualtorDetection/ground-truth1/2424.txt new file mode 100644 index 0000000000000000000000000000000000000000..65cbd3e88e0b19d3118f5046542485d9fc14f60c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2424.txt @@ -0,0 +1,4 @@ +insulator 66 411 899 1025 +insulator 188 420 1325 1110 +insulator 661 9 1813 114 +insulator 148 458 1183 1014 diff --git a/contrib/insualtorDetection/ground-truth1/2428.txt b/contrib/insualtorDetection/ground-truth1/2428.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f802a3c3ac1fb8e129c993d95f1d8bda559781c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2428.txt @@ -0,0 +1,2 @@ +insulator 172 223 1115 664 +insulator 93 367 919 550 diff --git a/contrib/insualtorDetection/ground-truth1/2447.txt b/contrib/insualtorDetection/ground-truth1/2447.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a2152d1e55e6d9af29cd48065530d6b2dc49fa7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2447.txt @@ -0,0 +1,2 @@ +insulator 115 313 1151 400 +insulator 392 655 801 703 diff --git a/contrib/insualtorDetection/ground-truth1/2455.txt b/contrib/insualtorDetection/ground-truth1/2455.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c3fe89f0fd367223471f3f5cedf971692d219be --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2455.txt @@ -0,0 +1,2 @@ +insulator 289 438 1018 550 +insulator 1 201 125 238 diff --git a/contrib/insualtorDetection/ground-truth1/2459.txt b/contrib/insualtorDetection/ground-truth1/2459.txt new file mode 100644 index 0000000000000000000000000000000000000000..c42c58c8eeec3c20bdb387a09be59983277d73ae --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2459.txt @@ -0,0 +1,5 @@ +insulator 236 578 1165 1261 +insulator 331 361 968 785 +insulator 105 338 1060 841 +insulator 104 511 1025 1188 +insulator 281 326 840 707 diff --git a/contrib/insualtorDetection/ground-truth1/2472.txt b/contrib/insualtorDetection/ground-truth1/2472.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9e9cdd2821649e43a9b3c80832c2594759191e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2472.txt @@ -0,0 +1,4 @@ +insulator 282 314 1244 799 +insulator 160 403 1149 976 +insulator 493 541 1286 1149 +insulator 494 32 1381 149 diff --git a/contrib/insualtorDetection/ground-truth1/2483.txt b/contrib/insualtorDetection/ground-truth1/2483.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7d2139d71820c87d55354736c2228a90dfdcaf4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2483.txt @@ -0,0 +1 @@ +insulator 132 344 949 598 diff --git a/contrib/insualtorDetection/ground-truth1/2484.txt b/contrib/insualtorDetection/ground-truth1/2484.txt new file mode 100644 index 0000000000000000000000000000000000000000..b95db13ba13f0ab066c992bfb6319af1d9419f0a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2484.txt @@ -0,0 +1,2 @@ +insulator 288 475 925 611 +insulator 372 246 618 274 diff --git a/contrib/insualtorDetection/ground-truth1/2488.txt b/contrib/insualtorDetection/ground-truth1/2488.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d50d211b53d4262c863447d0d5e72af89d68b77 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2488.txt @@ -0,0 +1,3 @@ +insulator 100 381 1028 905 +insulator 525 707 1264 1448 +insulator 84 325 1217 793 diff --git a/contrib/insualtorDetection/ground-truth1/2493.txt b/contrib/insualtorDetection/ground-truth1/2493.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed796ab61cb080d63d785c58807f169dc987b2f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2493.txt @@ -0,0 +1,3 @@ +insulator 167 465 1046 1018 +insulator 199 416 1287 1058 +insulator 872 134 2024 342 diff --git a/contrib/insualtorDetection/ground-truth1/2496.txt b/contrib/insualtorDetection/ground-truth1/2496.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd5f358d2b69c960fe622fafccaff5eb3823da2c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2496.txt @@ -0,0 +1,2 @@ +insulator 115 169 959 753 +insulator 51 344 1122 559 diff --git a/contrib/insualtorDetection/ground-truth1/2501.txt b/contrib/insualtorDetection/ground-truth1/2501.txt new file mode 100644 index 0000000000000000000000000000000000000000..d21af53042cf16f02007ca230b63bbb96daf6c4b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2501.txt @@ -0,0 +1,3 @@ +insulator 287 365 1074 839 +insulator 82 331 1079 867 +insulator 399 108 1028 273 diff --git a/contrib/insualtorDetection/ground-truth1/2512.txt b/contrib/insualtorDetection/ground-truth1/2512.txt new file mode 100644 index 0000000000000000000000000000000000000000..978f1a8956536c7903777b1a4f38c64d81a5c315 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2512.txt @@ -0,0 +1 @@ +insulator 425 357 847 429 diff --git a/contrib/insualtorDetection/ground-truth1/2513.txt b/contrib/insualtorDetection/ground-truth1/2513.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9b7b01aaded70c0008cff05fd2fd5c893e20bf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2513.txt @@ -0,0 +1,2 @@ +insulator 115 427 907 691 +insulator 251 127 555 204 diff --git a/contrib/insualtorDetection/ground-truth1/2514.txt b/contrib/insualtorDetection/ground-truth1/2514.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12ace75c6029c1ce1d39cdd527aa47d96f5165b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2514.txt @@ -0,0 +1,2 @@ +insulator 244 410 931 620 +insulator 453 303 687 365 diff --git a/contrib/insualtorDetection/ground-truth1/2527.txt b/contrib/insualtorDetection/ground-truth1/2527.txt new file mode 100644 index 0000000000000000000000000000000000000000..382ed4b37498a55bc84ed4fe6a80cc1be3faa389 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2527.txt @@ -0,0 +1,9 @@ +insulator 120 510 1027 1268 +insulator 58 205 427 493 +insulator 123 791 495 1654 +insulator 192 488 1105 1161 +insulator 707 417 1638 891 +insulator 738 14 1779 99 +insulator 658 735 1523 1529 +insulator 381 367 1324 920 +insulator 158 215 647 508 diff --git a/contrib/insualtorDetection/ground-truth1/2528.txt b/contrib/insualtorDetection/ground-truth1/2528.txt new file mode 100644 index 0000000000000000000000000000000000000000..efec63e638ef3d6bdf6b70af9b46a99b7df21b2f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2528.txt @@ -0,0 +1,2 @@ +insulator 110 402 828 496 +insulator 332 262 559 300 diff --git a/contrib/insualtorDetection/ground-truth1/2531.txt b/contrib/insualtorDetection/ground-truth1/2531.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6a60136c97653260d17359028bbf125e6b5a3e7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2531.txt @@ -0,0 +1,2 @@ +insulator 130 364 961 605 +insulator 875 57 1152 118 diff --git a/contrib/insualtorDetection/ground-truth1/2538.txt b/contrib/insualtorDetection/ground-truth1/2538.txt new file mode 100644 index 0000000000000000000000000000000000000000..544e1ccf4cfdea2c33a7f569b3df5b0fdb7590fe --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2538.txt @@ -0,0 +1,3 @@ +insulator 183 438 1227 1019 +insulator 650 151 1576 354 +insulator 136 252 1113 771 diff --git a/contrib/insualtorDetection/ground-truth1/2544.txt b/contrib/insualtorDetection/ground-truth1/2544.txt new file mode 100644 index 0000000000000000000000000000000000000000..17d65e6d1aec290990a05b22b1cdc648657a9181 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2544.txt @@ -0,0 +1 @@ +insulator 206 523 976 721 diff --git a/contrib/insualtorDetection/ground-truth1/2565.txt b/contrib/insualtorDetection/ground-truth1/2565.txt new file mode 100644 index 0000000000000000000000000000000000000000..18c5567d3fe6ccae01a5e94789ddc40a69659d1e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2565.txt @@ -0,0 +1,2 @@ +insulator 49 472 859 574 +insulator 404 178 774 217 diff --git a/contrib/insualtorDetection/ground-truth1/2566.txt b/contrib/insualtorDetection/ground-truth1/2566.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9edf89436ddb3a2604fceaf0d57cfd160d16791 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2566.txt @@ -0,0 +1,3 @@ +insulator 237 381 991 597 +insulator 73 48 422 147 +insulator 145 439 922 524 diff --git a/contrib/insualtorDetection/ground-truth1/2574.txt b/contrib/insualtorDetection/ground-truth1/2574.txt new file mode 100644 index 0000000000000000000000000000000000000000..e962ebbcbccee19485b52c62fb14018ffc782521 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2574.txt @@ -0,0 +1 @@ +insulator 214 439 775 606 diff --git a/contrib/insualtorDetection/ground-truth1/2597.txt b/contrib/insualtorDetection/ground-truth1/2597.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4dba0a491df7eeb696122124b05739e79518562 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2597.txt @@ -0,0 +1,2 @@ +insulator 290 244 1072 353 +insulator 404 135 644 172 diff --git a/contrib/insualtorDetection/ground-truth1/2600.txt b/contrib/insualtorDetection/ground-truth1/2600.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f5bb7c8cd7e2b0e8eafc82f8549953068e2b0d0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2600.txt @@ -0,0 +1,2 @@ +insulator 141 214 1025 624 +insulator 222 362 1161 870 diff --git a/contrib/insualtorDetection/ground-truth1/2604.txt b/contrib/insualtorDetection/ground-truth1/2604.txt new file mode 100644 index 0000000000000000000000000000000000000000..51b5ef4b316482cddc3299b88ddae605b2d027c4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2604.txt @@ -0,0 +1,2 @@ +insulator 458 9 901 147 +insulator 144 346 1017 610 diff --git a/contrib/insualtorDetection/ground-truth1/2612.txt b/contrib/insualtorDetection/ground-truth1/2612.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab1fd8c941a5b8146f8f6b0b7b44c2f59c7b0195 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2612.txt @@ -0,0 +1,4 @@ +insulator 246 486 1308 1274 +insulator 140 604 536 1301 +insulator 5 43 300 185 +insulator 215 411 1194 1174 diff --git a/contrib/insualtorDetection/ground-truth1/2632.txt b/contrib/insualtorDetection/ground-truth1/2632.txt new file mode 100644 index 0000000000000000000000000000000000000000..c19965bd023d29a5a5ef07aebf725728b43b866e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2632.txt @@ -0,0 +1,2 @@ +insulator 57 394 1001 528 +insulator 715 522 944 549 diff --git a/contrib/insualtorDetection/ground-truth1/2639.txt b/contrib/insualtorDetection/ground-truth1/2639.txt new file mode 100644 index 0000000000000000000000000000000000000000..2343996f7629397f385388db87273fe63da3c41f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2639.txt @@ -0,0 +1,3 @@ +insulator 9 456 861 1019 +insulator 447 347 1247 836 +insulator 281 477 835 1059 diff --git a/contrib/insualtorDetection/ground-truth1/2642.txt b/contrib/insualtorDetection/ground-truth1/2642.txt new file mode 100644 index 0000000000000000000000000000000000000000..32fd1a96c3730bc8751e8b0a6eaa07090c2d0c71 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2642.txt @@ -0,0 +1,3 @@ +insulator 200 469 834 634 +insulator 263 174 594 243 +insulator 92 210 937 584 diff --git a/contrib/insualtorDetection/ground-truth1/2645.txt b/contrib/insualtorDetection/ground-truth1/2645.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dfa6e57a4d4f6054dd3234e3753942d69d4c099 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2645.txt @@ -0,0 +1,2 @@ +insulator 165 354 958 674 +insulator 418 180 612 253 diff --git a/contrib/insualtorDetection/ground-truth1/2657.txt b/contrib/insualtorDetection/ground-truth1/2657.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a9765453ce48610514c8b1bd3ddfa1da410990c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2657.txt @@ -0,0 +1,2 @@ +insulator 122 373 851 492 +insulator 425 51 859 111 diff --git a/contrib/insualtorDetection/ground-truth1/2660.txt b/contrib/insualtorDetection/ground-truth1/2660.txt new file mode 100644 index 0000000000000000000000000000000000000000..2718241db4618bb9a8b3097122607643e42284f5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2660.txt @@ -0,0 +1 @@ +insulator 128 482 922 614 diff --git a/contrib/insualtorDetection/ground-truth1/2666.txt b/contrib/insualtorDetection/ground-truth1/2666.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b167094210439dd41d166d7acdfbf0562359786 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2666.txt @@ -0,0 +1,2 @@ +insulator 82 383 997 530 +insulator 615 1 907 35 diff --git a/contrib/insualtorDetection/ground-truth1/2667.txt b/contrib/insualtorDetection/ground-truth1/2667.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae2e222a29bd181514e287ff0063831199552fe4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2667.txt @@ -0,0 +1,2 @@ +insulator 101 371 1046 493 +insulator 761 688 943 732 diff --git a/contrib/insualtorDetection/ground-truth1/2678.txt b/contrib/insualtorDetection/ground-truth1/2678.txt new file mode 100644 index 0000000000000000000000000000000000000000..088fa54b6435586e045472158603e96737a7b4e7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2678.txt @@ -0,0 +1,2 @@ +insulator 182 442 997 588 +insulator 438 1 784 71 diff --git a/contrib/insualtorDetection/ground-truth1/2682.txt b/contrib/insualtorDetection/ground-truth1/2682.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1327c6a0b1b314f9107bf73e4e85a0ed8fd980b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2682.txt @@ -0,0 +1,6 @@ +insulator 236 538 1034 753 +insulator 768 460 1021 517 +insulator 881 1 1152 62 +insulator 251 575 1022 748 +insulator 139 537 423 608 +insulator 33 21 382 56 diff --git a/contrib/insualtorDetection/ground-truth1/2690.txt b/contrib/insualtorDetection/ground-truth1/2690.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a36848675197734c071ab5c5761e47eb278c18 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2690.txt @@ -0,0 +1,2 @@ +insulator 327 373 1096 560 +insulator 578 52 829 102 diff --git a/contrib/insualtorDetection/ground-truth1/2708.txt b/contrib/insualtorDetection/ground-truth1/2708.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a796a7a742d65434622c57c37fa0c0b8a29e9d0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2708.txt @@ -0,0 +1 @@ +insulator 158 381 766 476 diff --git a/contrib/insualtorDetection/ground-truth1/2729.txt b/contrib/insualtorDetection/ground-truth1/2729.txt new file mode 100644 index 0000000000000000000000000000000000000000..4db84d4342d8a8631def0a7d060e3d68f441df9f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2729.txt @@ -0,0 +1,4 @@ +insulator 289 455 1348 1059 +insulator 468 546 1441 1216 +insulator 285 458 1186 1014 +insulator 598 289 1392 609 diff --git a/contrib/insualtorDetection/ground-truth1/2744.txt b/contrib/insualtorDetection/ground-truth1/2744.txt new file mode 100644 index 0000000000000000000000000000000000000000..e357e2f07e8064e921b34b3fc90a87c1435e8204 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2744.txt @@ -0,0 +1,2 @@ +insulator 76 115 1023 533 +insulator 624 281 836 375 diff --git a/contrib/insualtorDetection/ground-truth1/2752.txt b/contrib/insualtorDetection/ground-truth1/2752.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f9e2920ac762f4deca472f348e26198db000e4a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2752.txt @@ -0,0 +1,2 @@ +insulator 146 453 940 619 +insulator 724 111 1005 160 diff --git a/contrib/insualtorDetection/ground-truth1/2754.txt b/contrib/insualtorDetection/ground-truth1/2754.txt new file mode 100644 index 0000000000000000000000000000000000000000..e33097e7dbf78f432ade9579a994e7b18c7b0e56 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2754.txt @@ -0,0 +1 @@ +insulator 181 347 1005 480 diff --git a/contrib/insualtorDetection/ground-truth1/2758.txt b/contrib/insualtorDetection/ground-truth1/2758.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0b613b887edf23be184f1a144a12e9c95c05e9f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2758.txt @@ -0,0 +1 @@ +insulator 31 531 946 622 diff --git a/contrib/insualtorDetection/ground-truth1/2761.txt b/contrib/insualtorDetection/ground-truth1/2761.txt new file mode 100644 index 0000000000000000000000000000000000000000..504c2c6948da9496a789af11dcf878da108a219b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2761.txt @@ -0,0 +1 @@ +insulator 175 182 990 438 diff --git a/contrib/insualtorDetection/ground-truth1/2770.txt b/contrib/insualtorDetection/ground-truth1/2770.txt new file mode 100644 index 0000000000000000000000000000000000000000..af62b65ebb2d281ad0b0ceea820f823aa2a441ef --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2770.txt @@ -0,0 +1,3 @@ +insulator 189 386 922 534 +insulator 89 329 392 382 +insulator 185 704 449 761 diff --git a/contrib/insualtorDetection/ground-truth1/2775.txt b/contrib/insualtorDetection/ground-truth1/2775.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb05a88635855cc5fba23143e0ae115f8da17bb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2775.txt @@ -0,0 +1,5 @@ +insulator 161 449 1212 1025 +insulator 351 217 1120 504 +insulator 416 769 1203 1599 +insulator 252 434 1139 983 +insulator 194 640 848 1355 diff --git a/contrib/insualtorDetection/ground-truth1/2779.txt b/contrib/insualtorDetection/ground-truth1/2779.txt new file mode 100644 index 0000000000000000000000000000000000000000..adec7857fdfcf358b053880121ee789cde1da34a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2779.txt @@ -0,0 +1,3 @@ +insulator 187 374 960 560 +insulator 481 467 756 537 +insulator 454 1 820 53 diff --git a/contrib/insualtorDetection/ground-truth1/2785.txt b/contrib/insualtorDetection/ground-truth1/2785.txt new file mode 100644 index 0000000000000000000000000000000000000000..50c659ab80283efb1a0f3659ebb836206e586f70 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2785.txt @@ -0,0 +1,4 @@ +insulator 212 460 777 571 +insulator 422 746 884 849 +insulator 496 268 771 314 +insulator 102 538 1006 622 diff --git a/contrib/insualtorDetection/ground-truth1/2802.txt b/contrib/insualtorDetection/ground-truth1/2802.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed03fe117bc2bb3140b1e4cfaf3197cf6b7f1220 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2802.txt @@ -0,0 +1,6 @@ +insulator 118 360 1055 864 +insulator 224 273 1305 665 +insulator 1 1 245 81 +insulator 185 488 1082 1183 +insulator 75 419 383 904 +insulator 198 725 614 1509 diff --git a/contrib/insualtorDetection/ground-truth1/2819.txt b/contrib/insualtorDetection/ground-truth1/2819.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f3fbff626db4aedb79878f923dcda49edec4842 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2819.txt @@ -0,0 +1 @@ +insulator 268 477 1139 673 diff --git a/contrib/insualtorDetection/ground-truth1/2829.txt b/contrib/insualtorDetection/ground-truth1/2829.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cf2885e238fd89db8b012600b0bd0eb4817b65 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2829.txt @@ -0,0 +1 @@ +insulator 125 313 959 421 diff --git a/contrib/insualtorDetection/ground-truth1/2830.txt b/contrib/insualtorDetection/ground-truth1/2830.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f90b0dc3ee11ea4742120f52c8818e8df9cc832 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2830.txt @@ -0,0 +1 @@ +insulator 225 276 894 453 diff --git a/contrib/insualtorDetection/ground-truth1/2832.txt b/contrib/insualtorDetection/ground-truth1/2832.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2532976dbe0d726ca23b2b21a79d16163fe3601 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2832.txt @@ -0,0 +1 @@ +insulator 280 573 908 642 diff --git a/contrib/insualtorDetection/ground-truth1/2836.txt b/contrib/insualtorDetection/ground-truth1/2836.txt new file mode 100644 index 0000000000000000000000000000000000000000..b57fed1611c2a815d881a5f1a0132f34faf25149 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2836.txt @@ -0,0 +1 @@ +insulator 59 276 994 459 diff --git a/contrib/insualtorDetection/ground-truth1/2855.txt b/contrib/insualtorDetection/ground-truth1/2855.txt new file mode 100644 index 0000000000000000000000000000000000000000..621b1af7471525f4225d9e5014329a7df7535da4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2855.txt @@ -0,0 +1 @@ +insulator 131 376 863 565 diff --git a/contrib/insualtorDetection/ground-truth1/2860.txt b/contrib/insualtorDetection/ground-truth1/2860.txt new file mode 100644 index 0000000000000000000000000000000000000000..0aa5b73c2a838565c7af795ae96cb1eac20c4880 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2860.txt @@ -0,0 +1,3 @@ +insulator 108 279 1079 363 +insulator 446 45 848 81 +insulator 457 501 757 533 diff --git a/contrib/insualtorDetection/ground-truth1/2873.txt b/contrib/insualtorDetection/ground-truth1/2873.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaa8c2e496756181516c3c3ae8e9aee2f1736b58 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2873.txt @@ -0,0 +1,2 @@ +insulator 240 332 949 573 +insulator 438 181 658 255 diff --git a/contrib/insualtorDetection/ground-truth1/2878.txt b/contrib/insualtorDetection/ground-truth1/2878.txt new file mode 100644 index 0000000000000000000000000000000000000000..547718a6157206c9033ae041d6f28faf2aee0401 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2878.txt @@ -0,0 +1,4 @@ +insulator 195 493 1360 1588 +insulator 327 155 1200 503 +insulator 259 459 1481 1599 +insulator 219 345 1440 1307 diff --git a/contrib/insualtorDetection/ground-truth1/2879.txt b/contrib/insualtorDetection/ground-truth1/2879.txt new file mode 100644 index 0000000000000000000000000000000000000000..27640863d2c2261d390ceb4b2ce8c6297577ad1d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2879.txt @@ -0,0 +1,2 @@ +insulator 176 418 1048 1178 +insulator 328 154 1211 735 diff --git a/contrib/insualtorDetection/ground-truth1/2887.txt b/contrib/insualtorDetection/ground-truth1/2887.txt new file mode 100644 index 0000000000000000000000000000000000000000..5531e1fae30ebdcb8c59cba98ce90ef3c453459f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2887.txt @@ -0,0 +1,2 @@ +insulator 323 410 922 467 +insulator 481 126 879 174 diff --git a/contrib/insualtorDetection/ground-truth1/2893.txt b/contrib/insualtorDetection/ground-truth1/2893.txt new file mode 100644 index 0000000000000000000000000000000000000000..140e40ffe302b6c9952c665c138ad91983ae300d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2893.txt @@ -0,0 +1,2 @@ +insulator 162 403 1156 1051 +insulator 40 267 1068 791 diff --git a/contrib/insualtorDetection/ground-truth1/2898.txt b/contrib/insualtorDetection/ground-truth1/2898.txt new file mode 100644 index 0000000000000000000000000000000000000000..10623aea2d4395d26ed756a6a1c2f8c9fffaa439 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2898.txt @@ -0,0 +1,2 @@ +insulator 331 288 1059 670 +insulator 439 188 652 245 diff --git a/contrib/insualtorDetection/ground-truth1/2899.txt b/contrib/insualtorDetection/ground-truth1/2899.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4e5acdd52d98ca91680d4f0e67626d9564fd3f9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2899.txt @@ -0,0 +1,2 @@ +insulator 158 501 987 688 +insulator 21 358 944 458 diff --git a/contrib/insualtorDetection/ground-truth1/2901.txt b/contrib/insualtorDetection/ground-truth1/2901.txt new file mode 100644 index 0000000000000000000000000000000000000000..cba03141ab76d0e4d9958424864b3f4527574161 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2901.txt @@ -0,0 +1 @@ +insulator 167 425 995 597 diff --git a/contrib/insualtorDetection/ground-truth1/2928.txt b/contrib/insualtorDetection/ground-truth1/2928.txt new file mode 100644 index 0000000000000000000000000000000000000000..93871ec59117e2b59bbbe9399aff7d446aa543fe --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2928.txt @@ -0,0 +1 @@ +insulator 255 207 981 626 diff --git a/contrib/insualtorDetection/ground-truth1/2933.txt b/contrib/insualtorDetection/ground-truth1/2933.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb786c34d97e1048f2c0f260ffa6a1cb8000a64 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2933.txt @@ -0,0 +1,2 @@ +insulator 151 409 1086 1015 +insulator 268 519 1012 1131 diff --git a/contrib/insualtorDetection/ground-truth1/2936.txt b/contrib/insualtorDetection/ground-truth1/2936.txt new file mode 100644 index 0000000000000000000000000000000000000000..151e08bb99d0065dd41d9e9e17c24a4e356ca043 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2936.txt @@ -0,0 +1,2 @@ +insulator 42 389 1009 537 +insulator 528 124 1047 201 diff --git a/contrib/insualtorDetection/ground-truth1/2937.txt b/contrib/insualtorDetection/ground-truth1/2937.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce779f81133902b794762f40a03d0f22fbee8289 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2937.txt @@ -0,0 +1,2 @@ +insulator 222 450 994 524 +insulator 265 101 496 145 diff --git a/contrib/insualtorDetection/ground-truth1/2956.txt b/contrib/insualtorDetection/ground-truth1/2956.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7b71e617bf0e2edb3b58496aa000208e85fce1b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2956.txt @@ -0,0 +1,3 @@ +insulator 191 538 1001 650 +insulator 137 785 700 864 +insulator 949 690 1152 830 diff --git a/contrib/insualtorDetection/ground-truth1/2964.txt b/contrib/insualtorDetection/ground-truth1/2964.txt new file mode 100644 index 0000000000000000000000000000000000000000..552eccee616fa4bbc40f1c3dce39c8fdfbff5619 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2964.txt @@ -0,0 +1,2 @@ +insulator 29 400 922 550 +insulator 414 64 770 148 diff --git a/contrib/insualtorDetection/ground-truth1/2966.txt b/contrib/insualtorDetection/ground-truth1/2966.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c4e868910014e7547ba066726a054c99bb94a49 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2966.txt @@ -0,0 +1 @@ +insulator 303 449 859 535 diff --git a/contrib/insualtorDetection/ground-truth1/2970.txt b/contrib/insualtorDetection/ground-truth1/2970.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d31afb11dc58d78c01564b565a71df292a8aa5c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2970.txt @@ -0,0 +1 @@ +insulator 133 412 932 543 diff --git a/contrib/insualtorDetection/ground-truth1/2976.txt b/contrib/insualtorDetection/ground-truth1/2976.txt new file mode 100644 index 0000000000000000000000000000000000000000..c91ad5cd8faf5e18dc4ff61d0c8a51658f728182 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2976.txt @@ -0,0 +1,2 @@ +insulator 396 400 1338 928 +insulator 153 426 1217 1056 diff --git a/contrib/insualtorDetection/ground-truth1/2983.txt b/contrib/insualtorDetection/ground-truth1/2983.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3c0ae1889cdf9fae345996b4e5a5abe72811aa0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2983.txt @@ -0,0 +1 @@ +insulator 175 510 987 595 diff --git a/contrib/insualtorDetection/ground-truth1/2984.txt b/contrib/insualtorDetection/ground-truth1/2984.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6bd89cdd6ef05a0a9bc0a3937ca1578971283b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2984.txt @@ -0,0 +1 @@ +insulator 167 273 996 558 diff --git a/contrib/insualtorDetection/ground-truth1/2990.txt b/contrib/insualtorDetection/ground-truth1/2990.txt new file mode 100644 index 0000000000000000000000000000000000000000..897a04d3f16eb7fef179657c99fdd06c0f36bce3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2990.txt @@ -0,0 +1,3 @@ +insulator 194 345 1017 452 +insulator 1 49 429 118 +insulator 79 555 432 620 diff --git a/contrib/insualtorDetection/ground-truth1/2993.txt b/contrib/insualtorDetection/ground-truth1/2993.txt new file mode 100644 index 0000000000000000000000000000000000000000..62796a7cbc62f3ea478eb1478723771f8622760d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/2993.txt @@ -0,0 +1,2 @@ +insulator 201 376 994 628 +insulator 761 23 1134 146 diff --git a/contrib/insualtorDetection/ground-truth1/3002.txt b/contrib/insualtorDetection/ground-truth1/3002.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c9a3b136a10dbebe748013164d2649589d215d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3002.txt @@ -0,0 +1,3 @@ +insulator 174 400 982 502 +insulator 397 356 650 397 +insulator 396 713 626 743 diff --git a/contrib/insualtorDetection/ground-truth1/3003.txt b/contrib/insualtorDetection/ground-truth1/3003.txt new file mode 100644 index 0000000000000000000000000000000000000000..324c0b3b17dbcfc764a87ff36a0eff2ef12fc894 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3003.txt @@ -0,0 +1,4 @@ +insulator 177 562 970 634 +insulator 158 211 601 275 +insulator 181 477 987 768 +insulator 679 103 993 190 diff --git a/contrib/insualtorDetection/ground-truth1/3016.txt b/contrib/insualtorDetection/ground-truth1/3016.txt new file mode 100644 index 0000000000000000000000000000000000000000..38b6ead002db48fbc632d8c685b679adff157450 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3016.txt @@ -0,0 +1 @@ +insulator 160 320 864 412 diff --git a/contrib/insualtorDetection/ground-truth1/3019.txt b/contrib/insualtorDetection/ground-truth1/3019.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d4766904abe9fbcdc62316ae02a293c405c982a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3019.txt @@ -0,0 +1 @@ +insulator 204 280 914 415 diff --git a/contrib/insualtorDetection/ground-truth1/3024.txt b/contrib/insualtorDetection/ground-truth1/3024.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d788577ed4539232a91c6e3f4ac300fffba84f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3024.txt @@ -0,0 +1 @@ +insulator 167 446 961 583 diff --git a/contrib/insualtorDetection/ground-truth1/3030.txt b/contrib/insualtorDetection/ground-truth1/3030.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd677ea27e8dd4c3ca4e3b39ac709a29be3853ee --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3030.txt @@ -0,0 +1,3 @@ +insulator 162 402 937 531 +insulator 137 92 507 163 +insulator 232 557 508 607 diff --git a/contrib/insualtorDetection/ground-truth1/3043.txt b/contrib/insualtorDetection/ground-truth1/3043.txt new file mode 100644 index 0000000000000000000000000000000000000000..bee2faf2069f0a1c6fce44c3b51f57ea563c808d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3043.txt @@ -0,0 +1 @@ +insulator 279 427 861 552 diff --git a/contrib/insualtorDetection/ground-truth1/3044.txt b/contrib/insualtorDetection/ground-truth1/3044.txt new file mode 100644 index 0000000000000000000000000000000000000000..62728a22da56d8f28277e129d7630d9187ad439b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3044.txt @@ -0,0 +1,2 @@ +insulator 349 474 907 568 +insulator 601 695 1055 784 diff --git a/contrib/insualtorDetection/ground-truth1/3047.txt b/contrib/insualtorDetection/ground-truth1/3047.txt new file mode 100644 index 0000000000000000000000000000000000000000..98653224e256209fd8c8ed3a31c6aa4dad560464 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3047.txt @@ -0,0 +1,2 @@ +insulator 125 428 1190 1034 +insulator 86 440 1076 1007 diff --git a/contrib/insualtorDetection/ground-truth1/3048.txt b/contrib/insualtorDetection/ground-truth1/3048.txt new file mode 100644 index 0000000000000000000000000000000000000000..627d81d15f491a3833ad36b1c019348a0fb786cd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3048.txt @@ -0,0 +1 @@ +insulator 200 478 973 703 diff --git a/contrib/insualtorDetection/ground-truth1/3066.txt b/contrib/insualtorDetection/ground-truth1/3066.txt new file mode 100644 index 0000000000000000000000000000000000000000..f58eb1cddb3224933e90823e16fd9711a4d56742 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3066.txt @@ -0,0 +1,3 @@ +insulator 158 521 903 625 +insulator 397 517 603 547 +insulator 372 118 615 139 diff --git a/contrib/insualtorDetection/ground-truth1/3070.txt b/contrib/insualtorDetection/ground-truth1/3070.txt new file mode 100644 index 0000000000000000000000000000000000000000..186f4bb2bca3f159d27aa6a03be7bed469b8bfbd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3070.txt @@ -0,0 +1,3 @@ +insulator 251 516 1116 1097 +insulator 45 464 1012 1178 +insulator 710 16 1822 149 diff --git a/contrib/insualtorDetection/ground-truth1/3072.txt b/contrib/insualtorDetection/ground-truth1/3072.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d84a3fb91ad079d0191ea3c56ce1b36a2c7367 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3072.txt @@ -0,0 +1,3 @@ +insulator 129 510 987 1294 +insulator 165 297 1201 694 +insulator 675 47 1622 132 diff --git a/contrib/insualtorDetection/ground-truth1/3075.txt b/contrib/insualtorDetection/ground-truth1/3075.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9fe7496001a59f79c9c2e7c25f7daa690161b7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3075.txt @@ -0,0 +1,3 @@ +insulator 207 476 1201 1027 +insulator 182 454 1167 1055 +insulator 947 1 2099 34 diff --git a/contrib/insualtorDetection/ground-truth1/3092.txt b/contrib/insualtorDetection/ground-truth1/3092.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4cc84e9a73b038b2f41d6c3f46e25985544c077 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3092.txt @@ -0,0 +1,2 @@ +insulator 168 539 997 658 +insulator 200 181 444 224 diff --git a/contrib/insualtorDetection/ground-truth1/3093.txt b/contrib/insualtorDetection/ground-truth1/3093.txt new file mode 100644 index 0000000000000000000000000000000000000000..e48de97445d690080005a68644c6127543a0b7c0 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3093.txt @@ -0,0 +1,3 @@ +insulator 504 476 977 757 +insulator 448 508 654 623 +insulator 376 78 658 156 diff --git a/contrib/insualtorDetection/ground-truth1/3097.txt b/contrib/insualtorDetection/ground-truth1/3097.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c5c1e82d05ba35ba4ba670e278b236698def3e1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3097.txt @@ -0,0 +1,5 @@ +insulator 37 483 1035 598 +insulator 456 491 731 516 +insulator 381 73 764 129 +insulator 8 468 804 663 +insulator 59 118 380 204 diff --git a/contrib/insualtorDetection/ground-truth1/3109.txt b/contrib/insualtorDetection/ground-truth1/3109.txt new file mode 100644 index 0000000000000000000000000000000000000000..467d757be9b20a9178a713b1b03d338dd3f1397f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3109.txt @@ -0,0 +1,2 @@ +insulator 490 111 794 171 +insulator 163 603 1111 758 diff --git a/contrib/insualtorDetection/ground-truth1/3114.txt b/contrib/insualtorDetection/ground-truth1/3114.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f352dc10dd089fc6f06f24a6a83071273e727a5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3114.txt @@ -0,0 +1 @@ +insulator 186 376 1000 609 diff --git a/contrib/insualtorDetection/ground-truth1/3140.txt b/contrib/insualtorDetection/ground-truth1/3140.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a74e0a5d6b4cb01fbd9d8febda298c1eeca0dd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3140.txt @@ -0,0 +1,3 @@ +insulator 149 552 978 703 +insulator 182 474 377 507 +insulator 129 116 380 163 diff --git a/contrib/insualtorDetection/ground-truth1/3144.txt b/contrib/insualtorDetection/ground-truth1/3144.txt new file mode 100644 index 0000000000000000000000000000000000000000..2edffb01ba4ecfc390992629001f4583f36d7f1f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3144.txt @@ -0,0 +1,2 @@ +insulator 106 312 843 641 +insulator 859 194 1151 303 diff --git a/contrib/insualtorDetection/ground-truth1/3145.txt b/contrib/insualtorDetection/ground-truth1/3145.txt new file mode 100644 index 0000000000000000000000000000000000000000..1939433296da35d827212780da79b0293d670824 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3145.txt @@ -0,0 +1,3 @@ +insulator 101 212 815 641 +insulator 164 427 844 577 +insulator 932 57 1105 276 diff --git a/contrib/insualtorDetection/ground-truth1/3157.txt b/contrib/insualtorDetection/ground-truth1/3157.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e76bc2d00d83860f30606bd0484e96e455b69e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3157.txt @@ -0,0 +1 @@ +insulator 117 258 1017 479 diff --git a/contrib/insualtorDetection/ground-truth1/3161.txt b/contrib/insualtorDetection/ground-truth1/3161.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bb5c3aff5db3ee6e8b4a9b096f4f3a7a2ea9750 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3161.txt @@ -0,0 +1,2 @@ +insulator 181 460 974 579 +insulator 446 117 703 153 diff --git a/contrib/insualtorDetection/ground-truth1/3163.txt b/contrib/insualtorDetection/ground-truth1/3163.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52183ca0977ac1ea41dce3ac387f1930fc502f9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3163.txt @@ -0,0 +1,2 @@ +insulator 51 574 954 673 +insulator 1 230 170 271 diff --git a/contrib/insualtorDetection/ground-truth1/3169.txt b/contrib/insualtorDetection/ground-truth1/3169.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8f163001d073860472f665187188899be0d9246 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3169.txt @@ -0,0 +1,2 @@ +insulator 251 447 770 539 +insulator 344 603 683 681 diff --git a/contrib/insualtorDetection/ground-truth1/3173.txt b/contrib/insualtorDetection/ground-truth1/3173.txt new file mode 100644 index 0000000000000000000000000000000000000000..03a93cb5b3c02e730ceb2ec38c15c034eda0a4b6 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3173.txt @@ -0,0 +1,2 @@ +insulator 165 380 1166 985 +insulator 171 442 1053 995 diff --git a/contrib/insualtorDetection/ground-truth1/3182.txt b/contrib/insualtorDetection/ground-truth1/3182.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3c7ecfb9d1fb3b0a99ca98b8a85fa0257f04658 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3182.txt @@ -0,0 +1,2 @@ +insulator 181 403 1008 585 +insulator 515 27 745 76 diff --git a/contrib/insualtorDetection/ground-truth1/3184.txt b/contrib/insualtorDetection/ground-truth1/3184.txt new file mode 100644 index 0000000000000000000000000000000000000000..58351f18f87fbb018a37b979fa755d5595a2379f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3184.txt @@ -0,0 +1,3 @@ +insulator 181 436 884 611 +insulator 247 58 463 102 +insulator 279 421 475 469 diff --git a/contrib/insualtorDetection/ground-truth1/3195.txt b/contrib/insualtorDetection/ground-truth1/3195.txt new file mode 100644 index 0000000000000000000000000000000000000000..43ab5ca9ee1692a368280e9940da5c7224927e0f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3195.txt @@ -0,0 +1 @@ +insulator 87 286 852 518 diff --git a/contrib/insualtorDetection/ground-truth1/3200.txt b/contrib/insualtorDetection/ground-truth1/3200.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d6e38ccb52c9b9012f58183710af185fef4b3af --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3200.txt @@ -0,0 +1,4 @@ +insulator 191 471 995 603 +insulator 357 1 721 53 +insulator 200 482 1001 581 +insulator 645 35 947 81 diff --git a/contrib/insualtorDetection/ground-truth1/3207.txt b/contrib/insualtorDetection/ground-truth1/3207.txt new file mode 100644 index 0000000000000000000000000000000000000000..9540bb388b4c768b29c97c5a8c1d1daaa45f450a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3207.txt @@ -0,0 +1 @@ +insulator 93 365 940 531 diff --git a/contrib/insualtorDetection/ground-truth1/3218.txt b/contrib/insualtorDetection/ground-truth1/3218.txt new file mode 100644 index 0000000000000000000000000000000000000000..a613aed8b7d3a7bec592e9ee9e064ab332389608 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3218.txt @@ -0,0 +1,3 @@ +insulator 205 339 1069 607 +insulator 858 76 1152 159 +insulator 736 693 931 761 diff --git a/contrib/insualtorDetection/ground-truth1/3222.txt b/contrib/insualtorDetection/ground-truth1/3222.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f8ca97b5957b1ea51cf6b73d9af311312bcac30 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3222.txt @@ -0,0 +1,2 @@ +insulator 1 543 1140 691 +insulator 722 286 1152 345 diff --git a/contrib/insualtorDetection/ground-truth1/3229.txt b/contrib/insualtorDetection/ground-truth1/3229.txt new file mode 100644 index 0000000000000000000000000000000000000000..96d92a1078f7dae995f6b7ab643ca3aeb1ecb596 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3229.txt @@ -0,0 +1 @@ +insulator 74 357 1086 610 diff --git a/contrib/insualtorDetection/ground-truth1/3234.txt b/contrib/insualtorDetection/ground-truth1/3234.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aa46f41c47472df9df7e003bd55cc5352ed3bcf --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3234.txt @@ -0,0 +1 @@ +insulator 192 408 939 586 diff --git a/contrib/insualtorDetection/ground-truth1/3239.txt b/contrib/insualtorDetection/ground-truth1/3239.txt new file mode 100644 index 0000000000000000000000000000000000000000..e07d27bba9fa56a98b3ac3d0c9bfc6890300e0de --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3239.txt @@ -0,0 +1,4 @@ +insulator 238 300 1229 847 +insulator 14 319 346 725 +insulator 117 724 522 1543 +insulator 146 376 1103 922 diff --git a/contrib/insualtorDetection/ground-truth1/3243.txt b/contrib/insualtorDetection/ground-truth1/3243.txt new file mode 100644 index 0000000000000000000000000000000000000000..66ede8e9443e09ebcb2074c564953d1367b2695a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3243.txt @@ -0,0 +1,4 @@ +insulator 11 269 850 655 +insulator 344 642 702 816 +insulator 1 653 213 796 +insulator 496 44 698 127 diff --git a/contrib/insualtorDetection/ground-truth1/3251.txt b/contrib/insualtorDetection/ground-truth1/3251.txt new file mode 100644 index 0000000000000000000000000000000000000000..24716c4048600457864a85c06bf20a4c36757d1b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3251.txt @@ -0,0 +1,2 @@ +insulator 148 357 972 508 +insulator 122 374 907 697 diff --git a/contrib/insualtorDetection/ground-truth1/3254.txt b/contrib/insualtorDetection/ground-truth1/3254.txt new file mode 100644 index 0000000000000000000000000000000000000000..caa1ee9f8c5c27043745fa6b377c28f9649fab0c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3254.txt @@ -0,0 +1,2 @@ +insulator 66 459 994 624 +insulator 534 235 921 288 diff --git a/contrib/insualtorDetection/ground-truth1/3280.txt b/contrib/insualtorDetection/ground-truth1/3280.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ee96790d1e2606afa52518b727c24551e057ce2 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3280.txt @@ -0,0 +1 @@ +insulator 230 246 897 423 diff --git a/contrib/insualtorDetection/ground-truth1/3284.txt b/contrib/insualtorDetection/ground-truth1/3284.txt new file mode 100644 index 0000000000000000000000000000000000000000..615ded34687a521a030204687e2b298d3d56bc29 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3284.txt @@ -0,0 +1,2 @@ +insulator 221 381 872 453 +insulator 423 20 751 79 diff --git a/contrib/insualtorDetection/ground-truth1/3296.txt b/contrib/insualtorDetection/ground-truth1/3296.txt new file mode 100644 index 0000000000000000000000000000000000000000..a67c804a1fa2b692c09b480d8f889b2cf57ea351 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3296.txt @@ -0,0 +1,2 @@ +insulator 82 468 962 648 +insulator 15 395 1035 469 diff --git a/contrib/insualtorDetection/ground-truth1/3299.txt b/contrib/insualtorDetection/ground-truth1/3299.txt new file mode 100644 index 0000000000000000000000000000000000000000..327178b4d4ec7d5a6398d2938bae2f154b2caa6a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3299.txt @@ -0,0 +1,2 @@ +insulator 166 404 977 606 +insulator 646 254 867 315 diff --git a/contrib/insualtorDetection/ground-truth1/3309.txt b/contrib/insualtorDetection/ground-truth1/3309.txt new file mode 100644 index 0000000000000000000000000000000000000000..65cc3dac597f11b80f80ae37a17f4499b43d369f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3309.txt @@ -0,0 +1,4 @@ +insulator 79 345 938 436 +insulator 315 479 1121 652 +insulator 944 1 1122 28 +insulator 711 9 845 43 diff --git a/contrib/insualtorDetection/ground-truth1/3313.txt b/contrib/insualtorDetection/ground-truth1/3313.txt new file mode 100644 index 0000000000000000000000000000000000000000..d990e06e16bb65d6926f77f8007a0a0616d060cb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3313.txt @@ -0,0 +1,4 @@ +insulator 42 448 933 571 +insulator 457 68 725 95 +insulator 149 325 841 623 +insulator 142 437 456 570 diff --git a/contrib/insualtorDetection/ground-truth1/3326.txt b/contrib/insualtorDetection/ground-truth1/3326.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bb60edf9c1524a1f4122adcba72e0bc89319360 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3326.txt @@ -0,0 +1,3 @@ +insulator 248 446 1097 561 +insulator 665 245 892 277 +insulator 163 381 1001 584 diff --git a/contrib/insualtorDetection/ground-truth1/3352.txt b/contrib/insualtorDetection/ground-truth1/3352.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed6f95085ae067b89ec28ff9803d28b824682523 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3352.txt @@ -0,0 +1,5 @@ +insulator 274 108 925 310 +insulator 412 336 1351 763 +insulator 19 670 339 1385 +insulator 71 236 1018 749 +insulator 137 170 576 436 diff --git a/contrib/insualtorDetection/ground-truth1/3357.txt b/contrib/insualtorDetection/ground-truth1/3357.txt new file mode 100644 index 0000000000000000000000000000000000000000..70b52e6f271b5c67ee59b6ba34d0bfecc6aec0ee --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3357.txt @@ -0,0 +1 @@ +insulator 220 441 955 657 diff --git a/contrib/insualtorDetection/ground-truth1/3363.txt b/contrib/insualtorDetection/ground-truth1/3363.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb22230ba653474f76d9239997998b36c0fb8c9f --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3363.txt @@ -0,0 +1,2 @@ +insulator 208 394 953 556 +insulator 496 74 788 134 diff --git a/contrib/insualtorDetection/ground-truth1/3366.txt b/contrib/insualtorDetection/ground-truth1/3366.txt new file mode 100644 index 0000000000000000000000000000000000000000..60849cc331b3f8b2083c2705f67625ce26091972 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3366.txt @@ -0,0 +1,3 @@ +insulator 204 453 1259 1131 +insulator 562 258 1357 563 +insulator 1 433 908 950 diff --git a/contrib/insualtorDetection/ground-truth1/3369.txt b/contrib/insualtorDetection/ground-truth1/3369.txt new file mode 100644 index 0000000000000000000000000000000000000000..da7d379f6ac4439c67333d02512cce2f244b31ff --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3369.txt @@ -0,0 +1,3 @@ +insulator 182 272 967 424 +insulator 476 666 692 716 +insulator 342 67 987 756 diff --git a/contrib/insualtorDetection/ground-truth1/3378.txt b/contrib/insualtorDetection/ground-truth1/3378.txt new file mode 100644 index 0000000000000000000000000000000000000000..00f8a8f5d1184e87565f024a7aa66a1214eed69b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3378.txt @@ -0,0 +1,3 @@ +insulator 76 364 1020 867 +insulator 196 503 1209 1098 +insulator 157 95 674 248 diff --git a/contrib/insualtorDetection/ground-truth1/3388.txt b/contrib/insualtorDetection/ground-truth1/3388.txt new file mode 100644 index 0000000000000000000000000000000000000000..90d9e822b6d7f1c7604e6bab936f4be7a9c4e466 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3388.txt @@ -0,0 +1,2 @@ +insulator 261 352 1183 837 +insulator 182 344 1069 886 diff --git a/contrib/insualtorDetection/ground-truth1/3392.txt b/contrib/insualtorDetection/ground-truth1/3392.txt new file mode 100644 index 0000000000000000000000000000000000000000..00768c8dad0b9ec51f3d38beb1ec3433b58de4eb --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3392.txt @@ -0,0 +1,2 @@ +insulator 158 230 981 556 +insulator 708 142 932 224 diff --git a/contrib/insualtorDetection/ground-truth1/3399.txt b/contrib/insualtorDetection/ground-truth1/3399.txt new file mode 100644 index 0000000000000000000000000000000000000000..be46cadc47ba8d286671e6c08db7e14589b1f08e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3399.txt @@ -0,0 +1,3 @@ +insulator 214 476 957 680 +insulator 567 230 873 304 +insulator 572 632 808 690 diff --git a/contrib/insualtorDetection/ground-truth1/3401.txt b/contrib/insualtorDetection/ground-truth1/3401.txt new file mode 100644 index 0000000000000000000000000000000000000000..12248596c64d53d6e822d3263ebbe1e97c52fcd7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3401.txt @@ -0,0 +1,7 @@ +insulator 94 343 1041 1191 +insulator 597 1 2117 94 +insulator 52 415 895 1385 +insulator 55 405 1166 1335 +insulator 320 734 1212 2235 +insulator 254 389 1045 1215 +insulator 297 1 1116 45 diff --git a/contrib/insualtorDetection/ground-truth1/3406.txt b/contrib/insualtorDetection/ground-truth1/3406.txt new file mode 100644 index 0000000000000000000000000000000000000000..8038554287c7a36d6a5977f3efe22ea3f651bc32 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3406.txt @@ -0,0 +1,2 @@ +insulator 161 288 895 445 +insulator 208 198 519 271 diff --git a/contrib/insualtorDetection/ground-truth1/3414.txt b/contrib/insualtorDetection/ground-truth1/3414.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef069889ef4fc0de6836409be058d9d3b88f070e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3414.txt @@ -0,0 +1,8 @@ +insulator 235 303 1512 1294 +insulator 362 549 1276 1746 +insulator 283 271 1078 917 +insulator 222 316 1330 1062 +insulator 342 11 1258 70 +insulator 227 472 1591 1605 +insulator 204 636 805 1945 +insulator 106 170 531 554 diff --git a/contrib/insualtorDetection/ground-truth1/3416.txt b/contrib/insualtorDetection/ground-truth1/3416.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd61b839a5edaece93252712aba20657238793f5 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3416.txt @@ -0,0 +1,3 @@ +insulator 123 385 1043 949 +insulator 843 146 1995 360 +insulator 131 442 928 1109 diff --git a/contrib/insualtorDetection/ground-truth1/3417.txt b/contrib/insualtorDetection/ground-truth1/3417.txt new file mode 100644 index 0000000000000000000000000000000000000000..a77a11e5c134581ac3187882e4b262f2030102ae --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3417.txt @@ -0,0 +1 @@ +insulator 122 263 1078 621 diff --git a/contrib/insualtorDetection/ground-truth1/3418.txt b/contrib/insualtorDetection/ground-truth1/3418.txt new file mode 100644 index 0000000000000000000000000000000000000000..009e90cafbd841dfed727919a38e5e3134a5fb42 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3418.txt @@ -0,0 +1 @@ +insulator 150 331 1079 484 diff --git a/contrib/insualtorDetection/ground-truth1/3424.txt b/contrib/insualtorDetection/ground-truth1/3424.txt new file mode 100644 index 0000000000000000000000000000000000000000..65338ef6b6d51cfc0d8f84b319b047e337dc1bb3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3424.txt @@ -0,0 +1,4 @@ +insulator 66 411 833 614 +insulator 188 420 1137 690 +insulator 661 9 1152 105 +insulator 148 458 1035 556 diff --git a/contrib/insualtorDetection/ground-truth1/3425.txt b/contrib/insualtorDetection/ground-truth1/3425.txt new file mode 100644 index 0000000000000000000000000000000000000000..446cef3482463f4ec8681ae9605fd9ba18866d1e --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3425.txt @@ -0,0 +1,5 @@ +insulator 299 516 697 687 +insulator 1 253 250 304 +insulator 243 486 1061 671 +insulator 912 500 1152 569 +insulator 977 84 1152 134 diff --git a/contrib/insualtorDetection/ground-truth1/3430.txt b/contrib/insualtorDetection/ground-truth1/3430.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9782a4a695c9be266d3b0f36e26b7991342c304 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3430.txt @@ -0,0 +1,2 @@ +insulator 79 409 887 552 +insulator 75 125 372 178 diff --git a/contrib/insualtorDetection/ground-truth1/3432.txt b/contrib/insualtorDetection/ground-truth1/3432.txt new file mode 100644 index 0000000000000000000000000000000000000000..581e76c81be2ef61a02e4d1825e7ebbdceb3240c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3432.txt @@ -0,0 +1 @@ +insulator 281 353 1064 517 diff --git a/contrib/insualtorDetection/ground-truth1/3438.txt b/contrib/insualtorDetection/ground-truth1/3438.txt new file mode 100644 index 0000000000000000000000000000000000000000..e08d9c45159af8cf78faf931f31540589b83f705 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3438.txt @@ -0,0 +1 @@ +insulator 225 294 969 467 diff --git a/contrib/insualtorDetection/ground-truth1/3449.txt b/contrib/insualtorDetection/ground-truth1/3449.txt new file mode 100644 index 0000000000000000000000000000000000000000..e28bb856a40cd624b308b276c5aa4ce8951da940 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3449.txt @@ -0,0 +1,2 @@ +insulator 182 413 821 753 +insulator 379 1 612 76 diff --git a/contrib/insualtorDetection/ground-truth1/3457.txt b/contrib/insualtorDetection/ground-truth1/3457.txt new file mode 100644 index 0000000000000000000000000000000000000000..e675f6c76a4b64c11b965c3a8d1d95352c694371 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3457.txt @@ -0,0 +1,2 @@ +insulator 113 445 1115 546 +insulator 878 302 1152 337 diff --git a/contrib/insualtorDetection/ground-truth1/3459.txt b/contrib/insualtorDetection/ground-truth1/3459.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a79eb3ed0fef6a03800ce04631d234b15e6850a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3459.txt @@ -0,0 +1,5 @@ +insulator 236 578 929 683 +insulator 331 361 637 424 +insulator 105 338 955 503 +insulator 104 511 921 677 +insulator 281 326 559 381 diff --git a/contrib/insualtorDetection/ground-truth1/3468.txt b/contrib/insualtorDetection/ground-truth1/3468.txt new file mode 100644 index 0000000000000000000000000000000000000000..320a89e60198645339d853e832e1c03179430fa9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3468.txt @@ -0,0 +1,2 @@ +insulator 70 377 822 518 +insulator 256 3 657 72 diff --git a/contrib/insualtorDetection/ground-truth1/3485.txt b/contrib/insualtorDetection/ground-truth1/3485.txt new file mode 100644 index 0000000000000000000000000000000000000000..f50bf9a200233f77621c6f46a16106c0f852332a --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3485.txt @@ -0,0 +1,2 @@ +insulator 127 306 1152 627 +insulator 165 610 554 724 diff --git a/contrib/insualtorDetection/ground-truth1/3495.txt b/contrib/insualtorDetection/ground-truth1/3495.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dc2d53be5d5862361199eec94c68823764395b1 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3495.txt @@ -0,0 +1,4 @@ +insulator 173 354 1134 843 +insulator 527 323 1316 694 +insulator 560 690 1347 1421 +insulator 140 240 1053 739 diff --git a/contrib/insualtorDetection/ground-truth1/3501.txt b/contrib/insualtorDetection/ground-truth1/3501.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7ff2165f3268df2091a5457586f9fe61bb8b7b3 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3501.txt @@ -0,0 +1,3 @@ +insulator 287 365 787 474 +insulator 82 331 997 536 +insulator 399 108 629 165 diff --git a/contrib/insualtorDetection/ground-truth1/3506.txt b/contrib/insualtorDetection/ground-truth1/3506.txt new file mode 100644 index 0000000000000000000000000000000000000000..2412d83f14b0b891acce701a8767361a14e1b2d7 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3506.txt @@ -0,0 +1,4 @@ +insulator 197 313 1088 857 +insulator 566 226 1400 531 +insulator 94 460 1014 1011 +insulator 423 380 1121 792 diff --git a/contrib/insualtorDetection/ground-truth1/3516.txt b/contrib/insualtorDetection/ground-truth1/3516.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fa245ee4623ef2bcbdfd7a7e80804d825c99933 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3516.txt @@ -0,0 +1 @@ +insulator 201 388 962 623 diff --git a/contrib/insualtorDetection/ground-truth1/3519.txt b/contrib/insualtorDetection/ground-truth1/3519.txt new file mode 100644 index 0000000000000000000000000000000000000000..49e72f1742eeaa0887d070588bd9242449f4c1d9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3519.txt @@ -0,0 +1 @@ +insulator 195 460 991 694 diff --git a/contrib/insualtorDetection/ground-truth1/3527.txt b/contrib/insualtorDetection/ground-truth1/3527.txt new file mode 100644 index 0000000000000000000000000000000000000000..c95ac2a76d0219d3d90a81fe0c6747e4a0e41afd --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3527.txt @@ -0,0 +1,9 @@ +insulator 120 510 907 758 +insulator 58 205 369 288 +insulator 123 791 372 863 +insulator 192 488 913 673 +insulator 707 417 931 474 +insulator 738 14 1041 85 +insulator 658 735 865 794 +insulator 381 367 943 553 +insulator 158 215 489 293 diff --git a/contrib/insualtorDetection/ground-truth1/3535.txt b/contrib/insualtorDetection/ground-truth1/3535.txt new file mode 100644 index 0000000000000000000000000000000000000000..e68bd30662e7d766951f06f2f99165223c8f67df --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3535.txt @@ -0,0 +1,3 @@ +insulator 188 362 1018 474 +insulator 698 79 994 128 +insulator 670 581 943 623 diff --git a/contrib/insualtorDetection/ground-truth1/3539.txt b/contrib/insualtorDetection/ground-truth1/3539.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cd7c98f5a25994929f9f7a67071c09d29bc6932 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3539.txt @@ -0,0 +1,4 @@ +insulator 199 403 960 691 +insulator 729 38 1139 134 +insulator 140 329 961 515 +insulator 1 272 366 336 diff --git a/contrib/insualtorDetection/ground-truth1/3546.txt b/contrib/insualtorDetection/ground-truth1/3546.txt new file mode 100644 index 0000000000000000000000000000000000000000..d842a0424318dea1ae4866af3424776009c54dc4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3546.txt @@ -0,0 +1,5 @@ +insulator 193 266 468 897 +insulator 496 176 1090 897 +insulator 1011 228 2077 802 +insulator 168 248 1019 697 +insulator 198 467 731 1034 diff --git a/contrib/insualtorDetection/ground-truth1/3554.txt b/contrib/insualtorDetection/ground-truth1/3554.txt new file mode 100644 index 0000000000000000000000000000000000000000..c09423e3141d8f32562d897ec286029f0a920df9 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3554.txt @@ -0,0 +1 @@ +insulator 166 448 965 553 diff --git a/contrib/insualtorDetection/ground-truth1/3559.txt b/contrib/insualtorDetection/ground-truth1/3559.txt new file mode 100644 index 0000000000000000000000000000000000000000..670041eb4baf709b6112161c00323c71974d4f7b --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3559.txt @@ -0,0 +1,3 @@ +insulator 156 424 1110 1062 +insulator 80 284 1103 772 +insulator 129 86 710 285 diff --git a/contrib/insualtorDetection/ground-truth1/3566.txt b/contrib/insualtorDetection/ground-truth1/3566.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ac6c96bda42e777e623086c05caf61c2dc6a85d --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3566.txt @@ -0,0 +1,3 @@ +insulator 237 381 1228 978 +insulator 73 48 495 195 +insulator 145 439 1067 963 diff --git a/contrib/insualtorDetection/ground-truth1/3588.txt b/contrib/insualtorDetection/ground-truth1/3588.txt new file mode 100644 index 0000000000000000000000000000000000000000..32bb21d26a474cdc47b09c36774cbf148bb5872c --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3588.txt @@ -0,0 +1,4 @@ +insulator 124 412 1027 1036 +insulator 125 1 582 90 +insulator 136 390 1116 992 +insulator 472 40 1188 142 diff --git a/contrib/insualtorDetection/ground-truth1/3598.txt b/contrib/insualtorDetection/ground-truth1/3598.txt new file mode 100644 index 0000000000000000000000000000000000000000..519bd15353bde10b51267e87e049ad494336f900 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3598.txt @@ -0,0 +1,3 @@ +insulator 223 369 957 631 +insulator 128 427 360 499 +insulator 100 15 340 55 diff --git a/contrib/insualtorDetection/ground-truth1/3616.txt b/contrib/insualtorDetection/ground-truth1/3616.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ffffc40151a12ae0f198de3688fb212d5523ae4 --- /dev/null +++ b/contrib/insualtorDetection/ground-truth1/3616.txt @@ -0,0 +1 @@ +insulator 58 331 934 505 diff --git a/contrib/insualtorDetection/image/0051.jpg b/contrib/insualtorDetection/image/0051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..841662396ee730bde7f7c0f57c1359bc2f077349 Binary files /dev/null and b/contrib/insualtorDetection/image/0051.jpg differ diff --git a/contrib/insualtorDetection/model/label.names b/contrib/insualtorDetection/model/label.names new file mode 100644 index 0000000000000000000000000000000000000000..2631caa7c5fdf2f2507f792c1f9892ecc96656ea --- /dev/null +++ b/contrib/insualtorDetection/model/label.names @@ -0,0 +1 @@ +insualtor \ No newline at end of file diff --git a/contrib/insualtorDetection/model/run.sh b/contrib/insualtorDetection/model/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..f6884994d2d6d4408838b40f2db1d7f66989877c --- /dev/null +++ b/contrib/insualtorDetection/model/run.sh @@ -0,0 +1,9 @@ + + +export install_path=/usr/local/Ascend/ascend-toolkit/latest +export PATH=/usr/local/python3.9.2/bin:${install_path}/arm64-linux/atc/ccec_compiler/bin:${install_path}/arm64-linux/atc/bin:$PATH +export PYTHONPATH=${install_path}/arm64-linux/atc/python/site-packages:${install_path}/arm64-linux/atc/python/site-packages/auto_tune.egg/auto_tune:${install_path}/arm64-linux/atc/python/site-packages/schedule_search.egg +export LD_LIBRARY_PATH=${install_path}/arm64-linux/atc/lib64:$LD_LIBRARY_PATH +export ASCEND_OPP_PATH=${install_path}/opp + +atc --output_type=FP32 --insert_op_conf=yolo_aipp.cfg --input_format=NCHW --framework=5 --model=./insualtor.onnx --input_shape="input:1,3,416,416" --output=./insualtor --soc_version=Ascend310 --enable_small_channel=1 diff --git a/contrib/insualtorDetection/model/yolo.cfg b/contrib/insualtorDetection/model/yolo.cfg new file mode 100644 index 0000000000000000000000000000000000000000..edbaa2d8accf86fe9b1c873c80cee8d5e2f0559a --- /dev/null +++ b/contrib/insualtorDetection/model/yolo.cfg @@ -0,0 +1,10 @@ +CLASS_NUM=1 +BIASES_NUM=18 +BIASES=12,16,19,36,40,28,36,75,76,55,72,146,142,110,192,243,459,401 +SCORE_THRESH=0.3 +OBJECTNESS_THRESH=0.3 +IOU_THRESH=0.45 +YOLO_TYPE=3 +ANCHOR_DIM=3 +MODEL_TYPE=1 +RESIZE_FLAG=0 \ No newline at end of file diff --git a/contrib/insualtorDetection/model/yolo_aipp.cfg b/contrib/insualtorDetection/model/yolo_aipp.cfg new file mode 100644 index 0000000000000000000000000000000000000000..0e688bf2d6f64d3af4848447902b2b9939fb33fa --- /dev/null +++ b/contrib/insualtorDetection/model/yolo_aipp.cfg @@ -0,0 +1,22 @@ +aipp_op { + aipp_mode: static + input_format : YUV420SP_U8 + csc_switch : true + rbuv_swap_switch : false + matrix_r0c0 : 256 + matrix_r0c1 : 0 + matrix_r0c2 : 359 + matrix_r1c0 : 256 + matrix_r1c1 : -88 + matrix_r1c2 : -183 + matrix_r2c0 : 256 + matrix_r2c1 : 454 + matrix_r2c2 : 0 + input_bias_0 : 0 + input_bias_1 : 128 + input_bias_2 : 128 + var_reci_chn_0 : 0.003921568627451 + var_reci_chn_1 : 0.003921568627451 + var_reci_chn_2 : 0.003921568627451 +} + diff --git a/contrib/insualtorDetection/pipeline/detect.pipeline b/contrib/insualtorDetection/pipeline/detect.pipeline new file mode 100644 index 0000000000000000000000000000000000000000..804572c9a5f5a8c412a1b6b012899d8bd5ae97e4 --- /dev/null +++ b/contrib/insualtorDetection/pipeline/detect.pipeline @@ -0,0 +1,55 @@ +{ + "detection":{ + "stream_config": { + "deviceId": "0" + }, + "appsrc0": { + "props": { + "blocksize": "409600" + }, + "factory": "appsrc", + "next": "mxpi_imagedecoder0" + }, + "mxpi_imagedecoder0": { + "props": { + "deviceId": "0" + }, + "factory": "mxpi_imagedecoder", + "next": "mxpi_imageresize0" + }, + "mxpi_imageresize0": { + "props": { + "dataSource": "mxpi_imagedecoder0", + "resizeHeight":"416", + "resizeWidth":"416" + }, + "next": "mxpi_tensorinfer0", + "factory": "mxpi_imageresize" + }, + "mxpi_tensorinfer0": { + "props": { + "dataSource": "mxpi_imageresize0", + "modelPath": "/home/weixing2/lsy/insualtorDetection/model/easy1.om" + }, + "factory": "mxpi_tensorinfer", + "next": "mxpi_objectpostprocessor0" + } , + "mxpi_objectpostprocessor0": { + "props": { + "dataSource": "mxpi_tensorinfer0", + "postProcessConfigPath":"/home/weixing2/lsy/insualtorDetection/model/yolo.cfg", + "labelPath": "../model/label.names", + "postProcessLibPath": "/home/weixing2/MindX_SDK/mxVision/lib/modelpostprocessors/libyolov3postprocess.so" + }, + "factory": "mxpi_objectpostprocessor", + "next": "appsink0" + }, + "appsink0": { + "props": { + "blocksize": "4096000" + }, + "factory": "appsink" + } + } + + } diff --git a/contrib/insualtorDetection/python/main.py b/contrib/insualtorDetection/python/main.py new file mode 100644 index 0000000000000000000000000000000000000000..84f60cad0b5299a5e812a84bbcda1d6e2084f3b1 --- /dev/null +++ b/contrib/insualtorDetection/python/main.py @@ -0,0 +1,104 @@ +#!/usr/bin/env python +# coding=utf-8 + +# Copyright(C) 2022. Huawei Technologies Co.,Ltd. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import stat +import time +import cv2 +from cv2 import getTickCount, getTickFrequency +import MxpiDataType_pb2 as MxpiDataType +from StreamManagerApi import StreamManagerApi, MxDataInput, StringVector + +from visualize import plot_one_box + +if __name__ == '__main__': + streamManagerApi = StreamManagerApi() + # init stream manager + ret = streamManagerApi.InitManager() + if ret != 0: + print("Failed to init Stream manager, ret=%s" % str(ret)) + exit() + + # create streams by pipeline config file + with open("../pipeline/detect.pipeline", 'rb') as f: + pipeline_str = f.read() + ret = streamManagerApi.CreateMultipleStreams(pipeline_str) + if ret != 0: + print("Failed to create Stream, ret=%s" % str(ret)) + exit() + dataInput = MxDataInput() + # It is best to use absolute path + INPUT = "../image/test.jpg" + OUTPUT = "../image/test_output.jpg" + if os.path.exists(INPUT) != 1: + print("The test image does not exist. Exit.") + exit() + + with open(INPUT, 'rb') as f: + dataInput.data = f.read() + STEAMNAME = b'detection' + INPLUGINID = 0 + uniqueId = streamManagerApi.SendData(STEAMNAME, INPLUGINID, dataInput) + if uniqueId < 0: + print("Failed to send data to stream.") + exit() + keys = [b"mxpi_objectpostprocessor0"] + keyVec = StringVector() + for key in keys: + keyVec.push_back(key) + inferResult = streamManagerApi.GetProtobuf(STEAMNAME, 0, keyVec) + if inferResult.size() == 0: + print("No object detected") + image = cv2.imread(INPUT) + cv2.imwrite(OUTPUT, image) + exit() + if inferResult[0].errorCode != 0: + print("GetProtobuf error. errorCode=%d, errorMsg=%s" % ( + inferResult[0].errorCode, inferResult[0].data.decode())) + exit() + # process data output from mxpi_objectpostprocessor plugin + object_list = MxpiDataType.MxpiObjectList() + object_list.ParseFromString(inferResult[0].messageBuf) + bounding_boxes = [] + for objInfo in object_list.objectVec: + print(objInfo) + box = {'x0': int(objInfo.x0), + 'x1': int(objInfo.x1), + 'y0': int(objInfo.y0), + 'y1': int(objInfo.y1), + 'class': int(objInfo.classVec[0].classId), + 'class_name': objInfo.classVec[0].className, + 'confidence': round(objInfo.classVec[0].confidence, 4)} + bounding_boxes.append(box) + image = cv2.imread(INPUT) + # draw each bounding box on the original image + for box in bounding_boxes: + class_id = box.get('class') + class_name = box.get('class_name') + score = box.get('confidence') + plot_one_box(image, + [box.get('x0'), + box.get('y0'), + box.get('x1'), + box.get('y1')], + cls_id=class_id, + label=class_name, + box_score=score) + cv2.imwrite(OUTPUT, image) + # destroy streams + streamManagerApi.DestroyAllStreams() + diff --git a/contrib/insualtorDetection/python/test.py b/contrib/insualtorDetection/python/test.py new file mode 100644 index 0000000000000000000000000000000000000000..33307f2f1669b117d177fae7a782af79e064481c --- /dev/null +++ b/contrib/insualtorDetection/python/test.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python +# coding=utf-8 + +# Copyright(C) 2022. Huawei Technologies Co.,Ltd. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import stat +import time +import cv2 +from cv2 import getTickCount, getTickFrequency +import MxpiDataType_pb2 as MxpiDataType +from StreamManagerApi import StreamManagerApi, MxDataInput, StringVector + +from visualize import plot_one_box + +if __name__ == '__main__': + streamManagerApi = StreamManagerApi() + # init stream manager + ret = streamManagerApi.InitManager() + if ret != 0: + print("Failed to init Stream manager, ret=%s" % str(ret)) + exit() + + # create streams by pipeline config file + with open("../pipeline/detect.pipeline", 'rb') as f: + pipeline_str = f.read() + ret = streamManagerApi.CreateMultipleStreams(pipeline_str) + if ret != 0: + print("Failed to create Stream, ret=%s" % str(ret)) + exit() + dataInput = MxDataInput() + # It is best to use absolute path + INPUT = "../image/test.jpg" + OUTPUT = "../image/test_output.jpg" + if os.path.exists(INPUT) != 1: + print("The test image does not exist. Exit.") + exit() + + with open(INPUT, 'rb') as f: + dataInput.data = f.read() + STEAMNAME = b'detection' + INPLUGINID = 0 + t1 = time.time() + uniqueId = streamManagerApi.SendData(STEAMNAME, INPLUGINID, dataInput) + if uniqueId < 0: + print("Failed to send data to stream.") + exit() + keys = [b"mxpi_objectpostprocessor0"] + keyVec = StringVector() + for key in keys: + keyVec.push_back(key) + inferResult = streamManagerApi.GetProtobuf(STEAMNAME, 0, keyVec) + if inferResult.size() == 0: + print("No object detected") + image = cv2.imread(INPUT) + cv2.imwrite(OUTPUT, image) + exit() + if inferResult[0].errorCode != 0: + print("GetProtobuf error. errorCode=%d, errorMsg=%s" % ( + inferResult[0].errorCode, inferResult[0].data.decode())) + exit() + # process data output from mxpi_objectpostprocessor plugin + object_list = MxpiDataType.MxpiObjectList() + object_list.ParseFromString(inferResult[0].messageBuf) + bounding_boxes = [] + for objInfo in object_list.objectVec: + box = {'x0': int(objInfo.x0), + 'x1': int(objInfo.x1), + 'y0': int(objInfo.y0), + 'y1': int(objInfo.y1), + 'class': int(objInfo.classVec[0].classId), + 'class_name': objInfo.classVec[0].className, + 'confidence': round(objInfo.classVec[0].confidence, 4)} + bounding_boxes.append(box) + image = cv2.imread(INPUT) + # draw each bounding box on the original image + for box in bounding_boxes: + class_id = box.get('class') + class_name = box.get('class_name') + score = box.get('confidence') + plot_one_box(image, + [box.get('x0'), + box.get('y0'), + box.get('x1'), + box.get('y1')], + cls_id=class_id, + label=class_name, + box_score=score) + print("fps:", 1/(time.time()-t1)) + cv2.imwrite(OUTPUT, image) + # destroy streams + streamManagerApi.DestroyAllStreams() + diff --git a/contrib/insualtorDetection/python/visualize.py b/contrib/insualtorDetection/python/visualize.py new file mode 100644 index 0000000000000000000000000000000000000000..7a6ebe2126687b029e55f542018c84628a8b4b1d --- /dev/null +++ b/contrib/insualtorDetection/python/visualize.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python3 +# -*- coding:utf-8 -*- + +# Copyright(C) 2022. Huawei Technologies Co.,Ltd. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +import cv2 +import webcolors + +STANDARD_COLORS = ['red'] + +# All the class names of the detection target +OBJECT_LIST = ['insualtor'] + + +def from_colorname_to_bgr(color): + """ + convert color name to bgr value + + Args: + color: color name + + Returns: bgr value + + """ + rgb_color = webcolors.name_to_rgb(color) + result = (rgb_color.blue, rgb_color.green, rgb_color.red) + return result + + +def standard_to_bgr(list_color_name): + """ + generate bgr list from color name list + + Args: + list_color_name: color name list + + Returns: bgr list + + """ + standard = [] + standard.append(from_colorname_to_bgr(list_color_name[0])) + return standard + + +def plot_one_box(origin_img, coord, cls_id, label=None, box_score=None, line_thickness=None): + """ + plot one bounding box on image + + Args: + origin_img: pending image + coord: coordinate of bounding box + label: class label name of the bounding box + box_score: confidence score of the bounding box + color: bgr color used to draw bounding box + line_thickness: line thickness value when drawing the bounding box + + Returns: None + + """ + color_list = standard_to_bgr(STANDARD_COLORS) + color = color_list[cls_id] + tl = line_thickness or int(round(0.001 * max(origin_img.shape[0:2]))) # line thickness + if tl < 1: + tl = 1 + c1, c2 = (int(coord[0]), int(coord[1])), (int(coord[2]), int(coord[3])) + cv2.rectangle(origin_img, c1, c2, color=color, thickness=tl) + if label: + tf = max(tl - 2, 1) # font thickness + s_size = cv2.getTextSize(str('{:.0%}'.format(box_score)), 0, fontScale=float(tl) / 3, thickness=tf)[0] + t_size = cv2.getTextSize(label, 0, fontScale=float(tl) / 3, thickness=tf)[0] + c2 = c1[0] + t_size[0] + s_size[0] + 15, c1[1] - t_size[1] - 3 + cv2.rectangle(origin_img, c1, c2, color, -1) # filled + cv2.putText(origin_img, '{}: {:.0%}'.format(label, box_score), (c1[0], c1[1] - 2), 0, float(tl) / 3, [0, 0, 0], + thickness=tf, lineType=cv2.FONT_HERSHEY_SIMPLEX) \ No newline at end of file