-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetectron.json
5978 lines (5978 loc) · 411 KB
/
detectron.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"filename": "IRHT_084371-p.jpg",
"file_size": 199823,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[86,91,109,108,123,147,150,153,141,158,150,163,173,168,172,172,189,185,165,170,188,186,193,180,186,184,166,149,148,118,93,84,84,80,79,95,82],\"all_points_y\":[271,247,283,254,239,247,257,273,290,305,288,272,272,287,290,310,327,340,336,347,355,366,400,439,449,457,457,457,470,473,480,478,474,473,420,393,367]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084371-p.jpg",
"file_size": 199823,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[238,263,263,246,249,251,263,248,250,257,274,291,299,300,301,312,327,343,367,361,352,352,334,357,391,385,379,386,375,348,323,234,193,185,196,215,230],\"all_points_y\":[347,323,312,286,271,252,229,211,188,174,174,178,188,203,220,230,245,256,263,278,279,300,300,336,355,382,417,440,454,454,471,471,450,433,384,345,344]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[32,77,125,158,174,171,179,207,238,244,257,266,272,285,290,314,318,318,349,356,340,341,303,261,176,116,72,62,37],\"all_points_y\":[540,501,479,352,308,282,265,258,269,310,346,386,386,383,387,395,401,418,441,495,547,583,601,601,623,599,598,588,592]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[372,370,372,380,392,392,403,414,402,427,448,442,450,464,497,503,488,502,499,500,495,475,449,395,358,315,271,231,233,261,326,370,365,337,338,356,373],\"all_points_y\":[453,425,393,364,374,400,395,398,412,384,373,360,318,317,321,369,374,394,495,609,695,708,693,692,684,696,689,702,690,666,660,647,612,591,560,498,477]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[331,322,337,360,375,382,416,451,436,423,399,388,367,343,320,295,304,321],\"all_points_y\":[310,263,244,242,250,266,276,313,347,382,388,371,370,361,368,362,339,325]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[474,462,440,439,446,462,480,499,502,503,498,459,451,426,455],\"all_points_y\":[265,258,256,234,224,203,201,207,239,276,297,305,310,282,269]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[50,65,66,53,54,69,97,126,126,116,143,162,148,153,171,139,116,84,46,35,36,39,45],\"all_points_y\":[207,216,207,204,164,149,148,188,203,213,228,245,273,292,321,432,481,490,516,518,389,230,207]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 5,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[128,143,159,161,142,134,124,115,116,120],\"all_points_y\":[140,141,151,184,195,193,185,169,152,143]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084374-p.jpg",
"file_size": 201713,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 6,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[425,441,454,464,462,451,445,436,426,419],\"all_points_y\":[209,193,191,191,201,220,232,256,264,248]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084395-p.jpg",
"file_size": 218405,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[169,138,152,193,208,228,259,292,310,309,325,320,281,263,271,312,351,375,399,405,404,380,369,322,315,256,241,216,195,177],\"all_points_y\":[376,344,313,318,351,347,374,359,338,360,355,375,377,382,391,392,418,444,447,460,469,469,469,439,431,421,419,426,408,384]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084395-p.jpg",
"file_size": 218405,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[64,103,130,143,171,176,173,166,177,137,139,138,103,98],\"all_points_y\":[453,323,273,255,230,250,288,292,310,316,342,356,372,445]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084395-p.jpg",
"file_size": 218405,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[387,405,404,402,422,434,453,467,480,475,417,387,360,372,388,413,413,406,395,391],\"all_points_y\":[425,388,388,360,338,380,399,467,558,595,599,601,595,583,542,492,463,443,441,434]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084395-p.jpg",
"file_size": 218405,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[370,373,361,331,320,304,299,307,301,290],\"all_points_y\":[416,364,325,297,275,281,304,340,364,378]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084395-p.jpg",
"file_size": 218405,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[241,252,248,254,287,289,303,300,284,269,254,247],\"all_points_y\":[345,318,302,276,283,304,327,346,389,378,359,357]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084396-p.jpg",
"file_size": 224291,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[207,233,224,185,164,164,180,185,182,189,202,228,250,274,261,250,252,264,288,292,307,326,356,365,373,369,388,394,392,339,333,319,320,361,354,346,351,346,334,323,323,308,305,289,286,285,274,254,253,237,233,220,221,209,209,206],\"all_points_y\":[334,302,275,248,243,230,233,234,223,223,244,260,226,223,206,191,168,163,173,200,217,250,225,204,207,221,209,209,223,264,266,264,297,328,349,370,384,395,391,394,451,450,392,391,406,418,416,403,390,400,441,441,395,389,364,342]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084396-p.jpg",
"file_size": 224291,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[101,101,88,91,97,95,95,113,115,111,131,134,122,122,108],\"all_points_y\":[623,614,617,587,583,574,555,557,576,581,592,605,610,627,623]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084396-p.jpg",
"file_size": 224291,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[132,142,139,139,157,153,160,175,135],\"all_points_y\":[710,695,683,669,669,683,695,702,704]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084396-p.jpg",
"file_size": 224291,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[292,306,312,321,316,335,334,306,295],\"all_points_y\":[706,678,659,659,684,684,713,711,710]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"unknown\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084396-p.jpg",
"file_size": 224291,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[394,402,395,410,413,429,435,439,429,427,399],\"all_points_y\":[618,606,601,581,552,552,573,603,614,622,624]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084410-p.jpg",
"file_size": 232242,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[83,79,101,95,102,126,152,171,146,151,213,231,253,272,272,256,241,211,208,253,247,246,229,224,248,237,202,191,163,135,108,96,76,65,61,77],\"all_points_y\":[521,422,389,364,339,330,330,369,405,430,469,466,454,454,487,491,491,491,530,562,601,632,654,665,666,680,682,702,710,702,710,706,705,588,527,513]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084410-p.jpg",
"file_size": 232242,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[153,153,174,189,191,206,217,209,188,184,202,202,187,170,153,140,140,156],\"all_points_y\":[428,400,395,401,458,461,469,482,485,508,532,556,559,543,521,504,467,438]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084410-p.jpg",
"file_size": 232242,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[286,302,319,352,359,359,392,407,395,411,421,434,445,466,472,470,418,376,339,308,293,295,274,285,312,343,340,291,265,244,242,247,261,273,303,281,288,286],\"all_points_y\":[484,451,428,429,456,471,527,562,572,584,622,639,641,638,715,732,736,731,721,724,709,695,629,604,599,593,580,584,581,558,530,521,533,545,556,527,502,479]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084410-p.jpg",
"file_size": 232242,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[346,327,332,359,379,393,401,441,466,472,468,428,411,405,398,369,363,397,382,351],\"all_points_y\":[387,382,357,360,374,339,273,279,320,433,617,601,590,577,564,481,469,446,419,380]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084410-p.jpg",
"file_size": 232242,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[306,341,343,361,400,428,412,393,387,385,368,358],\"all_points_y\":[349,289,276,247,245,246,278,329,417,445,455,430]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084412-p.jpg",
"file_size": 200561,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[38,34,61,55,81,107,102,101,108,102,116,139,144,142,139,119,117,81,125,124,98,34,44,39],\"all_points_y\":[378,302,245,287,278,248,276,294,331,347,370,363,390,406,426,428,469,509,643,654,661,638,410,375]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084412-p.jpg",
"file_size": 200561,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[178,174,193,213,220,260,273,253,196,180,180],\"all_points_y\":[339,312,298,311,332,379,417,424,388,369,344]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084412-p.jpg",
"file_size": 200561,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[365,370,371,412,427,440,447,471,477,470,481,489,490,453,380,352,334,344,370,366],\"all_points_y\":[329,315,285,244,239,245,282,310,319,326,357,568,739,749,731,749,737,715,558,412]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084412-p.jpg",
"file_size": 200561,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[211,218,214,232,272,289,331,331,343,312,338,355,338,285,262,230,190,167,160,141,148,142,184,204],\"all_points_y\":[304,286,264,228,229,276,395,417,433,555,580,605,628,643,631,631,611,599,568,532,510,495,416,293]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084413-p.jpg",
"file_size": 212929,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[90,108,111,124,166,178,172,172,190,205,210,225,224,227,237,231,206,183,182,189,250,271,267,217,140,123,89,36,42,72,89,95,95],\"all_points_y\":[520,422,386,365,369,400,433,449,450,466,495,544,633,647,654,689,697,696,698,711,704,720,730,741,744,744,756,748,656,643,624,581,510]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084413-p.jpg",
"file_size": 212929,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[312,273,272,272,304,308,339,360,345,365,369,380,410,424,426,429,446,454,464,463,446,446,447,486,488,447,437,390,338,306,293,299,260,252,259,250,246,240,267,306,310],\"all_points_y\":[439,398,377,368,377,392,410,414,400,382,343,315,318,328,355,378,433,520,545,575,602,647,668,683,741,741,754,752,743,740,725,717,708,679,669,634,600,586,547,512,440]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084413-p.jpg",
"file_size": 212929,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[160,183,195,186,197,227,238,233,326,346,285,263,301,300,248,263,317,317,267,224,180,180,218,152,149,158],\"all_points_y\":[314,302,287,267,238,238,258,205,274,308,272,282,321,327,296,344,361,380,418,424,387,361,330,340,318,311]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084413-p.jpg",
"file_size": 212929,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[39,70,52,102,111,98,100,85,109,109,78,73,78,99,126,118,98,66,75,90,87,77,69,42,37],\"all_points_y\":[210,196,246,203,203,233,256,285,309,318,312,316,327,328,328,338,342,339,347,362,383,394,420,432,206]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[267,258,249,264,237,196,145,129,114,125,152,159,226,242,254,279,300,309,326,348,391,414,417,443,451,438,414,374,325,319,313,320,314,302,298,303,284,259],\"all_points_y\":[517,290,282,228,137,136,88,77,72,41,50,85,117,124,89,83,90,123,120,117,95,72,46,57,73,79,106,133,145,225,228,260,319,400,488,531,530,523]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[361,377,405,422,426,433,475,504,490,490,490,482,479,451,481,492,404,382,348,346,354,330,326,306,304,325,334,361,360],\"all_points_y\":[370,361,323,307,271,254,261,289,320,323,336,339,405,467,629,717,721,720,720,651,482,484,444,439,407,407,416,405,383]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[356,337,332,356,354,355,355,365,370,375,387,394,393,426,424,407,385,356],\"all_points_y\":[389,388,363,325,304,300,277,277,295,292,317,312,274,260,292,314,362,391]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[74,101,104,116,111,131,153,172,205,229,223,218,197,180,215,228,185,97,45,50,67],\"all_points_y\":[586,480,412,327,306,266,266,291,349,404,470,574,631,700,707,724,722,711,699,596,594]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[51,55,84,103,103,112,94,58,50,51],\"all_points_y\":[339,265,260,286,320,342,527,603,379,349]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 5,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[78,98,132,132,121,108,101,80,80],\"all_points_y\":[228,220,226,243,263,288,251,242,228]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084415-p.jpg",
"file_size": 189809,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 6,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[53,70,57,51],\"all_points_y\":[201,205,250,215]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[70,86,99,118,118,133,127,146,167,181,181,181,219,230,249,258,259,242,234,231,229,212,194,198,195,178,163,153,143,132,114,75],\"all_points_y\":[530,485,461,338,175,151,132,117,114,126,146,180,221,219,214,214,233,253,269,318,340,431,501,505,514,512,522,534,533,530,546,539]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[16,16,20,23,32,46,64,61,94,121,93,79,40,30,10,12],\"all_points_y\":[230,138,113,83,89,84,85,138,180,212,384,479,483,492,495,216]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[65,75,66,66,86,111,111,111,132,113,100,96,115,58],\"all_points_y\":[140,127,109,80,77,79,94,132,146,267,296,239,219,131]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[6,17,39,8,7],\"all_points_y\":[73,70,76,134,66]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[374,379,387,389,415,442,442,479,472,366],\"all_points_y\":[318,200,154,97,90,121,152,199,297,318]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 5,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[418,445,459,446,414,415],\"all_points_y\":[73,54,65,114,87,76]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084417-p.jpg",
"file_size": 181257,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 6,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[461,498,507,501,481,479,457,444,451,461],\"all_points_y\":[56,50,161,294,298,200,156,129,82,60]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084422-p.jpg",
"file_size": 226719,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[91,112,130,139,153,166,181,185,170,192,203,227,224,203,196,191,211,199,203,149,129,92],\"all_points_y\":[392,325,283,259,259,269,283,305,323,331,344,355,367,377,378,405,459,478,527,523,488,497]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084422-p.jpg",
"file_size": 226719,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[223,258,258,257,262,290,306,308,302,305,287,281,300,291,247,252,233,198,162,160,138,140,192,202,202,214],\"all_points_y\":[456,452,443,424,405,403,414,441,471,487,490,511,529,541,572,585,583,594,589,594,597,577,564,531,473,457]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084422-p.jpg",
"file_size": 226719,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[203,184,186,200,218,237,237,236,246,284,293,288,274,266,269,255,255,223,215,209,196,196,192,196,198],\"all_points_y\":[284,261,236,222,222,231,247,263,274,297,322,331,344,348,402,421,449,452,451,420,404,376,325,290,288]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084422-p.jpg",
"file_size": 226719,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[300,282,292,308,333,337,347,336,318,311,318,328,338,354,369,360,360,369,371,356,351,351,363,350,336,331,312,299,316,306,309,316,302],\"all_points_y\":[332,279,256,238,251,278,263,236,215,195,184,178,214,228,264,304,343,367,421,456,489,525,554,574,563,534,563,553,526,485,405,350,341]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084422-p.jpg",
"file_size": 226719,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[388,404,427,446,455,447,432,432,462,462,471,471,471,469,453,446,466,449,442,418,359,364,398,422,375,373,393,385],\"all_points_y\":[278,254,248,261,269,227,215,187,200,215,234,361,537,559,566,560,536,477,479,571,571,559,548,432,383,362,309,302]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084423-p.jpg",
"file_size": 203238,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[107,135,136,158,172,158,149,152,162,185,195,197,214,213,230,250,269,260,250,249,241,232,200,193,190,194,198,210,229,235,229,209,195,180,174,166,142,157,162,141,119,125,133,137,105,106],\"all_points_y\":[410,334,310,253,244,239,239,215,201,191,196,209,218,232,229,216,210,223,248,280,283,283,300,323,349,417,460,498,519,523,530,530,518,479,447,432,481,490,506,505,492,475,443,421,423,413]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084423-p.jpg",
"file_size": 203238,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[347,321,335,359,377,384,387,398,405,429,436,445,435,445,439,435,463,461,451,445,449,412,393,387,384,348,366,350,366,378,360,341,341,363,380,370,357],\"all_points_y\":[351,337,329,325,341,341,320,312,298,295,311,336,337,393,426,495,483,518,531,531,512,533,498,480,524,532,509,466,443,430,398,395,359,370,380,368,361]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084423-p.jpg",
"file_size": 203238,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[216,241,249,267,290,300,306,319,332,352,370,349,339,338,349,351,335,336,336,321,311,258,251,248,227,202,166,170,188,220,218,222,233,237,239,223,219],\"all_points_y\":[349,288,230,207,219,252,282,335,355,355,368,396,387,399,439,479,495,500,514,525,506,492,527,529,518,533,531,507,486,422,411,398,391,385,370,364,357]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[67,70,70,83,112,124,121,123,137,124,102,104,104,80,67],\"all_points_y\":[251,217,184,162,160,173,206,230,230,261,329,376,493,489,488]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[148,150,169,194,200,196,221,221,193,176,174,143,118,96,86,107,105,107,139,142],\"all_points_y\":[231,195,176,180,213,242,270,280,382,447,495,511,518,519,518,495,351,322,230,230]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[312,295,315,319,326,331,355,394,395,387,404,420,413,401,373,375,384,368,385,403,404,391,367,340,314,316,341,341,327,311,307,291,300,307],\"all_points_y\":[384,371,317,255,236,202,186,185,223,233,264,294,326,341,325,388,404,399,478,489,497,498,488,398,455,467,475,481,483,486,476,478,438,379]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[373,405,436,439,438,428,445,459,463,469,447,429,427,436,430,443,430,416,400,398,383,376,390,395],\"all_points_y\":[177,167,179,206,227,241,256,256,264,275,283,328,357,375,392,474,474,399,410,447,448,330,334,224]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[349,349,368,390,399,383,357],\"all_points_y\":[180,158,138,141,154,178,179]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 5,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[204,214,237,252,250,236,196,195],\"all_points_y\":[172,148,149,167,190,205,248,193]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084424-p.jpg",
"file_size": 200270,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 7,
"region_id": 6,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[231,255,261,280,315,315,315,313,291,304,314,331,334,325,321,321,291,294,263,260,290,285,259,245,242,205,203,228,210,197,169,173,187,197],\"all_points_y\":[269,228,195,178,193,215,239,260,266,301,276,280,298,310,316,322,349,398,449,489,508,520,511,511,472,489,515,537,551,544,538,517,461,362]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084430-p.jpg",
"file_size": 194282,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[348,346,358,355,359,356,368,390,402,432,466,476,468,467,439,404,397,386,385,372,363,369,361,361,364,354,346],\"all_points_y\":[455,424,380,377,366,342,328,333,356,382,426,448,456,551,568,546,503,482,443,418,450,468,468,469,477,477,457]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084430-p.jpg",
"file_size": 194282,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[179,157,158,182,201,209,209,238,241,205,186],\"all_points_y\":[370,364,336,333,330,346,368,388,406,401,377]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084430-p.jpg",
"file_size": 194282,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[169,157,150,159,192,206,216,250,273,273,310,329,329,318,293,262,233,221,205,189,157,161],\"all_points_y\":[334,309,271,258,254,276,292,308,350,364,376,401,450,472,471,469,463,447,447,419,379,357]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084431-p.jpg",
"file_size": 226803,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[94,105,117,114,85,87,110,113,132,141,152,173,187,200,209,231,245,243,228,223,215,214,227,243,239,247,209,204,194,184,182,210,224,232,246,255,254,214,209,187,169,156,144,141,157,156,141,107,115,122,102,102],\"all_points_y\":[446,429,398,397,422,352,340,322,298,277,267,267,283,304,300,277,284,297,311,306,317,370,371,371,388,395,386,404,406,404,429,450,474,486,480,481,499,506,486,473,461,488,515,528,534,541,545,536,507,476,463,452]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084431-p.jpg",
"file_size": 226803,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[248,260,272,272,288,297,321,331,330,340,344,369,372,346,329,331,345,353,352,339,319,309,310,325,317,293,270,265,247,238,244,259,280,279,250,236,236,250,270,248,262,230],\"all_points_y\":[291,305,308,292,278,275,272,283,313,356,411,434,443,465,464,491,511,527,534,536,549,542,537,529,503,476,458,483,506,481,436,417,408,384,393,392,370,370,360,356,346,314]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084431-p.jpg",
"file_size": 226803,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[147,161,187,197,208,232,238,227,228,257,277,270,260,257,244,215,203,201,225,231,211,204,169,150,138],\"all_points_y\":[145,125,127,127,117,117,129,139,148,148,153,164,162,164,164,164,159,167,190,204,209,192,170,162,148]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084431-p.jpg",
"file_size": 226803,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[388,372,376,393,426,440,467,472,459,430,398,394,377,362,363,380,371,385],\"all_points_y\":[216,202,181,170,173,197,259,303,311,300,277,257,263,263,246,246,233,224]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084447-p.jpg",
"file_size": 225555,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[65,75,97,107,118,136,153,153,147,143,157,174,174,162,164,154,178,192,163,111,61,45,43,59,68,63],\"all_points_y\":[361,287,236,204,194,194,200,222,262,273,302,336,380,417,513,555,568,580,590,591,587,569,544,492,402,360]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084447-p.jpg",
"file_size": 225555,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[236,201,147,101,83,97,117,125,159,192,228,221,248,276,295,314,323,345,368,404,432,445,460,460,452,439,390,362,325,306,304,292,293,293,311,322,321,321,311,298,297,284,290,288,288,294,277,252,255,241,241,238,238,246,249,234],\"all_points_y\":[186,179,161,132,124,101,108,125,142,153,158,123,115,121,142,154,160,160,154,144,135,119,126,143,151,151,175,175,184,185,207,223,241,255,270,293,312,339,345,342,332,356,391,438,456,475,504,492,468,406,367,338,291,260,236,196]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084447-p.jpg",
"file_size": 225555,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[351,366,374,390,415,433,432,444,454,461,456,453,446,451,309,331,343,345,340,329,335,315,312,327,342,344,346],\"all_points_y\":[307,277,223,209,206,224,246,274,305,357,387,446,501,595,591,567,497,438,383,351,316,290,279,278,284,311,309]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084456-p.jpg",
"file_size": 199054,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[78,89,111,121,118,120,140,145,131,131,133,141,143,140,137,145,153,160,187,216,216,218,226,220,233,237,237,273,274,251,208,174,142,129,95,104,102,82,91,91,101,108,110,101,98,88,81],\"all_points_y\":[450,392,358,354,334,327,332,319,317,306,292,290,283,277,276,263,249,229,229,255,289,341,364,378,440,477,535,596,603,605,552,527,528,601,601,576,518,514,500,484,468,458,443,453,460,468,452]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084456-p.jpg",
"file_size": 199054,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[225,246,252,257,270,250,244,230,230,248,262,273,290,277,280,300,319,322,316,329,320,302,292,242,227,227],\"all_points_y\":[346,326,303,303,286,307,299,300,285,283,280,254,254,248,224,215,219,233,254,279,306,321,351,366,365,358]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084456-p.jpg",
"file_size": 199054,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[197,223,234,259,279,293,288,298,335,359,333,315,317,309,282,237,225,211,201],\"all_points_y\":[232,178,119,104,111,139,177,199,311,356,362,386,433,455,474,497,371,274,251]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084457-p.jpg",
"file_size": 213269,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[136,114,101,84,72,72,85,111,156,185,189,203,217,224,236,263,270,264,239,225,233,213,186,194,187,158,163,139],\"all_points_y\":[158,168,180,189,188,141,138,102,73,63,86,82,57,46,63,153,168,173,128,116,142,156,144,135,119,138,153,153]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084457-p.jpg",
"file_size": 213269,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[291,321,345,336,339,361,383,399,400,439,445,467,451,451,422,438,400,360,316,284,280,290,284,303,317,337,345,350,303,269,270,256,247,244,245,263,278,288],\"all_points_y\":[211,217,182,145,114,103,102,141,158,204,266,350,388,448,459,464,497,497,493,488,471,455,429,332,311,303,280,253,264,264,222,209,182,180,169,170,186,208]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084457-p.jpg",
"file_size": 213269,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[116,116,133,159,169,199,208,196,220,254,277,283,280,278,247,221,200,216,229,234,234,248,236,290,327,329,284,195,162,102,73,72,84,106,94,110],\"all_points_y\":[354,284,227,188,184,193,226,340,326,302,295,302,313,321,342,359,364,473,475,482,495,499,514,528,545,557,580,567,575,573,563,450,440,404,384,358]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084459-p.jpg",
"file_size": 204048,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[195,194,223,233,247,260,260,254,230,199,172,170,170,175,168,173,192,215,222,226,226,239,277,316,344,344,378,409,435,446,450,446,434,407,389,337,306,288,256,227,223,202],\"all_points_y\":[349,391,453,479,486,493,508,518,513,454,387,316,300,289,269,243,238,238,248,279,299,301,347,403,429,449,480,520,523,531,541,557,562,562,540,506,470,462,446,423,392,362]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084459-p.jpg",
"file_size": 204048,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[161,161,173,185,229,246,242,242,250,280,304,345,352,352,385,425,464,460,433,412,329,291,264,193,165,167,173,160],\"all_points_y\":[264,239,228,234,268,246,209,170,166,159,189,272,330,354,398,440,470,494,505,508,515,502,485,481,469,445,387,256]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084459-p.jpg",
"file_size": 204048,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 3,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[389,358,365,380,384,397,403,407,400,397,403,439,453,454,457,448,462,461,391,399,392,389],\"all_points_y\":[310,293,279,280,266,290,298,279,263,226,175,174,197,226,253,315,337,464,413,347,347,317]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084462-p.jpg",
"file_size": 189557,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[69,81,82,100,122,143,151,151,175,184,232,271,280,283,292,288,276,246,248,209,238,246,194,172,180,168,134,113,109,87,87,94,74,73,72],\"all_points_y\":[272,253,230,207,204,225,283,299,352,389,416,424,449,480,514,531,514,479,457,474,505,528,520,517,548,553,545,531,552,541,521,495,445,310,267]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084462-p.jpg",
"file_size": 189557,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[242,255,276,295,299,304,332,349,367,373,333,305,260,260,245,235,248,248,231,233,249,250,242,243],\"all_points_y\":[190,163,162,172,185,194,236,267,295,395,512,459,372,356,346,326,293,285,285,279,273,239,208,191]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084462-p.jpg",
"file_size": 189557,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[368,362,367,354,360,371,398,410,418,413,455,460,451,454,458,464,457,463,462,414,378,332,375,377,356,342,331,337,314,310,332,332,332,357,362],\"all_points_y\":[284,242,228,226,180,168,168,181,196,204,257,300,302,339,343,351,388,435,581,572,548,508,396,359,362,351,332,320,307,290,294,281,271,273,281]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084462-p.jpg",
"file_size": 189557,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 4,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[401,426,440,466,468,462,416,399],\"all_points_y\":[142,134,154,171,213,442,208,145]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084480-p.jpg",
"file_size": 205722,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[203,232,227,221,227,239,257,262,275,287,307,307,308,298,307,316,339,339,333,319,320,321,311,309,304,301,285,245,213,207],\"all_points_y\":[356,289,273,259,224,205,172,155,149,146,154,164,176,212,233,254,254,263,269,270,287,322,331,397,400,443,446,425,389,360]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084480-p.jpg",
"file_size": 205722,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[347,329,320,337,327,327,347,358,368,352,366,392,409,446,455,445,461,447,432,410,365,373,336,336,345,338,338,343],\"all_points_y\":[288,300,295,275,275,267,265,238,204,180,151,151,183,232,266,293,376,415,443,457,456,444,439,424,415,369,314,299]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084487-p.jpg",
"file_size": 195829,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[190,208,196,193,206,220,232,256,273,272,262,268,279,290,282,264,280,283,265,234,204,192],\"all_points_y\":[344,297,278,273,236,195,163,163,178,200,221,235,259,290,341,391,398,403,407,397,368,357]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084487-p.jpg",
"file_size": 195829,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[281,285,301,297,296,306,306,311,332,347,364,372,404,404,408,391,400,398,361,346,315,286,286,298,296,309,281],\"all_points_y\":[243,226,207,186,177,172,184,180,143,148,172,201,246,259,282,348,353,365,389,388,395,394,384,363,276,274,245]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[57,67,67,61,77,102,108,115,148,149,194,199,219,235,235,205,178,138,67,61,56,67,84,57,57,58],\"all_points_y\":[404,385,363,349,323,327,340,397,431,468,497,565,586,589,598,609,621,619,599,594,582,572,568,523,462,405]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[112,122,111,98,108,130,156,162,169,160,191,221,215,192,223,201,198,195,148,147,112,111],\"all_points_y\":[358,315,300,286,250,245,253,265,299,311,339,369,400,401,481,481,531,496,462,430,395,360]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[292,277,279,290,311,320,299,297,287,277,275,275,294,302,328,335,340,344,365,384,400,399,417,420,412,416,422,446,475,495,489,470,451,435,410,391,364,348,347,347,347,335,317,321,328,317,316,314,316,312,309,311,275,281,288,282,289],\"all_points_y\":[519,503,483,478,468,452,452,423,417,410,394,384,392,400,398,358,335,300,284,284,304,334,384,400,400,468,511,521,528,552,564,564,581,587,573,572,558,546,574,597,608,614,618,598,560,539,539,540,553,577,595,611,614,601,551,535,524]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[417,428,429,434,446,462,473,476,487,500,464,426,419],\"all_points_y\":[309,283,263,235,224,224,239,258,277,309,314,314,313]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[185,193,180,187,224,233,247,263,244,253,273,270,258,259,255,250,227,233,228,205,185,185],\"all_points_y\":[326,289,250,236,226,250,290,311,311,325,330,336,338,342,344,338,357,363,367,362,339,330]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084490-p.jpg",
"file_size": 209472,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 6,
"region_id": 5,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[73,60,59,51,53,76,83,103,119,118,125,129,125,115,112,92,92,104,70],\"all_points_y\":[199,197,175,167,164,170,137,134,137,161,175,191,205,213,213,216,202,200,197]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084494-p.jpg",
"file_size": 165116,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 1,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[82,74,85,95,112,124,132,167,185,193,190,179,199,210,229,236,231,237,217,201,216,193,156,164,181,158,143,137,128,113,107,102,82,51,79,84,70,76,78,83],\"all_points_y\":[190,150,114,87,91,87,72,49,54,63,91,100,138,161,160,167,174,189,206,276,308,308,277,333,346,351,341,316,231,239,271,333,336,337,320,288,254,232,206,201]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084499-p.jpg",
"file_size": 149531,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 1,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[80,59,79,79,112,118,115,128,142,161,152,154,175,205,198,182,174,180,175,123,58,58,69,70,77],\"all_points_y\":[202,172,121,113,83,83,65,59,55,65,73,92,112,179,208,232,253,313,335,335,335,330,321,231,203]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084500-p.jpg",
"file_size": 162862,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[35,36,46,65,68,77,86,73,89,94,75,79,88,105,105,83,96,121,117,104,91,79,78,75,51,34,33],\"all_points_y\":[249,184,154,154,166,156,157,179,193,214,214,237,228,226,236,247,257,245,257,260,269,271,301,330,337,334,248]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084500-p.jpg",
"file_size": 162862,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[108,117,128,115,130,154,144,149,176,189,204,232,215,218,208,215,196,204,188,175,185,187,177,171,167,168,138,131,154,149,137,129,138,142,133,123,121,93,93,104,104],\"all_points_y\":[122,113,124,147,126,116,92,66,58,76,107,158,182,209,227,281,279,290,319,310,299,285,284,285,293,312,330,318,308,289,287,220,210,171,188,178,173,177,153,133,119]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084507-p.jpg",
"file_size": 162438,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[162,144,156,169,170,200,223,218,214,207,225,227,247,278,289,289,261,215,218,225,224,194,144,163,162],\"all_points_y\":[543,504,435,401,364,350,374,393,406,410,429,455,459,452,458,471,474,480,495,540,653,657,655,605,557]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_084507-p.jpg",
"file_size": 162438,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[251,264,276,298,329,350,384,393,393,379,382,396,430,443,431,416,391,371,330,272,249,234,260,237,221,227,236,233,236,248],\"all_points_y\":[418,388,351,335,342,369,401,431,498,513,540,601,625,644,657,664,651,652,660,662,660,645,627,587,557,527,488,478,435,424]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085192-p.jpg",
"file_size": 176430,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[443,441,437,453,468,468,478,490,512,519,524,541,546,540,562,565,556,563,567,546,510,469,450],\"all_points_y\":[387,345,322,279,260,244,218,219,224,252,278,307,338,344,378,390,410,441,459,467,466,453,390]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085192-p.jpg",
"file_size": 176430,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[540,517,530,559,564,577,602,600,589,590,607,637,652,649,644,634,646,668,685,679,669,664,661,655,666,669,674,685,676,655,626,648,666,636,630,623,620,613,606,605,565,592,605,604,624,603,571,547],\"all_points_y\":[249,242,227,225,248,254,254,232,224,214,201,201,215,227,235,234,253,264,293,307,322,332,356,394,402,418,437,452,456,470,472,462,442,397,370,390,406,429,443,457,461,444,388,360,304,292,289,256]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085194-p.jpg",
"file_size": 175857,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[121,153,163,168,145,151,159,170,191,168,182,207,223,222,230,236,238,232,225,221,215,255,277,281,285,292,287,311,312,306,280,264,264,264,274,265,264,242,254,266,249,228,209,183,152,125],\"all_points_y\":[409,390,355,321,292,248,204,179,155,154,133,125,126,145,145,136,142,152,152,152,172,200,196,180,171,174,188,177,189,196,208,215,271,284,335,338,362,394,401,401,406,400,409,411,412,413]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085194-p.jpg",
"file_size": 175857,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[329,302,317,336,359,384,409,388,392,394,427,444,451,434,429,453,469,475,464,452,459,474,489,500,497,470,434,432,411,407,416,415,424,413,378,343,367,400,386,388,398,415,428,405,370,329,327],\"all_points_y\":[260,242,234,238,238,231,213,209,180,164,166,189,203,203,206,225,262,296,325,350,350,360,366,373,387,374,359,328,332,336,357,370,393,400,409,404,398,386,328,309,302,298,282,272,287,284,259]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085194-p.jpg",
"file_size": 175857,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 2,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[450,450,468,499,498,485,485,499,499,486,494,493,466,466,477,449,459,454],\"all_points_y\":[191,175,162,182,191,194,203,222,315,342,347,364,348,317,280,221,217,208]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085194-p.jpg",
"file_size": 175857,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 3,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[466,485,500,503,463],\"all_points_y\":[160,142,142,180,157]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085194-p.jpg",
"file_size": 175857,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 4,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[425,438,465,465,453,427],\"all_points_y\":[164,149,151,165,201,168]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085201-p.jpg",
"file_size": 171386,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[191,208,205,192,208,214,227,227,246,275,283,282,288,300,315,325,332,347,340,353,351,343,343,322,321,325,341,345,337,344,319,314,312,303,293,302,324,341,327,257,199,191],\"all_points_y\":[448,415,339,302,225,178,161,133,120,127,155,183,210,211,203,194,169,159,184,198,220,218,213,225,223,257,280,288,303,356,383,383,355,349,370,434,444,452,461,462,461,452]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085201-p.jpg",
"file_size": 171386,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 2,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[397,365,371,376,398,398,410,406,418,409,410,412,429,452,458,461,453,447,467,482,493,498,492,483,509,452,376,367,384,382,385,375,389],\"all_points_y\":[216,198,177,176,192,180,180,197,182,172,151,134,125,124,139,155,162,170,170,199,227,263,315,439,462,463,466,466,448,372,283,254,222]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085203-p.jpg",
"file_size": 182505,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 0,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[141,148,143,156,166,169,171,203,218,211,221,221,227,229,243,249,249,238,238,241,237,225,243,249,244,260,256,223,228,213,181,162,141],\"all_points_y\":[488,438,434,407,375,345,310,349,398,412,428,406,404,414,403,410,418,433,452,461,466,484,518,571,583,601,618,625,613,597,540,507,489]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},
{
"filename": "IRHT_085203-p.jpg",
"file_size": 182505,
"file_attributes": "{\"caption\":\"\",\"public_domain\":\"no\",\"image_url\":\"\"}",
"region_count": 5,
"region_id": 1,
"region_shape_attributes": "{\"name\":\"polyline\",\"all_points_x\":[267,261,270,254,269,280,284,308,320,320,336,347,347,339,337,333,320,298,284,263,273,256,258,272],\"all_points_y\":[503,454,436,441,416,386,372,371,390,412,431,472,498,551,613,620,602,605,598,610,587,550,523,508]}",
"region_attributes": "{\"name\":\"not_defined\",\"type\":\"human\",\"image_quality\":{\"good\":true,\"frontal\":true,\"good_illumination\":true}}"
},