diff --git a/Images/Annotated/augment.py b/Images/Annotated/augment.py
new file mode 100644
index 0000000000000000000000000000000000000000..6983b93ce831d7516bce0d82a569634b910a14e7
--- /dev/null
+++ b/Images/Annotated/augment.py
@@ -0,0 +1,90 @@
+import imgaug as ia
+from imgaug import augmenters as iaa
+import numpy as np
+import cv2
+from pascal_voc_writer import Writer
+import xml.etree.ElementTree as ET
+import glob
+from util import sequence_simple, sequence_resize
+from util import annotation as an
+import shutil
+import sys
+
+INPUT_DIR = './images'
+OUTPUT_DIR = './augmented'
+AUGMENT_SIZE = 10
+
+
+def main():
+ global INPUT_DIR
+ for classname in glob.glob(INPUT_DIR + "/"):
+ print(classname)
+ INPUT_DIR = classname
+ print(OUTPUT_DIR)
+
+ for file in glob.glob('%s/*.xml' % INPUT_DIR):
+ print('Augmenting %s ...' % file)
+ annotation = an.parse_xml(file)
+ augment(annotation)
+
+ for file in glob.glob('%s/*.xml' % OUTPUT_DIR):
+ an.inspect(file)
+
+
+def augment(annotation):
+ seq = sequence_resize.get()
+
+ for i in range(AUGMENT_SIZE):
+ filename = annotation['filename']
+ sp = filename.split('.')
+ outfile = '%s/%s-%02d.%s' % (OUTPUT_DIR, sp[0], i, sp[-1])
+
+ print("++INFO++")
+ print(outfile)
+ print("++INFO++")
+
+
+ seq_det = seq.to_deterministic()
+
+ print("===")
+ print(INPUT_DIR)
+ print(annotation['filename'])
+ print("===")
+
+ image = cv2.imread('%s/%s' % (INPUT_DIR, annotation['filename']))
+ _bbs = []
+ for obj in annotation['objects']:
+ bb = ia.BoundingBox(x1=int(obj['xmin']),
+ y1=int(obj['ymin']),
+ x2=int(obj['xmax']),
+ y2=int(obj['ymax']),
+ label=obj['name'])
+ _bbs.append(bb)
+
+ bbs = ia.BoundingBoxesOnImage(_bbs, shape=image.shape)
+
+ image_aug = seq_det.augment_images([image])[0]
+ bbs_aug = seq_det.augment_bounding_boxes(
+ [bbs])[0].remove_out_of_image().cut_out_of_image()
+
+ writer = Writer(outfile,
+ annotation['size']['width'],
+ annotation['size']['height'])
+ for bb in bbs_aug.bounding_boxes:
+ if int((bb.x2-bb.x1)*(bb.y2-bb.y1)) == 0:
+ print("augmentet boundingbox has non existing area. Skipping")
+ continue
+ writer.addObject(bb.label,
+ int(bb.x1),
+ int(bb.y1),
+ int(bb.x2),
+ int(bb.y2))
+
+ print(outfile)
+ cv2.imwrite(outfile, image_aug)
+ writer.save('%s.xml' % outfile[:-4])
+ # writer.save('%s.xml' % outfile.split('.')[0])
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a73310e15131b2647e2685ff96c72e92a38f0fe5
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8a9c3f680b2f1bfa17193dfd6fe05f9f5a593d50
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.xml
@@ -0,0 +1,939 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5a38e8274c92861144733887b0b771c54bed6a28
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9a0483565f8509a880249c8c205a64b131d7c7e0
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.xml
@@ -0,0 +1,1005 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3204d46326d800246cb0f867ae0519d2d53225d2
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..34896b8f5fd051d597bedc0a537caafc17e75535
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.xml
@@ -0,0 +1,1071 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0bfab5cf65bbc5162c7d3cf8a4ad32d19dbb3267
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e0b45175a8e85823962614435c1e797d999abb22
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.xml
@@ -0,0 +1,1137 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fa635623caf165748e36ed43ac5aeda9af815028
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..734f3b512e70aa163807e441dcb6e59022bc5da9
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.xml
@@ -0,0 +1,972 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ca7fa55d67186f703f3e7cc7f078fb60ab33b2be
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..69ffae3fbbd3c501f42420560f28e2890c3ca697
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.xml
@@ -0,0 +1,1137 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0b448134e44256fcd014340461131e92a7f87165
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4026a502a9a405ebdc919afa948b86e83fbd0e20
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.xml
@@ -0,0 +1,1137 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5b70852e03a4b4482f7fc6220140a0d83acf53bf
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..63b8742ccb57cf471c672ecb91d83ca8f224e86b
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.xml
@@ -0,0 +1,1126 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..096655e8329be2ba25d4393344b95d3fe241849f
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9df5cbc5c8317817496c34a9cd9af967d013c089
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.xml
@@ -0,0 +1,1137 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.jpg b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1a725d3c0ba6f8a621d893ad1473279c7b09706f
Binary files /dev/null and b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.jpg differ
diff --git a/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.xml b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..46e7d71564b325c5a2d4161c2f02a3b7cf577e77
--- /dev/null
+++ b/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.xml
@@ -0,0 +1,1104 @@
+
+ augmented
+ 049b1e2c-IMG_20191210_165339-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/049b1e2c-IMG_20191210_165339-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..497285815ed63539f59ff03049369d657ff65d4e
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8c6132c9ba132c5f8d3873c2acde3e15eec26777
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e90fa59d33648b3d3433efb13fef7f00d9d4861b
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..889d618604a846fefec2f6157b75acfc013fa762
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.xml
@@ -0,0 +1,785 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f89bcfe15441cee59a6d399f2c7fc6efae260ca9
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ad2bfb6868cc3391981e2aafd25d26d30e1a7889
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f89bcfe15441cee59a6d399f2c7fc6efae260ca9
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ff9d30729689f5a0e3f8fb8d5c948d8784e5ce84
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..df830677b511bfd0f521a13f449f5a255b31f3a3
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..74968756c3fbe18ee54e6eaf56cbce09834f99da
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ca34319c3f077fbd06c6f861dc93cffecbdf50ed
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d2e9d5c856624120999836a790202caf3a9314cb
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.xml
@@ -0,0 +1,763 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f439dc6aef9d138b7e4a4a0d0bb2a2591edf9e6b
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3bd4f3b067d72356f8001c522d8e9b7cba6a6958
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..859a76cb72febf34235f150f9a8a17893b79c539
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..78eab4b5dd48e9f17dfba3d857bbd5eea59db3a8
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.xml
@@ -0,0 +1,851 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fc8dcd16be3e07bb01b53ff2acce0546259f89df
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5b8f8fabe80b9f6ce3140df39a50b765c3a0e9a5
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.jpg b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a0027689fc2122785e2fd862207087fa4da30aab
Binary files /dev/null and b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.jpg differ
diff --git a/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.xml b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e129cf990b8eed6bad01097c308628cf93b51be1
--- /dev/null
+++ b/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.xml
@@ -0,0 +1,752 @@
+
+ augmented
+ 171bfe01-IMG_20191210_163647-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/171bfe01-IMG_20191210_163647-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..34159cd877d49b0c0d5669cea36ce42942ed75ae
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c82aae7ffd06843bc05ccbd9fa626e03b1b117f3
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1748ae9bcb2300a1afd7e4577f32c9619008c48f
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3fd883b4d94011c9ce0e3a99f451feec28480ba0
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b83e18edd78c4f4ccae184194829969fea53a102
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9561d6a7bf4182518ac12d842f34bd270b0dd62b
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.xml
@@ -0,0 +1,620 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..938549715902dfb0410d69b99035e1e0d0db7f68
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..046c7d2652f8c50b4b60f5e3fcf2d7bcc189e819
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.xml
@@ -0,0 +1,598 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6afa84cab33e9b3637fa27779eb471dd29a57046
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a0e03d7fecc640a4001deeb6769214421888fb02
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..617f812d42063615f8d31c7547abd2a38e47ce22
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0ee28cf297ad1255ef305876662dc21c8445ddab
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.xml
@@ -0,0 +1,510 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..aec45b9d1ebdebdbda923f44040e79691dc11d95
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0c99b9bf45636c0dcc192529fc8ecff2b63e06b8
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.xml
@@ -0,0 +1,565 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..244c0d74e4aeacc1c17eeb1533075f83a0a9134a
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e58e999fc38a16cfb167e36a213cfb16cf98d287
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..89d5a87f35be0bd8811c1823260372c94ba44b4c
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a41755329b712e3ef676573e472694dace9bb810
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.jpg b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3a6d737503324319a251ca461e152682fd3c7bad
Binary files /dev/null and b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.jpg differ
diff --git a/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.xml b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c8abefeec67ab704fa5e24b0d7535e1d03390b77
--- /dev/null
+++ b/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.xml
@@ -0,0 +1,543 @@
+
+ augmented
+ 1c9a0a9d-IMG_20191210_162402-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/1c9a0a9d-IMG_20191210_162402-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..440e22a09528e2650bb34091c2d4059920bee99e
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c4c0d20115bb1f513d790ce2aa8ad4d83c00f8fc
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..62a943cca725269207cdc1476ee664aafce541a0
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3de2dc568664d5b29f56a5f2c2e4a5f2a6664c97
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..70c92eb558b0c67162468420095572459e0b0b26
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e84d0585bcf6583c975d5b19d848f45417737f60
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4c50b6f4fd0e3e7c65474c118ae87352fb977e31
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2f528366e2c3fc6f699c669cf59df2c5f18f0dbc
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..719d1eec6136d285c0b01e395ae7bd24ac26b792
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7e528882c32e7eb6e0857f9ed418fe58f1f5fdda
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..100d87d442a063210ee90c4c7e71391c1c095ec7
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9ba4cc2de82eefcabe02c6746671999570e8a5fd
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..aea0c5c874cfcdb529bab12ab1b960be8020e254
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cdb679ad8eead7bc88c6b7b8c524662b905ecbf5
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..54eee447b43c8131975aba562bb21ff910867151
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c397c3b4da16912a2b603ada3414b11b4ef652b8
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..24a8bea1571cfa8a7f50d6331fc9b7fc6ce66246
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..15e78cc8d7841eebcd5a19f5a9b14079405ec336
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.xml
@@ -0,0 +1,389 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.jpg b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..de1572a07cab77f3c567f2380b8365080d14b718
Binary files /dev/null and b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.jpg differ
diff --git a/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.xml b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..90cfb409a572b4ddfaa244be1de1017ae691bf71
--- /dev/null
+++ b/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ 3b3fd5eb-IMG_20191210_162238-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/3b3fd5eb-IMG_20191210_162238-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..692b850ebf1ae0b18557910c481442b3eaf819d6
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..453f925640eb9bb53fa1b0079765b06875dd9389
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..13d011693ecec895c94201795d037409bd9705e0
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..df974e677e29b240d045326ace6c547c7ffafc18
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..096cb8d6d0203f0a39bff9f673fb658153f5eeb0
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..443012e14b6fe3eb4b3c9ae6290f755441f029ef
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.xml
@@ -0,0 +1,620 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ac5743ea55bf2c7a3406b4b6c1175e176194aecc
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..95dc8e1a877902abca1a086ff584e7be458d9613
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..00c76f6db4370ab2df691fdf05b21d6944b68194
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..894f2778a0a9fb563d27b4afcfbf56a294ea44d5
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.xml
@@ -0,0 +1,642 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3a1d07cb1c22690289fd9578332a28f3540032a1
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c36337543c447bf8e6a6eeac7530f2a74cb38653
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bdc60be8ca06173db964efa996e40a8c225fc9a5
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1e421b292d64ac9219fd877c26d8419b2f381dc3
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.xml
@@ -0,0 +1,653 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..16c250a0aa5087b9623b36599ce02b6f68a38e02
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7d04adb478a130b4c994c5c82909d9c1bcb27f51
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f2291882c193d0428db12728f9d0a906a708aad0
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7a777289d7c5b6a75a6085cbdd085b9d9f11df03
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.jpg b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c3fcf35a810d6269b310f0fed8697103e7702e1d
Binary files /dev/null and b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.jpg differ
diff --git a/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.xml b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1cae3f19d80bcdedb583f47e0164d05c17672480
--- /dev/null
+++ b/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 4216930d-IMG_20191212_150409-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/4216930d-IMG_20191212_150409-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8a509b48734600d79a94a5615f54e77b8deb765e
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..242c65ad633189e75a7450940e43b54fc577d1cc
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a834e00326285456e81cee3bf6782090decb9b3e
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5ff125948363e612cc736c20e0a921d030044ad9
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2822f2fbc80a7ab3a96d572b58b5b886686dcbf3
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4f3170f7996263575d7dc189730f5c70715d81bb
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2822f2fbc80a7ab3a96d572b58b5b886686dcbf3
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1a16df8d546bc7ed82da04686614113a76b65e68
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9f937a6eae785d3cd742aff13ba3f80cb7ee2af6
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..638a104f7fa7c79c07a04c300990a2024151a8d5
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.xml
@@ -0,0 +1,994 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9c065a03931b1dc56975486e7ed6aa164ee1ee5a
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4913633ab91e77c9273f7d1db9a12ce76f349c35
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e1312f5c914db5a49fafa28688129849f24b572b
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..268a6f64c47fb9e6d7e015ec4e84453b6c4b26f7
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..761c9b7c1717f535034c2c7b5209dd95e03ce2cc
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b376b20900172279d87a9cc8e0bf43f886938d75
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..153b4eece742549be38a3877bbf535c6a1027313
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5996389ec5f8a2e5c8eff2d55ec7fe1c6e17560d
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.xml
@@ -0,0 +1,1148 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.jpg b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c6fd29bec43116be36ccb79e7e0fa3d1ed029d02
Binary files /dev/null and b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.jpg differ
diff --git a/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.xml b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fb394ea648e8df3bbf25e3fd7d7c3ae65b96d71b
--- /dev/null
+++ b/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.xml
@@ -0,0 +1,1115 @@
+
+ augmented
+ 6794cf3c-IMG_20191210_163551-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6794cf3c-IMG_20191210_163551-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..de18ef11a674f9f655d4acf178d75d567722e0e0
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..77964dae4436b943df365a44246d6273772d409f
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.xml
@@ -0,0 +1,785 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..46a3e2457cbce6bbcf85d16114cc1164d3fdc9dd
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f84753e65da1b23667c011c4b43d79173ac4ec84
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..68169ea2288de2f1a055af9c039d05c4c9a01b4b
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..81ec706583ed533424cc05dee3bff8da5e2416b8
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.xml
@@ -0,0 +1,752 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..95b0f84be69ff7a779bb4cddbbd782d60f27bb83
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c1ae839a790ad8a2b4411fa468e7142d071a2410
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.xml
@@ -0,0 +1,785 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2b1214ac6eb1aca5f5223363e7a8185d4a99e557
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5326242b123737e8591de702cf4da0e83e8d2a67
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.xml
@@ -0,0 +1,653 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..69593243ed329b14fc12b803813147cf4171e10c
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..82cbcc6965381d6b6d4cb5449a4f3a270ccf8050
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.xml
@@ -0,0 +1,785 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..12f19d25c4028fbf8d3599e9ce7148d1ced3d3e9
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..baa3c01a7738a1b9de8ef149886895f08f696244
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.xml
@@ -0,0 +1,730 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a0453f322a9a83eddbe7a6de7cdce1b3aa6503d4
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3dc274eb3650a5a2720383e1377b9adbff6c5fa4
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.xml
@@ -0,0 +1,664 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..923d85e22e0ed6fd945060c3a1102a10062eb9ed
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..31b7363e9764c87a60f674f6482b3c941492cf0f
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.xml
@@ -0,0 +1,697 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.jpg b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..212c4b5e00337546a7baef748fdc4dfe022af342
Binary files /dev/null and b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.jpg differ
diff --git a/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.xml b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b0542c411a95a295d022d6e4c54a53517977bcf3
--- /dev/null
+++ b/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.xml
@@ -0,0 +1,785 @@
+
+ augmented
+ 67fa2530-IMG_20191212_150630-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/67fa2530-IMG_20191212_150630-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f282f6fdc0e5649dd5734ab494cd0f862ff9266e
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..71f543e14ff88c6e21ca7d22ff0d4a95665a16fb
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.xml
@@ -0,0 +1,686 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-00.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f969a3f1d8af072634c580ce787e5d119157d08f
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2648a767c39484bc88dcc7e260278c43ebd8223d
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.xml
@@ -0,0 +1,730 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-01.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..464fb523145245ad418a0c1c14b56db629b1fa0c
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d1397ceba6ed4f9650bdee24b018d5ee1cc9ea23
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.xml
@@ -0,0 +1,774 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-02.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a46ddd97ccc599682c2ef9442010494ec3a6bbd8
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..87b0cf4ffeee508d4b1851144f0d72fbdc2a97d4
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.xml
@@ -0,0 +1,862 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-03.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6ed38c01565ec061ba0a40d98bc983aabe4dd99f
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..937e535be077941d1d2d65628db39fd689a298e6
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.xml
@@ -0,0 +1,862 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-04.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1af9c43abb4459afab546ac9ccbab3c67e86eb8b
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8731e8309fbb77507356d173dac1f7172f3e155b
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.xml
@@ -0,0 +1,631 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-05.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..95e0be2e3791a7a066a1ea44d3ef0b75c8ea89a3
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d49b76108bc42b9dd14d0d75fd731f3321633f04
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.xml
@@ -0,0 +1,862 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-06.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c597e470108332d9788729a1ac32dfca002e17be
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3566eb0e02adbc857fd99755ac81dd3887f7e4de
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.xml
@@ -0,0 +1,862 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-07.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..56dcedaa5b2247fcedf193bf06e15522750fbe9b
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bba48b8b39db100b46bec5597566ce46c5a9f65b
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.xml
@@ -0,0 +1,862 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-08.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.jpg b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7b3e18c5d88387d57e32fdbc40955c24ba544359
Binary files /dev/null and b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.jpg differ
diff --git a/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.xml b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7ef7a1819c27c4c6b07e0dff0f69fb9521505440
--- /dev/null
+++ b/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.xml
@@ -0,0 +1,741 @@
+
+ augmented
+ 6a909945-IMG_20191210_165231-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6a909945-IMG_20191210_165231-09.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..409b1c846e3a4eadf4b8b5d02126f9e8b6434e2b
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e6ee215fd659e7db5a7ffd5f38abdf33d63a2a40
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..40b72438f9b58b33a01cda1dc05a44adc26b399b
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..eb4a1db6525d980a7efc71ae3f76a78b4dbe95dd
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..880bab3051412e878292a1813175eaa385fbb98a
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..beee76ad728804a06a0d7a383e08ead257deb20c
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.xml
@@ -0,0 +1,587 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0eb0c3180d5ce52e62b4b193b4fb4aa515e0f572
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fea81590c16e79cb52f3d6f1ffe7a55e10616232
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..34299f4ea82f540ef9f472da8d95e43b41ce1ccf
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f9c0c6f8c9db739e1e25c5534be058298c45a2b2
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..34299f4ea82f540ef9f472da8d95e43b41ce1ccf
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0ab0b50073fd910f1d05ff7f381fb1cfde32c383
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..dca07ae6a13fbb9e30c91f147984930e9c567a08
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0c6615f865370ed8d6137c8979fe7134e51544fa
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.xml
@@ -0,0 +1,664 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d686b3f75cf7f411bb787a7f1b84b59488cc5c3e
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..22262d4ea3de80b04dd36b82afb37653004cb6b8
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.xml
@@ -0,0 +1,609 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..557cd11f4515ce12b754259bcf070affa8913be0
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3ba131f2ac41e6719e9260ab1912e623b822abf4
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.jpg b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4621ec1a51363bba084ea4edd5f18ae967ede143
Binary files /dev/null and b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.jpg differ
diff --git a/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.xml b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3e02fcf9cd99b419fefb48dbf490804d005a1491
--- /dev/null
+++ b/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.xml
@@ -0,0 +1,521 @@
+
+ augmented
+ 6e8b1a34-IMG_20191212_150315-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6e8b1a34-IMG_20191212_150315-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4639dc5c17b9f23505f520ea3c45d1837bfa0be9
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1f75ff1f6a63bff9802fc0cb38a5c589b9ba7dc7
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.xml
@@ -0,0 +1,972 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e849096ae693bb9ee96b7913e1a3115922e17eb2
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a148fe1cb147a4e6f914341490a06c5721a36962
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0f39b43619e45ae648836fd9e33c5dc201e828e2
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..106178cb0ca2c7c133107b541672de4f67d8b3e6
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d5479add6b9314673d6132be6d90eda095420457
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9d6c8d94c9d7d95f66033e506a275da1edb856d0
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f8832fd43f1a81f5470d3df35713d900ffd9570e
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0bfe757d452d3e1dcd288c088f0a345e62154daf
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.xml
@@ -0,0 +1,884 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ff9d1c8828d13c1969385369069629a58b6a35c2
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4e753ef146c486a4002b4c532f7ded57c1755ef4
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..975cd9628a75aaa753200ef11507738136945b34
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..958c570dd1de9c3a803d8c831ca105c4acadc7b5
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..024fb1e610045860a4b52b7c637183c69901750a
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fd1ca513daa5efe1ed30271239912d1c48d2e3b4
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.xml
@@ -0,0 +1,884 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..27356c472c411e3841c32301fc8a93c786616a67
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d126152bbfb1ac11d0fef120a4b5111a0033c574
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.xml
@@ -0,0 +1,961 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.jpg b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1b14103e90a7c6c2fcebab48dbae0bd73d627c31
Binary files /dev/null and b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.jpg differ
diff --git a/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.xml b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b176817a3323c0617ffb3f27eeb3ca1063b6ec25
--- /dev/null
+++ b/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ 6f112e38-IMG_20191210_165434-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/6f112e38-IMG_20191210_165434-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1724a65d502f040e1f47f8af652d361342063203
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..58c70c8e5b0a6855d669d56b3a8b2528e43d2034
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7b36c3b7d3bcca61b361048bbe13aee5b7045cfb
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..df13c3356b5de187ff08e7680dc9f094b673594b
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.xml
@@ -0,0 +1,939 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f79e590245379225700ace58aaefcd234684259c
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9e34f14203c2ea831d4b58e922498e190a10fc4f
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d3bba412d7949d6d644d6bbc0eb665ec25aa7034
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..394ff1baafe12a2aba78f6ee34064b19c01e08bf
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e85ca880b83dd1295d9a6695688ed076e1a7d9b4
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..095e282cf4797dafdd7cb9b6533abf084a3e321e
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.xml
@@ -0,0 +1,972 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..818288255ad3858f589df59d8677c8ca8dc914da
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d10dc5f3c520aee7b01fbac7671fd633ea5575d0
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..53139a51c1e32487b1be74527177b4956fdff830
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..272f6d3e2ce878fb8311b00bdaa2983e0564048e
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.xml
@@ -0,0 +1,961 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7699acfed561f3b3ab1b0eee70aa99deb96d0f9b
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6731103f434eb19588cf471005d3bf02575e2603
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.xml
@@ -0,0 +1,972 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d3c17476c90be0996d2db9b850527e8ce0228371
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bffd12f51e79fc4a6fc5761298dadeb7555cef64
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.jpg b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..804c77ed51f4d1abaf1530ddbeaee231c03ff21e
Binary files /dev/null and b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.jpg differ
diff --git a/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.xml b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..33cb45c0756745142fa276aaed0933c1e01de089
--- /dev/null
+++ b/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.xml
@@ -0,0 +1,983 @@
+
+ augmented
+ 84e35c3a-IMG_20191210_165137-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/84e35c3a-IMG_20191210_165137-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ee8c890fe5043c8a0aaeffc0e718b851f269f1af
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1a06a1514bb4c3ea12be68d839892514637487ab
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.xml
@@ -0,0 +1,1049 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-00.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1f07eae38ea3848489914b4dd6e904c7f1a046b5
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3fd54df33839abb2a4a3cb9b9a5d09ed31482ce7
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-01.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..39d8599a4beb38ab570de07cc28101f5a4bb2e4c
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ff5ee1d59839c758d541eb55a5eb6dc4977045dd
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-02.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b2df59a210760ba2d0a5f652163dfd3c8f00b72a
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6c14ee0fd8b71666f60b48ae1efc7b5030de0bc3
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-03.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..547dffa39e4324786f6e60b7825dd16c2a96e3f2
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8e22c1561881f1e8aa01b89d9d2064423162ca2c
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-04.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..db88713647ca412a811354716bb5bcb21d8d5f8c
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2c858da312bc484da64d3c1bf19dee582f29c85d
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.xml
@@ -0,0 +1,851 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-05.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..13b6bdfa806a5a1df06ac31cc32fcedf86522d08
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cfd46e3afb35dbd159b46a1bd205d790e5912593
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-06.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..35e2b3686441b66c081a76e8b2704938b8477007
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c0752a0ecd0d023cbcc96463bba1060f97128a1b
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-07.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e5bd4fc3d934cdb295d5b3b107537cd70dcc1ac2
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..82ae09d8a570f0bc7e9ab4c803a2e661a95fc89f
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.xml
@@ -0,0 +1,1049 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-08.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.jpg b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..eb452916f3b735b5b62963d550f49de23cf613d1
Binary files /dev/null and b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.jpg differ
diff --git a/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.xml b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f60fb82da383142ec71e961dec68e8e17248774f
--- /dev/null
+++ b/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.xml
@@ -0,0 +1,1060 @@
+
+ augmented
+ 8b60366b-IMG_20191210_163454-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/8b60366b-IMG_20191210_163454-09.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..40dd6b39b0c96af1331be90b37479b46722b5dd9
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a32fd4b78cfa0d1e6d77d75a1f29ff5e58a75e99
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..80e3bcd99f096bee9caa1dd71bda9291fe129da3
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9ddeb486f3e3214d6a897f4a00167bef03d51d65
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4745ba839281187c0e832c1e25ff64ebb7691423
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5a37ab3c3915ed55184ac38f3cdb6f6f31ed2d30
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5ef8bd2d72a710a789bd8a8b914da1fdb04287fe
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0f28b4e533bb1db8225f995384e8f87f6561999f
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..471af00b53208b79df67fdf7293cfe6654fd6293
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..30367ab78b26169956a30e581e48738a1dcbfbc0
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.xml
@@ -0,0 +1,378 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6851c93c58250c3d0ece092bff2e3e6be3c21526
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d185320ec2a3dc9397d3188b782b2eb5a2499dfe
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.xml
@@ -0,0 +1,345 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8d6d864ad0d49a69d0609d2a4549078368ec4178
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..729a762ac13665a4a73ff80e32d9806eaaca19e0
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.xml
@@ -0,0 +1,378 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1b43f0f314a1f05001fc0c96503fde1b233384cf
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..de079babf7722305c3cd34500a2a3e6d248003d8
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.xml
@@ -0,0 +1,378 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..344fa2a9a8e0bf52375fe20865766c33946a5029
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..71dcce46826b03f09026da8d180b4010d4915f94
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.xml
@@ -0,0 +1,356 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.jpg b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b21476a67408f057bf1b617361b5019ccbef60a4
Binary files /dev/null and b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.jpg differ
diff --git a/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.xml b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f9bf99efe52e22043da1e0bce888e4f06974f808
--- /dev/null
+++ b/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.xml
@@ -0,0 +1,378 @@
+
+ augmented
+ 9a710c33-IMG_20191210_162520-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/9a710c33-IMG_20191210_162520-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bd82a70620ad9e09754ba752ec3124b33f7e5bce
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..44843ee8329efc94679110daf9cbfa247aa11299
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.xml
@@ -0,0 +1,895 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-00.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..81b9a9d5d98ec7886267d0fd871ba01e7272a374
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5eb8763adecf486a465ba79d14c655b6b7f926d7
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.xml
@@ -0,0 +1,1038 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-01.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9a3801670ab1e91230ef9ba0cb22f9abe2a7ad75
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f24b5881b35793004c7cf93be3bcc255fee0f421
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.xml
@@ -0,0 +1,1038 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-02.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..601d42baa309224de29cdcb75816153aa86fe3f8
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1f50569577e25fa45b77734ab59621344415d58c
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.xml
@@ -0,0 +1,884 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-03.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ae59f6b608ae17a672b718c32cccaeb04d89bbce
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8af60dfcb037cec1678642ad517783b165381cab
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.xml
@@ -0,0 +1,1016 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-04.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..893ff7a160a23ded84714a283ac44581fd5fe1b8
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1dbbe933403f04d5111d4d4948f8b31f68ecc71d
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.xml
@@ -0,0 +1,928 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-05.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b2dcede53c2477a138715e1b511a9402d32d91a4
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c9b0ada92b6a48c6c1d20a357103dcb7d73327ef
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.xml
@@ -0,0 +1,1038 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-06.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..383bc11e05fd2a4fbe9d8d1f5fe94b77b4cf5cc3
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0f190b9f39c9d724234a7e7bdd7eec9b0420cc29
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.xml
@@ -0,0 +1,1005 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-07.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..949e13b575916ff29f1d2fe03269eeb9e230546f
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..35059a2abcb50e2ad30495ccf8294bf96704c69e
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.xml
@@ -0,0 +1,1038 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-08.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.jpg b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..783eb019f96b534453812d8f44c102be6092e4fa
Binary files /dev/null and b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.jpg differ
diff --git a/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.xml b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a60187532d1cae7589439d03d3c09339d2d55ddb
--- /dev/null
+++ b/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.xml
@@ -0,0 +1,1027 @@
+
+ augmented
+ cee3e231-IMG_20191210_165603-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/cee3e231-IMG_20191210_165603-09.jpg
+
+ Unknown
+
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5550565cd472de30047ec88a52ef32a623d80498
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1b92a0bcae7e1fc8a374ef6f9a4abd4dfe2e654f
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.xml
@@ -0,0 +1,554 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-00.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..14d696d52448cc035984ce6d98c9805b634f07b3
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a465f2695a7de3f9adb6926370a0a089571e73e1
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-01.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8475c117e6768dbbfe94680f488c086173510f31
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6011e5a7fc575f6db7b5db763d90800b6c332f6f
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.xml
@@ -0,0 +1,543 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-02.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..777779950c44f96eb04791582ce4a750c654019f
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ee53d47ae13556b52d4dd0385e37613cf9536ab8
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.xml
@@ -0,0 +1,554 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-03.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6acbc3384ce5e30f20e5b0c7b5ba5533cf544d56
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..261a540bc469a9c810632528012ca2c90f43b4c4
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.xml
@@ -0,0 +1,576 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-04.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f19568c7a0807ca5094743db5862e76b4ac78b1a
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..58594eac39285315af71b3f07617edf91af329d9
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.xml
@@ -0,0 +1,576 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-05.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..da31bb95819a1cb0ef289b77ec6a5a4005e58865
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..230bbbdb9561dd0f2a7a3a2576f865084de6508f
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.xml
@@ -0,0 +1,554 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-06.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6a1dffda56235144eed67142e83ef693a6b52b02
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..93ca47da5cf37a7f672fe475f78a9d0269d5d824
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.xml
@@ -0,0 +1,565 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-07.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ca02de98082e3179c10d9b8ebc197527dea81362
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..25927493cd9e7facb43a4da52dcb8a06b47ada4e
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.xml
@@ -0,0 +1,576 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-08.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.jpg b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0ce7e6dc07d4de208eda18cf9db596e8b512f916
Binary files /dev/null and b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.jpg differ
diff --git a/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.xml b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1783464c2519203048d87fea41f0ea8b033060a5
--- /dev/null
+++ b/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.xml
@@ -0,0 +1,400 @@
+
+ augmented
+ d48f45de-IMG_20191212_150539-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d48f45de-IMG_20191212_150539-09.jpg
+
+ Unknown
+
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..528ae2e3bda7e052c1cd64fbf784c89c8c65c936
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..65bf8a25172e7a02c5512fdc8aaa0eb6e364dda9
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.xml
@@ -0,0 +1,367 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-00.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3d371b9c1cd7377c8c5e6e785bdf521263df4e18
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c83fa076393ea41f6f14ec05fb520c5312ac57f7
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-01.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ed6510e3feeafcdb232f2dcaf36e2a3d8b566ffc
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..56377897fa62276c040d0f11b740bfceda7bc09f
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-02.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..858cbc11cd878f380c0f6fd66c6dd6b39d946cdc
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9a6cfdb1d060f2f635ce5c932674c2cada46ba68
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-03.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6003507001855aeeb4fa8045cd663b1cb9f7d1b8
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..95f18c826fb30fe35ded9f11f349b6fe32a39c7f
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-04.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..65012ed0a5ae7433bc2f4b7e8b7745b98903936f
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..675306d086a2361c0f9449ead04c0fd26733bf20
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-05.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..eecf066be169b4a81b7dcec3b9ba48851e140cb0
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d5fb53cfd4474aaf264fddfe788a101da71c7ed8
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.xml
@@ -0,0 +1,477 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-06.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ca61aca80fdf01224549994c6dd433079eb0bb35
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..97f388d7c03d71c453794cbab7a1d54d736bb2c9
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-07.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d711363c471c11c46cdeab3056e4404caa10a042
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..457b1b56e7ff291216bf38a0ab12c30edb131d50
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-08.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.jpg b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..891c5beecfdef405089f9b74bc74eb47207bb3c3
Binary files /dev/null and b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.jpg differ
diff --git a/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.xml b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..90819b81f9d03d6a012f10aa292851598a217032
--- /dev/null
+++ b/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.xml
@@ -0,0 +1,488 @@
+
+ augmented
+ d7c62c39-IMG_20191210_162102-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/d7c62c39-IMG_20191210_162102-09.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..70f1d846fc12f148ec9e9f81ef500325f754461f
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3cf87e5698f4635e60e86d92a05b9b2702f199e9
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.xml
@@ -0,0 +1,939 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-00.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-00.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..34b98b968ecc1570ee3c419e0bf9aca5e4ea3f62
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a9a23e501ec84efbc0fea7385d566230b6f541f6
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.xml
@@ -0,0 +1,708 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-01.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-01.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ed050c81b94f49b601d936f88a40caca9abb4f41
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5ca4bea10877cff823964a5b30e70b8d28d812ab
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-02.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-02.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4b16d75bbe4875e96bd5ccd38abbce080698e28b
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b6b942e7a2cdd477be2375f1dd463aca48519ff2
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-03.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-03.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..847829faa9bab5bef8a306b1d455cbc9493ca1ff
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.xml
new file mode 100644
index 0000000000000000000000000000000000000000..77afef20af4421b97ee0bd08eea6d56565c97499
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.xml
@@ -0,0 +1,928 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-04.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-04.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..82d6ede0e58878e998e7928f9552f51639ecca01
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ee661fd5bc153690534bb8b3511e2bdea5f0e1ff
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-05.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-05.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c9e6d9284c685295e090bf864cd43a471a0ad006
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b3eb5aaa5a038727dc45a4630ccec506e86be995
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-06.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-06.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4fcde6027118a7ed51beed7894967f3283b436ec
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5be7093010c905d98f73e99ea042806333dbf8e1
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-07.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-07.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..122f354aea79d6e93558940e87cf9d6dc4a69baf
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2d0a965b133d906adea36b0b503c2ac06f3ae62b
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-08.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-08.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.jpg b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f8f05d39f0711b2fbde918b758fb8f49280c678a
Binary files /dev/null and b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.jpg differ
diff --git a/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.xml b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.xml
new file mode 100644
index 0000000000000000000000000000000000000000..23145e9b3c35dd683529755cb981909ebbe8e9c2
--- /dev/null
+++ b/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.xml
@@ -0,0 +1,950 @@
+
+ augmented
+ f377d81c-IMG_20191210_163333-09.jpg
+ /home/dnth/Desktop/webdemos/webdemo-microalgae-detection/Images/Annotated/augmented/f377d81c-IMG_20191210_163333-09.jpg
+
+ Unknown
+
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
diff --git a/Images/Annotated/coco2voc.py b/Images/Annotated/coco2voc.py
new file mode 100644
index 0000000000000000000000000000000000000000..da96f132e30cac0e0276ff0fb7a663fe691bed85
--- /dev/null
+++ b/Images/Annotated/coco2voc.py
@@ -0,0 +1,101 @@
+#encoding:utf-8
+
+import os
+import json
+import cv2
+from lxml import etree
+import xml.etree.cElementTree as ET
+import time
+import pandas as pd
+from tqdm import tqdm
+import json
+import argparse
+
+# Run this command
+# python coco2voc.py --json_path result.json
+
+# This creates xml file in the image directory as specified in the json file
+# images + json inside images folder
+# converted xml file also in images folder
+
+
+def coco2voc(anno, xml_dir, rgb_img):
+
+ with open(anno, 'r', encoding='utf-8') as load_f:
+ f = json.load(load_f)
+
+
+ imgs = f['images']
+
+ df_cate = pd.DataFrame(f['categories'])
+ _ = df_cate.sort_values(["id"],ascending=True)
+ df_anno = pd.DataFrame(f['annotations'])
+ categories = dict(zip(df_cate.id.values, df_cate.name.values))
+
+ for i in tqdm(range(len(imgs))):
+ xml_content = []
+ file_name = imgs[i]['file_name']
+ height = imgs[i]['height']
+ img_id = imgs[i]['id']
+ width = imgs[i]['width']
+
+ if(rgb_img == "True"): depth=3
+ else: depth=1
+
+ # print(depth)
+
+ xml_content.append("")
+ xml_content.append(" VOC2007")
+ xml_content.append(" "+file_name+"")
+ xml_content.append(" ")
+ xml_content.append(" "+str(width)+"")
+ xml_content.append(" "+str(height)+"")
+ xml_content.append(" "+str(depth)+"")
+ xml_content.append(" ")
+ xml_content.append(" 0")
+
+ annos = df_anno[df_anno["image_id"].isin([img_id])]
+
+ for index, row in annos.iterrows():
+ bbox = row["bbox"]
+ category_id = row["category_id"]
+ cate_name = categories[category_id]
+
+
+ xml_content.append(" ")
+ xml_content.append("")
+
+ x = xml_content
+ xml_content=[x[i] for i in range(0,len(x)) if x[i]!="\n"]
+
+
+ xml_path = os.path.join(xml_dir,file_name.split('.')[-2] + '.xml')
+
+ with open(xml_path, 'w+',encoding="utf8") as f:
+ f.write('\n'.join(xml_content))
+ xml_content[:]=[]
+
+
+if __name__ == '__main__':
+ parser = argparse.ArgumentParser(description="convert coco .json annotation to voc .xml annotation")
+
+ parser.add_argument('--json_path',type=str, help='path to json file.', default="./annotations/train.json")
+ parser.add_argument('--rgb_img', type=str, help='True if image in rgb', default="True")
+ parser.add_argument('--output',type = str, help='path to output xml files.',default="./images")
+
+ args = parser.parse_args()
+
+ if not os.path.exists(args.output):
+ os.mkdir(args.output)
+ coco2voc(args.json_path, args.output, args.rgb_img)
\ No newline at end of file
diff --git a/Images/Annotated/images/049b1e2c-IMG_20191210_165339.jpg b/Images/Annotated/images/049b1e2c-IMG_20191210_165339.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..17c5d2d3e5aea8ca7bb8c160528cefcb36fa5dbd
Binary files /dev/null and b/Images/Annotated/images/049b1e2c-IMG_20191210_165339.jpg differ
diff --git a/Images/Annotated/images/049b1e2c-IMG_20191210_165339.xml b/Images/Annotated/images/049b1e2c-IMG_20191210_165339.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4a14d744eb4c116731687dbd61829ee75a41aeef
--- /dev/null
+++ b/Images/Annotated/images/049b1e2c-IMG_20191210_165339.xml
@@ -0,0 +1,1234 @@
+
+ VOC2007
+ 049b1e2c-IMG_20191210_165339.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/171bfe01-IMG_20191210_163647.jpg b/Images/Annotated/images/171bfe01-IMG_20191210_163647.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6c5642259b9ccffd8e9ab32613043186e29361e3
Binary files /dev/null and b/Images/Annotated/images/171bfe01-IMG_20191210_163647.jpg differ
diff --git a/Images/Annotated/images/171bfe01-IMG_20191210_163647.xml b/Images/Annotated/images/171bfe01-IMG_20191210_163647.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6d9039b2c31e443543bb4cca47f848337ddd9a1a
--- /dev/null
+++ b/Images/Annotated/images/171bfe01-IMG_20191210_163647.xml
@@ -0,0 +1,970 @@
+
+ VOC2007
+ 171bfe01-IMG_20191210_163647.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.jpg b/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a120ddabbd4bf22dd12452d58d97b6186ca500f7
Binary files /dev/null and b/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.jpg differ
diff --git a/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.xml b/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cb89bff741aad74072e14091455bc1e46f7425f5
--- /dev/null
+++ b/Images/Annotated/images/1c9a0a9d-IMG_20191210_162402.xml
@@ -0,0 +1,694 @@
+
+ VOC2007
+ 1c9a0a9d-IMG_20191210_162402.jpg
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.jpg b/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..598f6d5f007cb4b0f187f06f374a4a3601b72ca8
Binary files /dev/null and b/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.jpg differ
diff --git a/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.xml b/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.xml
new file mode 100644
index 0000000000000000000000000000000000000000..54c1bb8af1cdb34f3eecfc6b511e44b29c333b01
--- /dev/null
+++ b/Images/Annotated/images/3b3fd5eb-IMG_20191210_162238.xml
@@ -0,0 +1,418 @@
+
+ VOC2007
+ 3b3fd5eb-IMG_20191210_162238.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/4216930d-IMG_20191212_150409.jpg b/Images/Annotated/images/4216930d-IMG_20191212_150409.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f64c2f3d5eeb242c59b3437f072960ba3f667836
Binary files /dev/null and b/Images/Annotated/images/4216930d-IMG_20191212_150409.jpg differ
diff --git a/Images/Annotated/images/4216930d-IMG_20191212_150409.xml b/Images/Annotated/images/4216930d-IMG_20191212_150409.xml
new file mode 100644
index 0000000000000000000000000000000000000000..aed2527189a4bed59109cf6d4a33a40893a46f2c
--- /dev/null
+++ b/Images/Annotated/images/4216930d-IMG_20191212_150409.xml
@@ -0,0 +1,754 @@
+
+ VOC2007
+ 4216930d-IMG_20191212_150409.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/6794cf3c-IMG_20191210_163551.jpg b/Images/Annotated/images/6794cf3c-IMG_20191210_163551.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b4c060b4e694f523b375344dd68c8c73a777caed
Binary files /dev/null and b/Images/Annotated/images/6794cf3c-IMG_20191210_163551.jpg differ
diff --git a/Images/Annotated/images/6794cf3c-IMG_20191210_163551.xml b/Images/Annotated/images/6794cf3c-IMG_20191210_163551.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a08066d0dcb4b068d196a3bfb3ffcee1e96b889e
--- /dev/null
+++ b/Images/Annotated/images/6794cf3c-IMG_20191210_163551.xml
@@ -0,0 +1,1246 @@
+
+ VOC2007
+ 6794cf3c-IMG_20191210_163551.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/67fa2530-IMG_20191212_150630.jpg b/Images/Annotated/images/67fa2530-IMG_20191212_150630.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e2476dbff7ff640bdc2910f5cef3d4a387a6d3b6
Binary files /dev/null and b/Images/Annotated/images/67fa2530-IMG_20191212_150630.jpg differ
diff --git a/Images/Annotated/images/67fa2530-IMG_20191212_150630.xml b/Images/Annotated/images/67fa2530-IMG_20191212_150630.xml
new file mode 100644
index 0000000000000000000000000000000000000000..619558fd480bcc0b56290a818da67d2801dd8d12
--- /dev/null
+++ b/Images/Annotated/images/67fa2530-IMG_20191212_150630.xml
@@ -0,0 +1,850 @@
+
+ VOC2007
+ 67fa2530-IMG_20191212_150630.jpg
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/6a909945-IMG_20191210_165231.jpg b/Images/Annotated/images/6a909945-IMG_20191210_165231.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f67de1e5f75995a225a52cf5214f60439731ad4a
Binary files /dev/null and b/Images/Annotated/images/6a909945-IMG_20191210_165231.jpg differ
diff --git a/Images/Annotated/images/6a909945-IMG_20191210_165231.xml b/Images/Annotated/images/6a909945-IMG_20191210_165231.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6ef0bc2f9279d05a0826e42c0b0959bb8f89e119
--- /dev/null
+++ b/Images/Annotated/images/6a909945-IMG_20191210_165231.xml
@@ -0,0 +1,934 @@
+
+ VOC2007
+ 6a909945-IMG_20191210_165231.jpg
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.jpg b/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..92870c173b089e7a2e66cbdf0f6f208dc5149c41
Binary files /dev/null and b/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.jpg differ
diff --git a/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.xml b/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ebd56c5a292af698ea73ea13e9d6d9eb5c126ad5
--- /dev/null
+++ b/Images/Annotated/images/6e8b1a34-IMG_20191212_150315.xml
@@ -0,0 +1,766 @@
+
+ VOC2007
+ 6e8b1a34-IMG_20191212_150315.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/6f112e38-IMG_20191210_165434.jpg b/Images/Annotated/images/6f112e38-IMG_20191210_165434.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..66b7e880e28fdb199f5252c9980fcbe95cc088fa
Binary files /dev/null and b/Images/Annotated/images/6f112e38-IMG_20191210_165434.jpg differ
diff --git a/Images/Annotated/images/6f112e38-IMG_20191210_165434.xml b/Images/Annotated/images/6f112e38-IMG_20191210_165434.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9e7965926c1cfc7ab77cee2d2c8da50af81135f0
--- /dev/null
+++ b/Images/Annotated/images/6f112e38-IMG_20191210_165434.xml
@@ -0,0 +1,1066 @@
+
+ VOC2007
+ 6f112e38-IMG_20191210_165434.jpg
+
+ 2794
+ 2794
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/84e35c3a-IMG_20191210_165137.jpg b/Images/Annotated/images/84e35c3a-IMG_20191210_165137.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f11670b34b3290ce531c779b3ebd918e237a2ee1
Binary files /dev/null and b/Images/Annotated/images/84e35c3a-IMG_20191210_165137.jpg differ
diff --git a/Images/Annotated/images/84e35c3a-IMG_20191210_165137.xml b/Images/Annotated/images/84e35c3a-IMG_20191210_165137.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1685d3cdc84a506a8c172dc72c1aa144b7251eb1
--- /dev/null
+++ b/Images/Annotated/images/84e35c3a-IMG_20191210_165137.xml
@@ -0,0 +1,1066 @@
+
+ VOC2007
+ 84e35c3a-IMG_20191210_165137.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/8b60366b-IMG_20191210_163454.jpg b/Images/Annotated/images/8b60366b-IMG_20191210_163454.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7045bb9e1c328a9ac33bfe174cb797b936f8c20a
Binary files /dev/null and b/Images/Annotated/images/8b60366b-IMG_20191210_163454.jpg differ
diff --git a/Images/Annotated/images/8b60366b-IMG_20191210_163454.xml b/Images/Annotated/images/8b60366b-IMG_20191210_163454.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c186d5cd37f50f1a4a328eed7e32b7713d592837
--- /dev/null
+++ b/Images/Annotated/images/8b60366b-IMG_20191210_163454.xml
@@ -0,0 +1,1150 @@
+
+ VOC2007
+ 8b60366b-IMG_20191210_163454.jpg
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/9a710c33-IMG_20191210_162520.jpg b/Images/Annotated/images/9a710c33-IMG_20191210_162520.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9bb9e22b4ae58707b3855fa9a56fb2e5a8b3be02
Binary files /dev/null and b/Images/Annotated/images/9a710c33-IMG_20191210_162520.jpg differ
diff --git a/Images/Annotated/images/9a710c33-IMG_20191210_162520.xml b/Images/Annotated/images/9a710c33-IMG_20191210_162520.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c77b719898ef8f7b07923f0db877faf67de2d9fd
--- /dev/null
+++ b/Images/Annotated/images/9a710c33-IMG_20191210_162520.xml
@@ -0,0 +1,406 @@
+
+ VOC2007
+ 9a710c33-IMG_20191210_162520.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/cee3e231-IMG_20191210_165603.jpg b/Images/Annotated/images/cee3e231-IMG_20191210_165603.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..57db2d571d03b8bab1ca5afdd27ced819f83ecdf
Binary files /dev/null and b/Images/Annotated/images/cee3e231-IMG_20191210_165603.jpg differ
diff --git a/Images/Annotated/images/cee3e231-IMG_20191210_165603.xml b/Images/Annotated/images/cee3e231-IMG_20191210_165603.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d553de90aa2c3fd28ed61ba8eb73686517875eea
--- /dev/null
+++ b/Images/Annotated/images/cee3e231-IMG_20191210_165603.xml
@@ -0,0 +1,1126 @@
+
+ VOC2007
+ cee3e231-IMG_20191210_165603.jpg
+
+ 2898
+ 2897
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/d48f45de-IMG_20191212_150539.jpg b/Images/Annotated/images/d48f45de-IMG_20191212_150539.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cabac3971323b4ba9d5cd421b6884d92ec8242f0
Binary files /dev/null and b/Images/Annotated/images/d48f45de-IMG_20191212_150539.jpg differ
diff --git a/Images/Annotated/images/d48f45de-IMG_20191212_150539.xml b/Images/Annotated/images/d48f45de-IMG_20191212_150539.xml
new file mode 100644
index 0000000000000000000000000000000000000000..db958e0cd59ce5c2a04ea652cb131a979d03c0bb
--- /dev/null
+++ b/Images/Annotated/images/d48f45de-IMG_20191212_150539.xml
@@ -0,0 +1,622 @@
+
+ VOC2007
+ d48f45de-IMG_20191212_150539.jpg
+
+ 2794
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/d7c62c39-IMG_20191210_162102.jpg b/Images/Annotated/images/d7c62c39-IMG_20191210_162102.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..42809e4cb367a6e6cbcc60dae4989203a9097c3d
Binary files /dev/null and b/Images/Annotated/images/d7c62c39-IMG_20191210_162102.jpg differ
diff --git a/Images/Annotated/images/d7c62c39-IMG_20191210_162102.xml b/Images/Annotated/images/d7c62c39-IMG_20191210_162102.xml
new file mode 100644
index 0000000000000000000000000000000000000000..213acf86733446ce476054806ed331250ced9faf
--- /dev/null
+++ b/Images/Annotated/images/d7c62c39-IMG_20191210_162102.xml
@@ -0,0 +1,526 @@
+
+ VOC2007
+ d7c62c39-IMG_20191210_162102.jpg
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/f377d81c-IMG_20191210_163333.jpg b/Images/Annotated/images/f377d81c-IMG_20191210_163333.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2ffc1722ae485225885c1244db23c6ff12c74532
Binary files /dev/null and b/Images/Annotated/images/f377d81c-IMG_20191210_163333.jpg differ
diff --git a/Images/Annotated/images/f377d81c-IMG_20191210_163333.xml b/Images/Annotated/images/f377d81c-IMG_20191210_163333.xml
new file mode 100644
index 0000000000000000000000000000000000000000..74f8edf6341fb9fb5ab20250f8789bb958863fac
--- /dev/null
+++ b/Images/Annotated/images/f377d81c-IMG_20191210_163333.xml
@@ -0,0 +1,1030 @@
+
+ VOC2007
+ f377d81c-IMG_20191210_163333.jpg
+
+ 2795
+ 2793
+ 3
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Images/Annotated/images/result.json b/Images/Annotated/images/result.json
new file mode 100644
index 0000000000000000000000000000000000000000..3e4f20893542e5cd1f4adfef2ceb52e4785f086d
--- /dev/null
+++ b/Images/Annotated/images/result.json
@@ -0,0 +1,18482 @@
+{
+ "images": [
+ {
+ "width": 2794,
+ "height": 2794,
+ "id": 0,
+ "file_name": "67fa2530-IMG_20191212_150630.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 1,
+ "file_name": "84e35c3a-IMG_20191210_165137.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 2,
+ "file_name": "171bfe01-IMG_20191210_163647.jpg"
+ },
+ {
+ "width": 2795,
+ "height": 2793,
+ "id": 3,
+ "file_name": "d7c62c39-IMG_20191210_162102.jpg"
+ },
+ {
+ "width": 2795,
+ "height": 2793,
+ "id": 4,
+ "file_name": "8b60366b-IMG_20191210_163454.jpg"
+ },
+ {
+ "width": 2795,
+ "height": 2793,
+ "id": 5,
+ "file_name": "f377d81c-IMG_20191210_163333.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 6,
+ "file_name": "d48f45de-IMG_20191212_150539.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 7,
+ "file_name": "4216930d-IMG_20191212_150409.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 8,
+ "file_name": "6e8b1a34-IMG_20191212_150315.jpg"
+ },
+ {
+ "width": 2898,
+ "height": 2897,
+ "id": 9,
+ "file_name": "cee3e231-IMG_20191210_165603.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2794,
+ "id": 10,
+ "file_name": "6f112e38-IMG_20191210_165434.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 11,
+ "file_name": "049b1e2c-IMG_20191210_165339.jpg"
+ },
+ {
+ "width": 2795,
+ "height": 2793,
+ "id": 12,
+ "file_name": "6a909945-IMG_20191210_165231.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 13,
+ "file_name": "6794cf3c-IMG_20191210_163551.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 14,
+ "file_name": "9a710c33-IMG_20191210_162520.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2794,
+ "id": 15,
+ "file_name": "1c9a0a9d-IMG_20191210_162402.jpg"
+ },
+ {
+ "width": 2794,
+ "height": 2793,
+ "id": 16,
+ "file_name": "3b3fd5eb-IMG_20191210_162238.jpg"
+ }
+ ],
+ "categories": [
+ {
+ "id": 0,
+ "name": "Microalgae"
+ }
+ ],
+ "annotations": [
+ {
+ "id": 0,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1180,
+ 2164,
+ 193,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 35898
+ },
+ {
+ "id": 1,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1218,
+ 2320,
+ 78,
+ 227
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17706
+ },
+ {
+ "id": 2,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1374,
+ 2313,
+ 63,
+ 245
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15435
+ },
+ {
+ "id": 3,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1285,
+ 2123,
+ 216,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28080
+ },
+ {
+ "id": 4,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1344,
+ 1877,
+ 115,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23115
+ },
+ {
+ "id": 5,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1516,
+ 1948,
+ 44,
+ 260
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11440
+ },
+ {
+ "id": 6,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1542,
+ 2551,
+ 186,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20088
+ },
+ {
+ "id": 7,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1736,
+ 2462,
+ 48,
+ 238
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11424
+ },
+ {
+ "id": 8,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1814,
+ 2220,
+ 145,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32335
+ },
+ {
+ "id": 9,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1687,
+ 2112,
+ 208,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19344
+ },
+ {
+ "id": 10,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1907,
+ 2052,
+ 216,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15984
+ },
+ {
+ "id": 11,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1788,
+ 1911,
+ 204,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20400
+ },
+ {
+ "id": 12,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1329,
+ 1538,
+ 152,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26600
+ },
+ {
+ "id": 13,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1486,
+ 1899,
+ 14,
+ 18
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 252
+ },
+ {
+ "id": 14,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 905,
+ 1799,
+ 171,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18468
+ },
+ {
+ "id": 15,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 916,
+ 1598,
+ 67,
+ 216
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14472
+ },
+ {
+ "id": 16,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 756,
+ 2160,
+ 283,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24055
+ },
+ {
+ "id": 17,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 454,
+ 2160,
+ 279,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26784
+ },
+ {
+ "id": 18,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1434,
+ 1028,
+ 167,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25384
+ },
+ {
+ "id": 19,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1609,
+ 905,
+ 93,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15903
+ },
+ {
+ "id": 20,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2156,
+ 1292,
+ 160,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30880
+ },
+ {
+ "id": 21,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2224,
+ 1452,
+ 201,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16281
+ },
+ {
+ "id": 22,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1933,
+ 1542,
+ 55,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11440
+ },
+ {
+ "id": 23,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1747,
+ 1318,
+ 171,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17100
+ },
+ {
+ "id": 24,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1829,
+ 1583,
+ 55,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11220
+ },
+ {
+ "id": 25,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2287,
+ 1974,
+ 70,
+ 230
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16100
+ },
+ {
+ "id": 26,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1598,
+ 2406,
+ 204,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21216
+ },
+ {
+ "id": 27,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1549,
+ 2335,
+ 178,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11926
+ },
+ {
+ "id": 28,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1460,
+ 2302,
+ 234,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12168
+ },
+ {
+ "id": 29,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1635,
+ 2209,
+ 182,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20202
+ },
+ {
+ "id": 30,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 607,
+ 2399,
+ 219,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12921
+ },
+ {
+ "id": 31,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 610,
+ 2272,
+ 175,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20125
+ },
+ {
+ "id": 32,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 443,
+ 1806,
+ 145,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20445
+ },
+ {
+ "id": 33,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 510,
+ 1400,
+ 208,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16224
+ },
+ {
+ "id": 34,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 745,
+ 1467,
+ 219,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9636
+ },
+ {
+ "id": 35,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1076,
+ 1158,
+ 201,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20100
+ },
+ {
+ "id": 36,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 126,
+ 1836,
+ 253,
+ 37
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9361
+ },
+ {
+ "id": 37,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 126,
+ 1326,
+ 89,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16821
+ },
+ {
+ "id": 38,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 67,
+ 1203,
+ 152,
+ 26
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3952
+ },
+ {
+ "id": 39,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 506,
+ 875,
+ 78,
+ 264
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20592
+ },
+ {
+ "id": 40,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 711,
+ 827,
+ 227,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22700
+ },
+ {
+ "id": 41,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 964,
+ 856,
+ 55,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11440
+ },
+ {
+ "id": 42,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 923,
+ 607,
+ 152,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27664
+ },
+ {
+ "id": 43,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1288,
+ 808,
+ 175,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19425
+ },
+ {
+ "id": 44,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1531,
+ 771,
+ 208,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9984
+ },
+ {
+ "id": 45,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1736,
+ 599,
+ 201,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29145
+ },
+ {
+ "id": 46,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1907,
+ 394,
+ 96,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17088
+ },
+ {
+ "id": 47,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2045,
+ 379,
+ 74,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11248
+ },
+ {
+ "id": 48,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2194,
+ 502,
+ 70,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14280
+ },
+ {
+ "id": 49,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 596,
+ 1281,
+ 145,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13485
+ },
+ {
+ "id": 50,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 119,
+ 1885,
+ 130,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13520
+ },
+ {
+ "id": 51,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 115,
+ 1668,
+ 70,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13790
+ },
+ {
+ "id": 52,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 52,
+ 1572,
+ 78,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12480
+ },
+ {
+ "id": 53,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 63,
+ 1363,
+ 74,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10730
+ },
+ {
+ "id": 54,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 81,
+ 1009,
+ 227,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30418
+ },
+ {
+ "id": 55,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 186,
+ 759,
+ 223,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31443
+ },
+ {
+ "id": 56,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 301,
+ 584,
+ 197,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12411
+ },
+ {
+ "id": 57,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1095,
+ 391,
+ 85,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16745
+ },
+ {
+ "id": 58,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1247,
+ 488,
+ 59,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8968
+ },
+ {
+ "id": 59,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1311,
+ 484,
+ 230,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12650
+ },
+ {
+ "id": 60,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1523,
+ 558,
+ 67,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14941
+ },
+ {
+ "id": 61,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1292,
+ 681,
+ 182,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19656
+ },
+ {
+ "id": 62,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1762,
+ 298,
+ 55,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4895
+ },
+ {
+ "id": 63,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1072,
+ 331,
+ 152,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8968
+ },
+ {
+ "id": 64,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1251,
+ 301,
+ 63,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6804
+ },
+ {
+ "id": 65,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2477,
+ 1147,
+ 175,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18900
+ },
+ {
+ "id": 66,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2317,
+ 923,
+ 219,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9636
+ },
+ {
+ "id": 67,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1177,
+ 2704,
+ 100,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8900
+ },
+ {
+ "id": 68,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1091,
+ 2700,
+ 122,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9516
+ },
+ {
+ "id": 69,
+ "image_id": 0,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2518,
+ 1501,
+ 141,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13536
+ },
+ {
+ "id": 70,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1564,
+ 696,
+ 145,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24215
+ },
+ {
+ "id": 71,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1885,
+ 819,
+ 186,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25482
+ },
+ {
+ "id": 72,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2071,
+ 674,
+ 122,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17690
+ },
+ {
+ "id": 73,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2302,
+ 942,
+ 137,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19317
+ },
+ {
+ "id": 74,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1866,
+ 1031,
+ 212,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14840
+ },
+ {
+ "id": 75,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1356,
+ 1020,
+ 115,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11500
+ },
+ {
+ "id": 76,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1315,
+ 1050,
+ 126,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17766
+ },
+ {
+ "id": 77,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1143,
+ 1173,
+ 245,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15435
+ },
+ {
+ "id": 78,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1471,
+ 1381,
+ 104,
+ 227
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23608
+ },
+ {
+ "id": 79,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1631,
+ 1478,
+ 201,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11055
+ },
+ {
+ "id": 80,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1516,
+ 1132,
+ 89,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15219
+ },
+ {
+ "id": 81,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1296,
+ 703,
+ 63,
+ 249
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15687
+ },
+ {
+ "id": 82,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1013,
+ 1969,
+ 204,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20400
+ },
+ {
+ "id": 83,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1162,
+ 2167,
+ 223,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11596
+ },
+ {
+ "id": 84,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1233,
+ 1966,
+ 182,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18200
+ },
+ {
+ "id": 85,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1572,
+ 2200,
+ 163,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19397
+ },
+ {
+ "id": 86,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1907,
+ 1932,
+ 40,
+ 219
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8760
+ },
+ {
+ "id": 87,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1885,
+ 2271,
+ 245,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18130
+ },
+ {
+ "id": 88,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1825,
+ 2424,
+ 63,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11907
+ },
+ {
+ "id": 89,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1374,
+ 2461,
+ 163,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16300
+ },
+ {
+ "id": 90,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1054,
+ 2357,
+ 186,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22692
+ },
+ {
+ "id": 91,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1020,
+ 2286,
+ 257,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14135
+ },
+ {
+ "id": 92,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 853,
+ 2145,
+ 100,
+ 238
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23800
+ },
+ {
+ "id": 93,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 759,
+ 1981,
+ 193,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30108
+ },
+ {
+ "id": 94,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 733,
+ 1776,
+ 100,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20100
+ },
+ {
+ "id": 95,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 480,
+ 1791,
+ 227,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14301
+ },
+ {
+ "id": 96,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 681,
+ 2122,
+ 104,
+ 230
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23920
+ },
+ {
+ "id": 97,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1050,
+ 1802,
+ 137,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9590
+ },
+ {
+ "id": 98,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1277,
+ 1720,
+ 63,
+ 227
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14301
+ },
+ {
+ "id": 99,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2149,
+ 1377,
+ 152,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18088
+ },
+ {
+ "id": 100,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2551,
+ 1385,
+ 197,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27777
+ },
+ {
+ "id": 101,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1940,
+ 1354,
+ 97,
+ 173
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16781
+ },
+ {
+ "id": 102,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1741,
+ 1614,
+ 212,
+ 47
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9964
+ },
+ {
+ "id": 103,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1498,
+ 1625,
+ 176,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16720
+ },
+ {
+ "id": 104,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1775,
+ 1667,
+ 212,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6996
+ },
+ {
+ "id": 105,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2122,
+ 1572,
+ 125,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17750
+ },
+ {
+ "id": 106,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2032,
+ 1486,
+ 195,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28860
+ },
+ {
+ "id": 107,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2116,
+ 2009,
+ 195,
+ 106
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20670
+ },
+ {
+ "id": 108,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2021,
+ 1743,
+ 148,
+ 109
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16132
+ },
+ {
+ "id": 109,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2220,
+ 1832,
+ 195,
+ 153
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29835
+ },
+ {
+ "id": 110,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2094,
+ 1888,
+ 103,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8343
+ },
+ {
+ "id": 111,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2376,
+ 2185,
+ 221,
+ 131
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28951
+ },
+ {
+ "id": 112,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2592,
+ 2045,
+ 78,
+ 318
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24804
+ },
+ {
+ "id": 113,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2388,
+ 2135,
+ 181,
+ 125
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22625
+ },
+ {
+ "id": 114,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2684,
+ 2115,
+ 78,
+ 58
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4524
+ },
+ {
+ "id": 115,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1926,
+ 2563,
+ 117,
+ 229
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26793
+ },
+ {
+ "id": 116,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1758,
+ 2627,
+ 69,
+ 165
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11385
+ },
+ {
+ "id": 117,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1254,
+ 2672,
+ 69,
+ 120
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8280
+ },
+ {
+ "id": 118,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1282,
+ 2625,
+ 148,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24716
+ },
+ {
+ "id": 119,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 854,
+ 2429,
+ 117,
+ 209
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24453
+ },
+ {
+ "id": 120,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 736,
+ 2602,
+ 58,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11020
+ },
+ {
+ "id": 121,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 277,
+ 2611,
+ 246,
+ 58
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14268
+ },
+ {
+ "id": 122,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 310,
+ 2289,
+ 134,
+ 179
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23986
+ },
+ {
+ "id": 123,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 299,
+ 2174,
+ 184,
+ 139
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25576
+ },
+ {
+ "id": 124,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 461,
+ 2317,
+ 184,
+ 97
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17848
+ },
+ {
+ "id": 125,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 626,
+ 2409,
+ 145,
+ 198
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28710
+ },
+ {
+ "id": 126,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 705,
+ 2359,
+ 83,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16932
+ },
+ {
+ "id": 127,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 803,
+ 2577,
+ 159,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22578
+ },
+ {
+ "id": 128,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 800,
+ 2440,
+ 207,
+ 114
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23598
+ },
+ {
+ "id": 129,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 111,
+ 1284,
+ 193,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27406
+ },
+ {
+ "id": 130,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 349,
+ 1105,
+ 83,
+ 176
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14608
+ },
+ {
+ "id": 131,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 383,
+ 1315,
+ 207,
+ 117
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24219
+ },
+ {
+ "id": 132,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 694,
+ 1477,
+ 95,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16150
+ },
+ {
+ "id": 133,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 792,
+ 1713,
+ 226,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21470
+ },
+ {
+ "id": 134,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 948,
+ 1634,
+ 162,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19926
+ },
+ {
+ "id": 135,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 890,
+ 1447,
+ 184,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15272
+ },
+ {
+ "id": 136,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 120,
+ 1130,
+ 83,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4150
+ },
+ {
+ "id": 137,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 249,
+ 928,
+ 55,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11220
+ },
+ {
+ "id": 138,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 319,
+ 951,
+ 111,
+ 159
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17649
+ },
+ {
+ "id": 139,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 310,
+ 830,
+ 153,
+ 187
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28611
+ },
+ {
+ "id": 140,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 461,
+ 979,
+ 187,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14586
+ },
+ {
+ "id": 141,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 638,
+ 842,
+ 198,
+ 103
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20394
+ },
+ {
+ "id": 142,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 820,
+ 637,
+ 86,
+ 232
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19952
+ },
+ {
+ "id": 143,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 932,
+ 777,
+ 78,
+ 181
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14118
+ },
+ {
+ "id": 144,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 750,
+ 984,
+ 125,
+ 162
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20250
+ },
+ {
+ "id": 145,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 912,
+ 990,
+ 139,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23630
+ },
+ {
+ "id": 146,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 923,
+ 1012,
+ 165,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24420
+ },
+ {
+ "id": 147,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 668,
+ 1404,
+ 226,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9266
+ },
+ {
+ "id": 148,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 635,
+ 1348,
+ 198,
+ 58
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11484
+ },
+ {
+ "id": 149,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 436,
+ 1214,
+ 156,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10452
+ },
+ {
+ "id": 150,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 576,
+ 1256,
+ 173,
+ 39
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6747
+ },
+ {
+ "id": 151,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 845,
+ 1186,
+ 44,
+ 207
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9108
+ },
+ {
+ "id": 152,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1074,
+ 677,
+ 207,
+ 39
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8073
+ },
+ {
+ "id": 153,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1077,
+ 402,
+ 53,
+ 128
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6784
+ },
+ {
+ "id": 154,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1337,
+ 400,
+ 109,
+ 92
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10028
+ },
+ {
+ "id": 155,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1410,
+ 861,
+ 131,
+ 120
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15720
+ },
+ {
+ "id": 156,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1430,
+ 853,
+ 179,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14499
+ },
+ {
+ "id": 157,
+ "image_id": 1,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1512,
+ 2387,
+ 204,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21216
+ },
+ {
+ "id": 158,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 513,
+ 702,
+ 218,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10464
+ },
+ {
+ "id": 159,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 903,
+ 485,
+ 157,
+ 180
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28260
+ },
+ {
+ "id": 160,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1221,
+ 404,
+ 152,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15352
+ },
+ {
+ "id": 161,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1208,
+ 305,
+ 68,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10880
+ },
+ {
+ "id": 162,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1468,
+ 498,
+ 71,
+ 157
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11147
+ },
+ {
+ "id": 163,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1524,
+ 501,
+ 162,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19764
+ },
+ {
+ "id": 164,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1753,
+ 572,
+ 122,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19520
+ },
+ {
+ "id": 165,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1480,
+ 859,
+ 134,
+ 144
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19296
+ },
+ {
+ "id": 166,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 750,
+ 994,
+ 190,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21090
+ },
+ {
+ "id": 167,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 949,
+ 920,
+ 119,
+ 127
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15113
+ },
+ {
+ "id": 168,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1089,
+ 900,
+ 162,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21708
+ },
+ {
+ "id": 169,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 753,
+ 610,
+ 132,
+ 144
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19008
+ },
+ {
+ "id": 170,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 707,
+ 513,
+ 114,
+ 114
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12996
+ },
+ {
+ "id": 171,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 534,
+ 536,
+ 48,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3984
+ },
+ {
+ "id": 172,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 180,
+ 1154,
+ 71,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15833
+ },
+ {
+ "id": 173,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 358,
+ 1164,
+ 89,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15842
+ },
+ {
+ "id": 174,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 468,
+ 1139,
+ 66,
+ 241
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15906
+ },
+ {
+ "id": 175,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 173,
+ 1378,
+ 170,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20740
+ },
+ {
+ "id": 176,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 68,
+ 1508,
+ 203,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12383
+ },
+ {
+ "id": 177,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 371,
+ 1505,
+ 124,
+ 139
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17236
+ },
+ {
+ "id": 178,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 544,
+ 1566,
+ 127,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11938
+ },
+ {
+ "id": 179,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 615,
+ 1693,
+ 178,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11214
+ },
+ {
+ "id": 180,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 127,
+ 1805,
+ 89,
+ 216
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19224
+ },
+ {
+ "id": 181,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 597,
+ 1935,
+ 152,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11096
+ },
+ {
+ "id": 182,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 847,
+ 1838,
+ 167,
+ 35
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5845
+ },
+ {
+ "id": 183,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 806,
+ 1775,
+ 178,
+ 40
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7120
+ },
+ {
+ "id": 184,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1338,
+ 1592,
+ 213,
+ 68
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14484
+ },
+ {
+ "id": 185,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1544,
+ 1874,
+ 147,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24990
+ },
+ {
+ "id": 186,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 893,
+ 791,
+ 180,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10980
+ },
+ {
+ "id": 187,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 852,
+ 727,
+ 190,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16910
+ },
+ {
+ "id": 188,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1137,
+ 625,
+ 157,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15072
+ },
+ {
+ "id": 189,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1124,
+ 251,
+ 142,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13632
+ },
+ {
+ "id": 190,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1534,
+ 295,
+ 145,
+ 71
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10295
+ },
+ {
+ "id": 191,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1643,
+ 857,
+ 195,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16185
+ },
+ {
+ "id": 192,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1221,
+ 984,
+ 188,
+ 40
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7520
+ },
+ {
+ "id": 193,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1608,
+ 1091,
+ 78,
+ 218
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17004
+ },
+ {
+ "id": 194,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1714,
+ 1175,
+ 119,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10234
+ },
+ {
+ "id": 195,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1437,
+ 1396,
+ 188,
+ 68
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12784
+ },
+ {
+ "id": 196,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 595,
+ 1419,
+ 213,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28116
+ },
+ {
+ "id": 197,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 544,
+ 1439,
+ 157,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11461
+ },
+ {
+ "id": 198,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 488,
+ 1406,
+ 188,
+ 35
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6580
+ },
+ {
+ "id": 199,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 475,
+ 1449,
+ 48,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5328
+ },
+ {
+ "id": 200,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 854,
+ 1984,
+ 165,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21780
+ },
+ {
+ "id": 201,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1139,
+ 2040,
+ 111,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19425
+ },
+ {
+ "id": 202,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1172,
+ 2223,
+ 127,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12827
+ },
+ {
+ "id": 203,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 885,
+ 2063,
+ 139,
+ 259
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 36001
+ },
+ {
+ "id": 204,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 485,
+ 2068,
+ 134,
+ 241
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32294
+ },
+ {
+ "id": 205,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 620,
+ 2452,
+ 178,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15308
+ },
+ {
+ "id": 206,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 982,
+ 2648,
+ 157,
+ 53
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8321
+ },
+ {
+ "id": 207,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1228,
+ 2640,
+ 195,
+ 76
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14820
+ },
+ {
+ "id": 208,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1323,
+ 2584,
+ 165,
+ 58
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9570
+ },
+ {
+ "id": 209,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1435,
+ 2398,
+ 160,
+ 53
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8480
+ },
+ {
+ "id": 210,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1521,
+ 2447,
+ 183,
+ 35
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6405
+ },
+ {
+ "id": 211,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1575,
+ 2146,
+ 58,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9280
+ },
+ {
+ "id": 212,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1536,
+ 2047,
+ 195,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9750
+ },
+ {
+ "id": 213,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1847,
+ 2345,
+ 89,
+ 251
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22339
+ },
+ {
+ "id": 214,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1982,
+ 2019,
+ 185,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22015
+ },
+ {
+ "id": 215,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2241,
+ 1981,
+ 147,
+ 157
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23079
+ },
+ {
+ "id": 216,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2002,
+ 2291,
+ 211,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 35237
+ },
+ {
+ "id": 217,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2025,
+ 2487,
+ 162,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27540
+ },
+ {
+ "id": 218,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2295,
+ 2370,
+ 183,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15738
+ },
+ {
+ "id": 219,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2234,
+ 2467,
+ 201,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6633
+ },
+ {
+ "id": 220,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2193,
+ 2218,
+ 76,
+ 213
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16188
+ },
+ {
+ "id": 221,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1381,
+ 2670,
+ 76,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9272
+ },
+ {
+ "id": 222,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2068,
+ 1450,
+ 137,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13837
+ },
+ {
+ "id": 223,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2012,
+ 1254,
+ 155,
+ 91
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14105
+ },
+ {
+ "id": 224,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2216,
+ 1251,
+ 208,
+ 58
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12064
+ },
+ {
+ "id": 225,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2188,
+ 1121,
+ 236,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12980
+ },
+ {
+ "id": 226,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1895,
+ 1218,
+ 71,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13135
+ },
+ {
+ "id": 227,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2394,
+ 885,
+ 119,
+ 157
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18683
+ },
+ {
+ "id": 228,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2631,
+ 1297,
+ 94,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5922
+ },
+ {
+ "id": 229,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1847,
+ 956,
+ 124,
+ 124
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15376
+ },
+ {
+ "id": 230,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1877,
+ 730,
+ 137,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26441
+ },
+ {
+ "id": 231,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2017,
+ 1012,
+ 142,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22720
+ },
+ {
+ "id": 232,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2524,
+ 920,
+ 58,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4814
+ },
+ {
+ "id": 233,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 637,
+ 1355,
+ 182,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10010
+ },
+ {
+ "id": 234,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1370,
+ 1783,
+ 74,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10952
+ },
+ {
+ "id": 235,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1117,
+ 1828,
+ 126,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15372
+ },
+ {
+ "id": 236,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 588,
+ 2644,
+ 167,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17869
+ },
+ {
+ "id": 237,
+ "image_id": 2,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 506,
+ 2610,
+ 141,
+ 26
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3666
+ },
+ {
+ "id": 238,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 734,
+ 2177,
+ 96,
+ 268
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25728
+ },
+ {
+ "id": 239,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1404,
+ 887,
+ 227,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17706
+ },
+ {
+ "id": 240,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1550,
+ 771,
+ 175,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7175
+ },
+ {
+ "id": 241,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 842,
+ 499,
+ 59,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13157
+ },
+ {
+ "id": 242,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 503,
+ 880,
+ 149,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17135
+ },
+ {
+ "id": 243,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 950,
+ 812,
+ 126,
+ 220
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27720
+ },
+ {
+ "id": 244,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 611,
+ 999,
+ 163,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16952
+ },
+ {
+ "id": 245,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 559,
+ 1159,
+ 70,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12460
+ },
+ {
+ "id": 246,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 644,
+ 1394,
+ 40,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7600
+ },
+ {
+ "id": 247,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 279,
+ 2080,
+ 175,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21525
+ },
+ {
+ "id": 248,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 980,
+ 1398,
+ 74,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13172
+ },
+ {
+ "id": 249,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 745,
+ 1260,
+ 37,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7141
+ },
+ {
+ "id": 250,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 715,
+ 1379,
+ 29,
+ 205
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5945
+ },
+ {
+ "id": 251,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2090,
+ 1238,
+ 122,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13542
+ },
+ {
+ "id": 252,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2321,
+ 1126,
+ 145,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23780
+ },
+ {
+ "id": 253,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2280,
+ 1364,
+ 182,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16926
+ },
+ {
+ "id": 254,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2105,
+ 1387,
+ 175,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16275
+ },
+ {
+ "id": 255,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2090,
+ 1648,
+ 204,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25092
+ },
+ {
+ "id": 256,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2154,
+ 1625,
+ 219,
+ 82
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17958
+ },
+ {
+ "id": 257,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2075,
+ 1689,
+ 78,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16536
+ },
+ {
+ "id": 258,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1732,
+ 1812,
+ 70,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12740
+ },
+ {
+ "id": 259,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1360,
+ 999,
+ 294,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 48216
+ },
+ {
+ "id": 260,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1662,
+ 1196,
+ 156,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19656
+ },
+ {
+ "id": 261,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1863,
+ 1088,
+ 100,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14900
+ },
+ {
+ "id": 262,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1990,
+ 991,
+ 160,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19680
+ },
+ {
+ "id": 263,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1818,
+ 984,
+ 89,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13528
+ },
+ {
+ "id": 264,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1244,
+ 1338,
+ 201,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19296
+ },
+ {
+ "id": 265,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1337,
+ 1461,
+ 152,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8360
+ },
+ {
+ "id": 266,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1382,
+ 1435,
+ 167,
+ 26
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4342
+ },
+ {
+ "id": 267,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1263,
+ 2091,
+ 59,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9853
+ },
+ {
+ "id": 268,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1404,
+ 1916,
+ 100,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8500
+ },
+ {
+ "id": 269,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1419,
+ 2215,
+ 40,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8320
+ },
+ {
+ "id": 270,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1423,
+ 2177,
+ 115,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16675
+ },
+ {
+ "id": 271,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1315,
+ 2330,
+ 55,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8580
+ },
+ {
+ "id": 272,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1337,
+ 2614,
+ 70,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12460
+ },
+ {
+ "id": 273,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2288,
+ 2326,
+ 208,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9984
+ },
+ {
+ "id": 274,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2388,
+ 1972,
+ 204,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 34884
+ },
+ {
+ "id": 275,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2396,
+ 2132,
+ 197,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26989
+ },
+ {
+ "id": 276,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2310,
+ 2159,
+ 216,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 39312
+ },
+ {
+ "id": 277,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1807,
+ 529,
+ 115,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16675
+ },
+ {
+ "id": 278,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2001,
+ 466,
+ 40,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6400
+ },
+ {
+ "id": 279,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1785,
+ 380,
+ 81,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5103
+ },
+ {
+ "id": 280,
+ "image_id": 3,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1181,
+ 510,
+ 171,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9405
+ },
+ {
+ "id": 281,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 835,
+ 691,
+ 96,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19968
+ },
+ {
+ "id": 282,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 763,
+ 632,
+ 96,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15936
+ },
+ {
+ "id": 283,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 434,
+ 927,
+ 169,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20787
+ },
+ {
+ "id": 284,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 645,
+ 1026,
+ 159,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4293
+ },
+ {
+ "id": 285,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 925,
+ 858,
+ 160,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9760
+ },
+ {
+ "id": 286,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1038,
+ 820,
+ 178,
+ 127
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22606
+ },
+ {
+ "id": 287,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 826,
+ 1155,
+ 143,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11583
+ },
+ {
+ "id": 288,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1122,
+ 1107,
+ 159,
+ 51
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8109
+ },
+ {
+ "id": 289,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1240,
+ 612,
+ 87,
+ 106
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9222
+ },
+ {
+ "id": 290,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1065,
+ 383,
+ 162,
+ 43
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6966
+ },
+ {
+ "id": 291,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1220,
+ 310,
+ 96,
+ 207
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19872
+ },
+ {
+ "id": 292,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1295,
+ 435,
+ 79,
+ 169
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13351
+ },
+ {
+ "id": 293,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 655,
+ 552,
+ 170,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11900
+ },
+ {
+ "id": 294,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 746,
+ 550,
+ 175,
+ 56
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9800
+ },
+ {
+ "id": 295,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 757,
+ 441,
+ 133,
+ 125
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16625
+ },
+ {
+ "id": 296,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1303,
+ 1122,
+ 44,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6380
+ },
+ {
+ "id": 297,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1164,
+ 1053,
+ 179,
+ 47
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8413
+ },
+ {
+ "id": 298,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1283,
+ 901,
+ 96,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17088
+ },
+ {
+ "id": 299,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 309,
+ 1030,
+ 84,
+ 69
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5796
+ },
+ {
+ "id": 300,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2008,
+ 1214,
+ 86,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12900
+ },
+ {
+ "id": 301,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2089,
+ 1148,
+ 170,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10370
+ },
+ {
+ "id": 302,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2247,
+ 853,
+ 190,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 33250
+ },
+ {
+ "id": 303,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1901,
+ 588,
+ 234,
+ 53
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12402
+ },
+ {
+ "id": 304,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1845,
+ 690,
+ 68,
+ 196
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13328
+ },
+ {
+ "id": 305,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1919,
+ 807,
+ 150,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15600
+ },
+ {
+ "id": 306,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2000,
+ 723,
+ 165,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14685
+ },
+ {
+ "id": 307,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1934,
+ 687,
+ 167,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16867
+ },
+ {
+ "id": 308,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1443,
+ 623,
+ 150,
+ 76
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11400
+ },
+ {
+ "id": 309,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1321,
+ 710,
+ 134,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6700
+ },
+ {
+ "id": 310,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1466,
+ 764,
+ 139,
+ 106
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14734
+ },
+ {
+ "id": 311,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1623,
+ 491,
+ 38,
+ 183
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6954
+ },
+ {
+ "id": 312,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1682,
+ 313,
+ 150,
+ 124
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18600
+ },
+ {
+ "id": 313,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1466,
+ 379,
+ 104,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13936
+ },
+ {
+ "id": 314,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1399,
+ 341,
+ 48,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6576
+ },
+ {
+ "id": 315,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1387,
+ 1095,
+ 111,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16872
+ },
+ {
+ "id": 316,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1509,
+ 1197,
+ 129,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11094
+ },
+ {
+ "id": 317,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1776,
+ 1517,
+ 71,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13135
+ },
+ {
+ "id": 318,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1881,
+ 1502,
+ 48,
+ 211
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10128
+ },
+ {
+ "id": 319,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1807,
+ 1752,
+ 213,
+ 84
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17892
+ },
+ {
+ "id": 320,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1679,
+ 1663,
+ 114,
+ 91
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10374
+ },
+ {
+ "id": 321,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1560,
+ 1617,
+ 178,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8544
+ },
+ {
+ "id": 322,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1496,
+ 1614,
+ 78,
+ 224
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17472
+ },
+ {
+ "id": 323,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1443,
+ 1520,
+ 71,
+ 224
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15904
+ },
+ {
+ "id": 324,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 962,
+ 1558,
+ 152,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20064
+ },
+ {
+ "id": 325,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 783,
+ 1517,
+ 185,
+ 84
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15540
+ },
+ {
+ "id": 326,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 852,
+ 1635,
+ 157,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22765
+ },
+ {
+ "id": 327,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 974,
+ 1777,
+ 188,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14664
+ },
+ {
+ "id": 328,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1079,
+ 1423,
+ 231,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11088
+ },
+ {
+ "id": 329,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2112,
+ 1316,
+ 249,
+ 53
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13197
+ },
+ {
+ "id": 330,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2257,
+ 1064,
+ 223,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13603
+ },
+ {
+ "id": 331,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2484,
+ 1352,
+ 195,
+ 66
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12870
+ },
+ {
+ "id": 332,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2372,
+ 1897,
+ 201,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12261
+ },
+ {
+ "id": 333,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2303,
+ 2060,
+ 167,
+ 173
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28891
+ },
+ {
+ "id": 334,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2049,
+ 2167,
+ 61,
+ 229
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13969
+ },
+ {
+ "id": 335,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1207,
+ 2173,
+ 186,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10974
+ },
+ {
+ "id": 336,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1583,
+ 2106,
+ 178,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19224
+ },
+ {
+ "id": 337,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1606,
+ 2024,
+ 130,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13520
+ },
+ {
+ "id": 338,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1609,
+ 1998,
+ 182,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7462
+ },
+ {
+ "id": 339,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1300,
+ 1912,
+ 130,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8710
+ },
+ {
+ "id": 340,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1002,
+ 1946,
+ 193,
+ 82
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15826
+ },
+ {
+ "id": 341,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 920,
+ 2077,
+ 160,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26240
+ },
+ {
+ "id": 342,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 659,
+ 2144,
+ 223,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16502
+ },
+ {
+ "id": 343,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 477,
+ 2319,
+ 137,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19317
+ },
+ {
+ "id": 344,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 760,
+ 2412,
+ 178,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10502
+ },
+ {
+ "id": 345,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1088,
+ 2423,
+ 111,
+ 231
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25641
+ },
+ {
+ "id": 346,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1300,
+ 2539,
+ 208,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15392
+ },
+ {
+ "id": 347,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1829,
+ 2576,
+ 201,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18693
+ },
+ {
+ "id": 348,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 272,
+ 1379,
+ 163,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26080
+ },
+ {
+ "id": 349,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 998,
+ 2599,
+ 104,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17368
+ },
+ {
+ "id": 350,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1196,
+ 2722,
+ 149,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10430
+ },
+ {
+ "id": 351,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 741,
+ 2539,
+ 93,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13857
+ },
+ {
+ "id": 352,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2109,
+ 2360,
+ 197,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22655
+ },
+ {
+ "id": 353,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 603,
+ 1700,
+ 78,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12792
+ },
+ {
+ "id": 354,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 801,
+ 1834,
+ 145,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16675
+ },
+ {
+ "id": 355,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 592,
+ 1883,
+ 52,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8528
+ },
+ {
+ "id": 356,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 640,
+ 1838,
+ 70,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9870
+ },
+ {
+ "id": 357,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 301,
+ 1871,
+ 163,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19397
+ },
+ {
+ "id": 358,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 477,
+ 1648,
+ 104,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13104
+ },
+ {
+ "id": 359,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 234,
+ 1618,
+ 223,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9143
+ },
+ {
+ "id": 360,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 108,
+ 1745,
+ 167,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18036
+ },
+ {
+ "id": 361,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 122,
+ 1801,
+ 152,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18696
+ },
+ {
+ "id": 362,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 342,
+ 1830,
+ 163,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10269
+ },
+ {
+ "id": 363,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2366,
+ 1558,
+ 201,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26130
+ },
+ {
+ "id": 364,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2608,
+ 1637,
+ 85,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5950
+ },
+ {
+ "id": 365,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1386,
+ 1592,
+ 63,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9576
+ },
+ {
+ "id": 366,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1084,
+ 1894,
+ 171,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11457
+ },
+ {
+ "id": 367,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1390,
+ 529,
+ 74,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8510
+ },
+ {
+ "id": 368,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1710,
+ 749,
+ 119,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8806
+ },
+ {
+ "id": 369,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1296,
+ 171,
+ 93,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10695
+ },
+ {
+ "id": 370,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1203,
+ 167,
+ 55,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3685
+ },
+ {
+ "id": 371,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1926,
+ 290,
+ 52,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5616
+ },
+ {
+ "id": 372,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2004,
+ 331,
+ 59,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7021
+ },
+ {
+ "id": 373,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2109,
+ 1663,
+ 171,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11457
+ },
+ {
+ "id": 374,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2269,
+ 1543,
+ 152,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11248
+ },
+ {
+ "id": 375,
+ "image_id": 4,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 204,
+ 995,
+ 44,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6556
+ },
+ {
+ "id": 376,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 950,
+ 902,
+ 134,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14472
+ },
+ {
+ "id": 377,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1054,
+ 622,
+ 55,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11660
+ },
+ {
+ "id": 378,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1211,
+ 596,
+ 130,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19760
+ },
+ {
+ "id": 379,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1378,
+ 41,
+ 59,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10089
+ },
+ {
+ "id": 380,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1501,
+ 212,
+ 208,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17680
+ },
+ {
+ "id": 381,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 354,
+ 924,
+ 212,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11024
+ },
+ {
+ "id": 382,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 659,
+ 824,
+ 216,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23976
+ },
+ {
+ "id": 383,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 726,
+ 533,
+ 85,
+ 220
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18700
+ },
+ {
+ "id": 384,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 614,
+ 331,
+ 145,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32335
+ },
+ {
+ "id": 385,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1345,
+ 1689,
+ 141,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19317
+ },
+ {
+ "id": 386,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1419,
+ 1808,
+ 186,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19344
+ },
+ {
+ "id": 387,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1296,
+ 1521,
+ 145,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15080
+ },
+ {
+ "id": 388,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1509,
+ 1525,
+ 63,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9576
+ },
+ {
+ "id": 389,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1591,
+ 1618,
+ 119,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18088
+ },
+ {
+ "id": 390,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1714,
+ 1797,
+ 234,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27846
+ },
+ {
+ "id": 391,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1986,
+ 1748,
+ 145,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18270
+ },
+ {
+ "id": 392,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2019,
+ 2024,
+ 163,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10921
+ },
+ {
+ "id": 393,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2012,
+ 2065,
+ 257,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17990
+ },
+ {
+ "id": 394,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1852,
+ 2032,
+ 193,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30108
+ },
+ {
+ "id": 395,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1848,
+ 2188,
+ 249,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17430
+ },
+ {
+ "id": 396,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1438,
+ 2077,
+ 175,
+ 82
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14350
+ },
+ {
+ "id": 397,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1337,
+ 2207,
+ 201,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8241
+ },
+ {
+ "id": 398,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1009,
+ 2349,
+ 227,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16798
+ },
+ {
+ "id": 399,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 961,
+ 2457,
+ 190,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16910
+ },
+ {
+ "id": 400,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1185,
+ 2550,
+ 59,
+ 227
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13393
+ },
+ {
+ "id": 401,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1281,
+ 2505,
+ 171,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19665
+ },
+ {
+ "id": 402,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1438,
+ 2647,
+ 216,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20736
+ },
+ {
+ "id": 403,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1460,
+ 2759,
+ 167,
+ 26
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4342
+ },
+ {
+ "id": 404,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1870,
+ 2632,
+ 89,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6942
+ },
+ {
+ "id": 405,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2090,
+ 1465,
+ 122,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21350
+ },
+ {
+ "id": 406,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2236,
+ 1599,
+ 89,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13528
+ },
+ {
+ "id": 407,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2243,
+ 1129,
+ 208,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12272
+ },
+ {
+ "id": 408,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2351,
+ 850,
+ 119,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17731
+ },
+ {
+ "id": 409,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2522,
+ 753,
+ 40,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6240
+ },
+ {
+ "id": 410,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2288,
+ 738,
+ 178,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11214
+ },
+ {
+ "id": 411,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2168,
+ 697,
+ 74,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11840
+ },
+ {
+ "id": 412,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1986,
+ 965,
+ 37,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6179
+ },
+ {
+ "id": 413,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1855,
+ 1073,
+ 119,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21182
+ },
+ {
+ "id": 414,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1632,
+ 1010,
+ 201,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11859
+ },
+ {
+ "id": 415,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1363,
+ 1092,
+ 156,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20280
+ },
+ {
+ "id": 416,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1624,
+ 1249,
+ 93,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13857
+ },
+ {
+ "id": 417,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1732,
+ 1245,
+ 193,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16405
+ },
+ {
+ "id": 418,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2105,
+ 1290,
+ 130,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14430
+ },
+ {
+ "id": 419,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2381,
+ 1163,
+ 231,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20559
+ },
+ {
+ "id": 420,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2489,
+ 1051,
+ 186,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22134
+ },
+ {
+ "id": 421,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1632,
+ 637,
+ 208,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9152
+ },
+ {
+ "id": 422,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1516,
+ 484,
+ 115,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10235
+ },
+ {
+ "id": 423,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1624,
+ 313,
+ 63,
+ 272
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17136
+ },
+ {
+ "id": 424,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1729,
+ 458,
+ 193,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12931
+ },
+ {
+ "id": 425,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1919,
+ 462,
+ 245,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10780
+ },
+ {
+ "id": 426,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1975,
+ 216,
+ 122,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13176
+ },
+ {
+ "id": 427,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1915,
+ 212,
+ 134,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11926
+ },
+ {
+ "id": 428,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1587,
+ 108,
+ 186,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17298
+ },
+ {
+ "id": 429,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 927,
+ 96,
+ 108,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15228
+ },
+ {
+ "id": 430,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 700,
+ 1107,
+ 204,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14280
+ },
+ {
+ "id": 431,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1252,
+ 906,
+ 48,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9648
+ },
+ {
+ "id": 432,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1352,
+ 887,
+ 152,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15200
+ },
+ {
+ "id": 433,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 596,
+ 1547,
+ 130,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16900
+ },
+ {
+ "id": 434,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 663,
+ 1368,
+ 96,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12864
+ },
+ {
+ "id": 435,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1199,
+ 1275,
+ 126,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22932
+ },
+ {
+ "id": 436,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1009,
+ 1133,
+ 227,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24516
+ },
+ {
+ "id": 437,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 901,
+ 1073,
+ 89,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15842
+ },
+ {
+ "id": 438,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 518,
+ 1018,
+ 126,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22932
+ },
+ {
+ "id": 439,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 924,
+ 1838,
+ 175,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20825
+ },
+ {
+ "id": 440,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 741,
+ 1998,
+ 115,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25645
+ },
+ {
+ "id": 441,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 883,
+ 2241,
+ 182,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11466
+ },
+ {
+ "id": 442,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 883,
+ 2319,
+ 89,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15575
+ },
+ {
+ "id": 443,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2254,
+ 1480,
+ 100,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13400
+ },
+ {
+ "id": 444,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1270,
+ 2226,
+ 171,
+ 253
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 43263
+ },
+ {
+ "id": 445,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 741,
+ 1752,
+ 55,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11660
+ },
+ {
+ "id": 446,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 596,
+ 1875,
+ 89,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15575
+ },
+ {
+ "id": 447,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 335,
+ 1898,
+ 149,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22201
+ },
+ {
+ "id": 448,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 350,
+ 2256,
+ 111,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15207
+ },
+ {
+ "id": 449,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 499,
+ 2502,
+ 149,
+ 37
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5513
+ },
+ {
+ "id": 450,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 711,
+ 2595,
+ 100,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6300
+ },
+ {
+ "id": 451,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 208,
+ 1286,
+ 149,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17135
+ },
+ {
+ "id": 452,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 443,
+ 1536,
+ 137,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14796
+ },
+ {
+ "id": 453,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 204,
+ 1185,
+ 175,
+ 82
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14350
+ },
+ {
+ "id": 454,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 204,
+ 1092,
+ 115,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15755
+ },
+ {
+ "id": 455,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 96,
+ 1301,
+ 204,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12036
+ },
+ {
+ "id": 456,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 480,
+ 1066,
+ 141,
+ 279
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 39339
+ },
+ {
+ "id": 457,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1386,
+ 719,
+ 104,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18200
+ },
+ {
+ "id": 458,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1434,
+ 794,
+ 160,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15360
+ },
+ {
+ "id": 459,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1267,
+ 738,
+ 137,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10138
+ },
+ {
+ "id": 460,
+ "image_id": 5,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2399,
+ 589,
+ 111,
+ 41
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4551
+ },
+ {
+ "id": 461,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1646,
+ 1430,
+ 149,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23244
+ },
+ {
+ "id": 462,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1806,
+ 1571,
+ 67,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13199
+ },
+ {
+ "id": 463,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2101,
+ 983,
+ 67,
+ 260
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17420
+ },
+ {
+ "id": 464,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2294,
+ 1344,
+ 104,
+ 215
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22360
+ },
+ {
+ "id": 465,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2641,
+ 1329,
+ 134,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18358
+ },
+ {
+ "id": 466,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2443,
+ 1902,
+ 85,
+ 227
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19295
+ },
+ {
+ "id": 467,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1825,
+ 2051,
+ 257,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 40092
+ },
+ {
+ "id": 468,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1933,
+ 2174,
+ 193,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 36477
+ },
+ {
+ "id": 469,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1654,
+ 2390,
+ 271,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31165
+ },
+ {
+ "id": 470,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1851,
+ 2480,
+ 81,
+ 245
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19845
+ },
+ {
+ "id": 471,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1974,
+ 2457,
+ 223,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12265
+ },
+ {
+ "id": 472,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1832,
+ 2241,
+ 96,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17472
+ },
+ {
+ "id": 473,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1247,
+ 2632,
+ 208,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 33280
+ },
+ {
+ "id": 474,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1981,
+ 2614,
+ 160,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16640
+ },
+ {
+ "id": 475,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2227,
+ 2480,
+ 141,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9447
+ },
+ {
+ "id": 476,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2067,
+ 2383,
+ 212,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22048
+ },
+ {
+ "id": 477,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2183,
+ 2349,
+ 234,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24336
+ },
+ {
+ "id": 478,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2346,
+ 2204,
+ 167,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10521
+ },
+ {
+ "id": 479,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2227,
+ 2126,
+ 219,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13797
+ },
+ {
+ "id": 480,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 555,
+ 2010,
+ 63,
+ 242
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15246
+ },
+ {
+ "id": 481,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 786,
+ 1880,
+ 63,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11214
+ },
+ {
+ "id": 482,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 685,
+ 2293,
+ 78,
+ 219
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17082
+ },
+ {
+ "id": 483,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1054,
+ 2469,
+ 122,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25376
+ },
+ {
+ "id": 484,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 752,
+ 2532,
+ 204,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18156
+ },
+ {
+ "id": 485,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 134,
+ 1992,
+ 201,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32763
+ },
+ {
+ "id": 486,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 141,
+ 2055,
+ 149,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20413
+ },
+ {
+ "id": 487,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 294,
+ 1757,
+ 234,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17316
+ },
+ {
+ "id": 488,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 346,
+ 1567,
+ 230,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32430
+ },
+ {
+ "id": 489,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 0,
+ 1545,
+ 85,
+ 29
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 2465
+ },
+ {
+ "id": 490,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 11,
+ 1485,
+ 93,
+ 37
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3441
+ },
+ {
+ "id": 491,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 327,
+ 1154,
+ 167,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17368
+ },
+ {
+ "id": 492,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 562,
+ 934,
+ 104,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21216
+ },
+ {
+ "id": 493,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 704,
+ 1094,
+ 37,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6031
+ },
+ {
+ "id": 494,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 886,
+ 968,
+ 70,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10150
+ },
+ {
+ "id": 495,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1002,
+ 916,
+ 81,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14175
+ },
+ {
+ "id": 496,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 923,
+ 1106,
+ 216,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7128
+ },
+ {
+ "id": 497,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1352,
+ 968,
+ 197,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20488
+ },
+ {
+ "id": 498,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1627,
+ 893,
+ 212,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20352
+ },
+ {
+ "id": 499,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1803,
+ 469,
+ 160,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17760
+ },
+ {
+ "id": 500,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1918,
+ 525,
+ 204,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22644
+ },
+ {
+ "id": 501,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1933,
+ 357,
+ 119,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15946
+ },
+ {
+ "id": 502,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1970,
+ 841,
+ 238,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12376
+ },
+ {
+ "id": 503,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1575,
+ 748,
+ 48,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9648
+ },
+ {
+ "id": 504,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1631,
+ 741,
+ 48,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8736
+ },
+ {
+ "id": 505,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 868,
+ 450,
+ 108,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21708
+ },
+ {
+ "id": 506,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1095,
+ 242,
+ 70,
+ 230
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16100
+ },
+ {
+ "id": 507,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 894,
+ 238,
+ 182,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24388
+ },
+ {
+ "id": 508,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 245,
+ 729,
+ 44,
+ 264
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11616
+ },
+ {
+ "id": 509,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 122,
+ 994,
+ 163,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14507
+ },
+ {
+ "id": 510,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 782,
+ 2063,
+ 219,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12045
+ },
+ {
+ "id": 511,
+ "image_id": 6,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1616,
+ 2528,
+ 141,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16779
+ },
+ {
+ "id": 512,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1825,
+ 1165,
+ 115,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19205
+ },
+ {
+ "id": 513,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2093,
+ 1169,
+ 137,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20824
+ },
+ {
+ "id": 514,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2317,
+ 1102,
+ 48,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8400
+ },
+ {
+ "id": 515,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2402,
+ 1106,
+ 160,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20800
+ },
+ {
+ "id": 516,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2555,
+ 1493,
+ 44,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8316
+ },
+ {
+ "id": 517,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2544,
+ 1318,
+ 119,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15946
+ },
+ {
+ "id": 518,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2488,
+ 1210,
+ 152,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10184
+ },
+ {
+ "id": 519,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2011,
+ 1679,
+ 111,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17316
+ },
+ {
+ "id": 520,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1963,
+ 1858,
+ 108,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22032
+ },
+ {
+ "id": 521,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1858,
+ 2089,
+ 201,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32763
+ },
+ {
+ "id": 522,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2078,
+ 2159,
+ 182,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14196
+ },
+ {
+ "id": 523,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2015,
+ 2405,
+ 59,
+ 283
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16697
+ },
+ {
+ "id": 524,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2086,
+ 2305,
+ 227,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27013
+ },
+ {
+ "id": 525,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2220,
+ 2450,
+ 171,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24111
+ },
+ {
+ "id": 526,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2373,
+ 2446,
+ 70,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5950
+ },
+ {
+ "id": 527,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1862,
+ 2316,
+ 85,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17340
+ },
+ {
+ "id": 528,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1475,
+ 2685,
+ 108,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11556
+ },
+ {
+ "id": 529,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1192,
+ 2193,
+ 230,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26450
+ },
+ {
+ "id": 530,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1467,
+ 2025,
+ 44,
+ 268
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11792
+ },
+ {
+ "id": 531,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1601,
+ 1638,
+ 74,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12654
+ },
+ {
+ "id": 532,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1594,
+ 1504,
+ 223,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14941
+ },
+ {
+ "id": 533,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1739,
+ 1385,
+ 175,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31150
+ },
+ {
+ "id": 534,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1449,
+ 1351,
+ 89,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16821
+ },
+ {
+ "id": 535,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1575,
+ 1396,
+ 171,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10773
+ },
+ {
+ "id": 536,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1590,
+ 1295,
+ 111,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13542
+ },
+ {
+ "id": 537,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1568,
+ 1225,
+ 122,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12200
+ },
+ {
+ "id": 538,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1788,
+ 722,
+ 134,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27336
+ },
+ {
+ "id": 539,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1661,
+ 595,
+ 219,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15330
+ },
+ {
+ "id": 540,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2156,
+ 662,
+ 78,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15912
+ },
+ {
+ "id": 541,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1974,
+ 599,
+ 156,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14976
+ },
+ {
+ "id": 542,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1672,
+ 435,
+ 81,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5670
+ },
+ {
+ "id": 543,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1404,
+ 707,
+ 70,
+ 245
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17150
+ },
+ {
+ "id": 544,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1065,
+ 741,
+ 204,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9792
+ },
+ {
+ "id": 545,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1002,
+ 837,
+ 44,
+ 238
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10472
+ },
+ {
+ "id": 546,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1180,
+ 1038,
+ 26,
+ 234
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6084
+ },
+ {
+ "id": 547,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1076,
+ 1433,
+ 108,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18036
+ },
+ {
+ "id": 548,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 670,
+ 1511,
+ 37,
+ 260
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9620
+ },
+ {
+ "id": 549,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 450,
+ 1441,
+ 141,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17766
+ },
+ {
+ "id": 550,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 279,
+ 1389,
+ 257,
+ 37
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9509
+ },
+ {
+ "id": 551,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 558,
+ 1176,
+ 130,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18330
+ },
+ {
+ "id": 552,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 469,
+ 1094,
+ 96,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12096
+ },
+ {
+ "id": 553,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 320,
+ 1817,
+ 67,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13668
+ },
+ {
+ "id": 554,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 622,
+ 1858,
+ 29,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5916
+ },
+ {
+ "id": 555,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 812,
+ 2357,
+ 141,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24111
+ },
+ {
+ "id": 556,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 860,
+ 2528,
+ 182,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12194
+ },
+ {
+ "id": 557,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 488,
+ 2282,
+ 204,
+ 29
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5916
+ },
+ {
+ "id": 558,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 324,
+ 2413,
+ 193,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22967
+ },
+ {
+ "id": 559,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 290,
+ 2543,
+ 167,
+ 29
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4843
+ },
+ {
+ "id": 560,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 122,
+ 1847,
+ 186,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13764
+ },
+ {
+ "id": 561,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 55,
+ 1593,
+ 59,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12036
+ },
+ {
+ "id": 562,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 376,
+ 953,
+ 44,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8008
+ },
+ {
+ "id": 563,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 488,
+ 796,
+ 96,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19584
+ },
+ {
+ "id": 564,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 327,
+ 849,
+ 85,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6290
+ },
+ {
+ "id": 565,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 398,
+ 744,
+ 67,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9447
+ },
+ {
+ "id": 566,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 592,
+ 577,
+ 93,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8277
+ },
+ {
+ "id": 567,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 961,
+ 405,
+ 108,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18900
+ },
+ {
+ "id": 568,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 759,
+ 1195,
+ 197,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19700
+ },
+ {
+ "id": 569,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 841,
+ 1426,
+ 74,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13986
+ },
+ {
+ "id": 570,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 864,
+ 1303,
+ 189,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12663
+ },
+ {
+ "id": 571,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 700,
+ 1348,
+ 197,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6501
+ },
+ {
+ "id": 572,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 864,
+ 1277,
+ 149,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24883
+ },
+ {
+ "id": 573,
+ "image_id": 7,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 827,
+ 971,
+ 40,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7280
+ },
+ {
+ "id": 574,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2104,
+ 1314,
+ 74,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12062
+ },
+ {
+ "id": 575,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1676,
+ 1616,
+ 163,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15159
+ },
+ {
+ "id": 576,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1400,
+ 1433,
+ 178,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28480
+ },
+ {
+ "id": 577,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1247,
+ 1202,
+ 29,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5916
+ },
+ {
+ "id": 578,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1210,
+ 1027,
+ 167,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28557
+ },
+ {
+ "id": 579,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2209,
+ 834,
+ 167,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23547
+ },
+ {
+ "id": 580,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2253,
+ 670,
+ 212,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30740
+ },
+ {
+ "id": 581,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2507,
+ 1366,
+ 186,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29760
+ },
+ {
+ "id": 582,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 990,
+ 2379,
+ 178,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17800
+ },
+ {
+ "id": 583,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 786,
+ 2450,
+ 63,
+ 249
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15687
+ },
+ {
+ "id": 584,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 476,
+ 2361,
+ 100,
+ 234
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23400
+ },
+ {
+ "id": 585,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 223,
+ 2185,
+ 204,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15912
+ },
+ {
+ "id": 586,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 651,
+ 2029,
+ 108,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21708
+ },
+ {
+ "id": 587,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1050,
+ 1869,
+ 175,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15575
+ },
+ {
+ "id": 588,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1270,
+ 1720,
+ 149,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19966
+ },
+ {
+ "id": 589,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1411,
+ 1854,
+ 122,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18544
+ },
+ {
+ "id": 590,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1508,
+ 1906,
+ 175,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8400
+ },
+ {
+ "id": 591,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1914,
+ 2215,
+ 145,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30160
+ },
+ {
+ "id": 592,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2227,
+ 2357,
+ 104,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17368
+ },
+ {
+ "id": 593,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2179,
+ 2256,
+ 197,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13199
+ },
+ {
+ "id": 594,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1743,
+ 2562,
+ 260,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16380
+ },
+ {
+ "id": 595,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2037,
+ 2536,
+ 163,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24776
+ },
+ {
+ "id": 596,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1624,
+ 2711,
+ 108,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8748
+ },
+ {
+ "id": 597,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 160,
+ 1772,
+ 175,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22050
+ },
+ {
+ "id": 598,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 286,
+ 1377,
+ 67,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13199
+ },
+ {
+ "id": 599,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 342,
+ 1124,
+ 193,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15633
+ },
+ {
+ "id": 600,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 644,
+ 938,
+ 115,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25645
+ },
+ {
+ "id": 601,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 726,
+ 1132,
+ 208,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14560
+ },
+ {
+ "id": 602,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1017,
+ 1113,
+ 130,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11570
+ },
+ {
+ "id": 603,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1024,
+ 1366,
+ 167,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12358
+ },
+ {
+ "id": 604,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1095,
+ 700,
+ 78,
+ 219
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17082
+ },
+ {
+ "id": 605,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1378,
+ 707,
+ 67,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11926
+ },
+ {
+ "id": 606,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1281,
+ 543,
+ 149,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23840
+ },
+ {
+ "id": 607,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1527,
+ 368,
+ 48,
+ 238
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11424
+ },
+ {
+ "id": 608,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1657,
+ 491,
+ 122,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19520
+ },
+ {
+ "id": 609,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1017,
+ 435,
+ 96,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17856
+ },
+ {
+ "id": 610,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 812,
+ 796,
+ 96,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14592
+ },
+ {
+ "id": 611,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 763,
+ 722,
+ 178,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9790
+ },
+ {
+ "id": 612,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 569,
+ 726,
+ 104,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15080
+ },
+ {
+ "id": 613,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 417,
+ 949,
+ 122,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13542
+ },
+ {
+ "id": 614,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 104,
+ 1128,
+ 216,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23112
+ },
+ {
+ "id": 615,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 59,
+ 1344,
+ 40,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7880
+ },
+ {
+ "id": 616,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 81,
+ 1742,
+ 48,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9264
+ },
+ {
+ "id": 617,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 134,
+ 1709,
+ 85,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14875
+ },
+ {
+ "id": 618,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 946,
+ 2595,
+ 167,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16032
+ },
+ {
+ "id": 619,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 868,
+ 2554,
+ 223,
+ 18
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4014
+ },
+ {
+ "id": 620,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1758,
+ 1958,
+ 201,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23919
+ },
+ {
+ "id": 621,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2041,
+ 2089,
+ 108,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20088
+ },
+ {
+ "id": 622,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2004,
+ 968,
+ 108,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13176
+ },
+ {
+ "id": 623,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1914,
+ 770,
+ 85,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13600
+ },
+ {
+ "id": 624,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2045,
+ 886,
+ 145,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6380
+ },
+ {
+ "id": 625,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1903,
+ 975,
+ 78,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5226
+ },
+ {
+ "id": 626,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1855,
+ 376,
+ 81,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13203
+ },
+ {
+ "id": 627,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1426,
+ 227,
+ 115,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11500
+ },
+ {
+ "id": 628,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1210,
+ 271,
+ 145,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26970
+ },
+ {
+ "id": 629,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1125,
+ 253,
+ 52,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4992
+ },
+ {
+ "id": 630,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 908,
+ 297,
+ 122,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11712
+ },
+ {
+ "id": 631,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 707,
+ 439,
+ 145,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18270
+ },
+ {
+ "id": 632,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 581,
+ 495,
+ 81,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15633
+ },
+ {
+ "id": 633,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2563,
+ 1214,
+ 126,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20538
+ },
+ {
+ "id": 634,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2563,
+ 1467,
+ 175,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27300
+ },
+ {
+ "id": 635,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2596,
+ 1925,
+ 104,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10400
+ },
+ {
+ "id": 636,
+ "image_id": 8,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2525,
+ 2137,
+ 100,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11100
+ },
+ {
+ "id": 637,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2426,
+ 1684,
+ 181,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 34933
+ },
+ {
+ "id": 638,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1321,
+ 1448,
+ 85,
+ 177
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15045
+ },
+ {
+ "id": 639,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1804,
+ 2827,
+ 185,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11285
+ },
+ {
+ "id": 640,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 861,
+ 2680,
+ 185,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11285
+ },
+ {
+ "id": 641,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 498,
+ 2711,
+ 61,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11285
+ },
+ {
+ "id": 642,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2438,
+ 2680,
+ 197,
+ 139
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27383
+ },
+ {
+ "id": 643,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 243,
+ 1127,
+ 170,
+ 154
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26180
+ },
+ {
+ "id": 644,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 50,
+ 2093,
+ 112,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8176
+ },
+ {
+ "id": 645,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 100,
+ 2174,
+ 69,
+ 224
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15456
+ },
+ {
+ "id": 646,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 185,
+ 2460,
+ 208,
+ 139
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28912
+ },
+ {
+ "id": 647,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 309,
+ 2618,
+ 92,
+ 127
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11684
+ },
+ {
+ "id": 648,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 413,
+ 2441,
+ 181,
+ 135
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24435
+ },
+ {
+ "id": 649,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 490,
+ 2530,
+ 220,
+ 77
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16940
+ },
+ {
+ "id": 650,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 683,
+ 2379,
+ 197,
+ 77
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15169
+ },
+ {
+ "id": 651,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1016,
+ 2587,
+ 115,
+ 216
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24840
+ },
+ {
+ "id": 652,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1108,
+ 2684,
+ 127,
+ 173
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21971
+ },
+ {
+ "id": 653,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1074,
+ 2823,
+ 127,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9271
+ },
+ {
+ "id": 654,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1221,
+ 2097,
+ 200,
+ 173
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 34600
+ },
+ {
+ "id": 655,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1479,
+ 2232,
+ 135,
+ 216
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29160
+ },
+ {
+ "id": 656,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1646,
+ 2356,
+ 266,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21546
+ },
+ {
+ "id": 657,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1889,
+ 2186,
+ 235,
+ 162
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 38070
+ },
+ {
+ "id": 658,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2144,
+ 2340,
+ 88,
+ 177
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15576
+ },
+ {
+ "id": 659,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2233,
+ 2557,
+ 270,
+ 92
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24840
+ },
+ {
+ "id": 660,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1785,
+ 2522,
+ 270,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17550
+ },
+ {
+ "id": 661,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1904,
+ 2638,
+ 150,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28350
+ },
+ {
+ "id": 662,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1147,
+ 1850,
+ 231,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15015
+ },
+ {
+ "id": 663,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1116,
+ 2000,
+ 77,
+ 162
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12474
+ },
+ {
+ "id": 664,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1325,
+ 1757,
+ 200,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28400
+ },
+ {
+ "id": 665,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1537,
+ 1745,
+ 42,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8106
+ },
+ {
+ "id": 666,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1302,
+ 2012,
+ 166,
+ 88
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14608
+ },
+ {
+ "id": 667,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1468,
+ 1935,
+ 69,
+ 251
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17319
+ },
+ {
+ "id": 668,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2194,
+ 1923,
+ 200,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10000
+ },
+ {
+ "id": 669,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2221,
+ 1981,
+ 150,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17850
+ },
+ {
+ "id": 670,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2306,
+ 2120,
+ 189,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19656
+ },
+ {
+ "id": 671,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2326,
+ 2313,
+ 193,
+ 181
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 34933
+ },
+ {
+ "id": 672,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2538,
+ 2298,
+ 193,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22195
+ },
+ {
+ "id": 673,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2612,
+ 2514,
+ 135,
+ 54
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7290
+ },
+ {
+ "id": 674,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2774,
+ 2093,
+ 50,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8300
+ },
+ {
+ "id": 675,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2735,
+ 1954,
+ 131,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7991
+ },
+ {
+ "id": 676,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2650,
+ 1587,
+ 208,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13520
+ },
+ {
+ "id": 677,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2387,
+ 1402,
+ 166,
+ 84
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13944
+ },
+ {
+ "id": 678,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2430,
+ 1139,
+ 100,
+ 154
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15400
+ },
+ {
+ "id": 679,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2523,
+ 1093,
+ 158,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12798
+ },
+ {
+ "id": 680,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2685,
+ 1297,
+ 104,
+ 84
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8736
+ },
+ {
+ "id": 681,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1588,
+ 1243,
+ 212,
+ 88
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18656
+ },
+ {
+ "id": 682,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1854,
+ 1212,
+ 146,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14600
+ },
+ {
+ "id": 683,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2001,
+ 1004,
+ 135,
+ 112
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15120
+ },
+ {
+ "id": 684,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1785,
+ 1073,
+ 85,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17340
+ },
+ {
+ "id": 685,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1831,
+ 1158,
+ 197,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19700
+ },
+ {
+ "id": 686,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2032,
+ 803,
+ 112,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18592
+ },
+ {
+ "id": 687,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1951,
+ 730,
+ 239,
+ 84
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20076
+ },
+ {
+ "id": 688,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1758,
+ 845,
+ 208,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5616
+ },
+ {
+ "id": 689,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1564,
+ 784,
+ 150,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10950
+ },
+ {
+ "id": 690,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1236,
+ 826,
+ 231,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16863
+ },
+ {
+ "id": 691,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2465,
+ 2568,
+ 135,
+ 88
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11880
+ },
+ {
+ "id": 692,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 390,
+ 2313,
+ 251,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18323
+ },
+ {
+ "id": 693,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 625,
+ 2271,
+ 181,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18824
+ },
+ {
+ "id": 694,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 479,
+ 2132,
+ 270,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16470
+ },
+ {
+ "id": 695,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 382,
+ 2193,
+ 166,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10126
+ },
+ {
+ "id": 696,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 185,
+ 2178,
+ 131,
+ 200
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26200
+ },
+ {
+ "id": 697,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 625,
+ 2039,
+ 185,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18500
+ },
+ {
+ "id": 698,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 463,
+ 1811,
+ 231,
+ 131
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30261
+ },
+ {
+ "id": 699,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 270,
+ 1753,
+ 142,
+ 135
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19170
+ },
+ {
+ "id": 700,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 266,
+ 1514,
+ 85,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16065
+ },
+ {
+ "id": 701,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 436,
+ 1502,
+ 216,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14040
+ },
+ {
+ "id": 702,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 533,
+ 1595,
+ 135,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20250
+ },
+ {
+ "id": 703,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 695,
+ 1595,
+ 50,
+ 235
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11750
+ },
+ {
+ "id": 704,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 707,
+ 1518,
+ 220,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13420
+ },
+ {
+ "id": 705,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 714,
+ 1348,
+ 88,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16280
+ },
+ {
+ "id": 706,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 46,
+ 1630,
+ 197,
+ 23
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4531
+ },
+ {
+ "id": 707,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 154,
+ 1255,
+ 27,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4995
+ },
+ {
+ "id": 708,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 428,
+ 845,
+ 212,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21200
+ },
+ {
+ "id": 709,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 629,
+ 703,
+ 61,
+ 224
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13664
+ },
+ {
+ "id": 710,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 784,
+ 606,
+ 65,
+ 135
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8775
+ },
+ {
+ "id": 711,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 950,
+ 872,
+ 54,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11232
+ },
+ {
+ "id": 712,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1155,
+ 1054,
+ 197,
+ 139
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27383
+ },
+ {
+ "id": 713,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 950,
+ 1236,
+ 258,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15738
+ },
+ {
+ "id": 714,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 911,
+ 1293,
+ 50,
+ 231
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11550
+ },
+ {
+ "id": 715,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 896,
+ 1730,
+ 146,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14600
+ },
+ {
+ "id": 716,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 880,
+ 1649,
+ 204,
+ 69
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14076
+ },
+ {
+ "id": 717,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1066,
+ 1645,
+ 108,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13284
+ },
+ {
+ "id": 718,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1051,
+ 1595,
+ 150,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18450
+ },
+ {
+ "id": 719,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1947,
+ 1525,
+ 77,
+ 158
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12166
+ },
+ {
+ "id": 720,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2318,
+ 965,
+ 142,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15336
+ },
+ {
+ "id": 721,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2287,
+ 753,
+ 142,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20164
+ },
+ {
+ "id": 722,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1445,
+ 490,
+ 119,
+ 200
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23800
+ },
+ {
+ "id": 723,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1371,
+ 571,
+ 57,
+ 220
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12540
+ },
+ {
+ "id": 724,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1530,
+ 583,
+ 243,
+ 57
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13851
+ },
+ {
+ "id": 725,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1823,
+ 540,
+ 197,
+ 158
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31126
+ },
+ {
+ "id": 726,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 629,
+ 950,
+ 123,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18450
+ },
+ {
+ "id": 727,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 691,
+ 1181,
+ 119,
+ 142
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16898
+ },
+ {
+ "id": 728,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 792,
+ 1100,
+ 88,
+ 181
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15928
+ },
+ {
+ "id": 729,
+ "image_id": 9,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2132,
+ 1243,
+ 162,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16848
+ },
+ {
+ "id": 730,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 478,
+ 781,
+ 206,
+ 106
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21836
+ },
+ {
+ "id": 731,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 478,
+ 1055,
+ 167,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13527
+ },
+ {
+ "id": 732,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 804,
+ 1050,
+ 63,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11655
+ },
+ {
+ "id": 733,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1027,
+ 1193,
+ 99,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17325
+ },
+ {
+ "id": 734,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1211,
+ 921,
+ 167,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25384
+ },
+ {
+ "id": 735,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 742,
+ 819,
+ 145,
+ 195
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28275
+ },
+ {
+ "id": 736,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 636,
+ 1150,
+ 137,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20550
+ },
+ {
+ "id": 737,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 592,
+ 1386,
+ 180,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14040
+ },
+ {
+ "id": 738,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 783,
+ 1371,
+ 124,
+ 198
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24552
+ },
+ {
+ "id": 739,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 760,
+ 1300,
+ 201,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5427
+ },
+ {
+ "id": 740,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 737,
+ 1343,
+ 155,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11315
+ },
+ {
+ "id": 741,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 68,
+ 1162,
+ 175,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8750
+ },
+ {
+ "id": 742,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 394,
+ 1562,
+ 109,
+ 239
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26051
+ },
+ {
+ "id": 743,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 666,
+ 1689,
+ 157,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27475
+ },
+ {
+ "id": 744,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1033,
+ 1664,
+ 203,
+ 68
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13804
+ },
+ {
+ "id": 745,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1386,
+ 1577,
+ 145,
+ 109
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15805
+ },
+ {
+ "id": 746,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1554,
+ 1541,
+ 195,
+ 43
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8385
+ },
+ {
+ "id": 747,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1699,
+ 1208,
+ 183,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 37698
+ },
+ {
+ "id": 748,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1368,
+ 1379,
+ 173,
+ 91
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15743
+ },
+ {
+ "id": 749,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1483,
+ 1361,
+ 157,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14758
+ },
+ {
+ "id": 750,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1379,
+ 1127,
+ 71,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11857
+ },
+ {
+ "id": 751,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1440,
+ 860,
+ 66,
+ 198
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13068
+ },
+ {
+ "id": 752,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1188,
+ 381,
+ 73,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15038
+ },
+ {
+ "id": 753,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1374,
+ 493,
+ 147,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11907
+ },
+ {
+ "id": 754,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1427,
+ 335,
+ 170,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24650
+ },
+ {
+ "id": 755,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1366,
+ 206,
+ 58,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9860
+ },
+ {
+ "id": 756,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1259,
+ 391,
+ 99,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13068
+ },
+ {
+ "id": 757,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 824,
+ 320,
+ 86,
+ 183
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15738
+ },
+ {
+ "id": 758,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1109,
+ 162,
+ 229,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16717
+ },
+ {
+ "id": 759,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1330,
+ 63,
+ 106,
+ 106
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11236
+ },
+ {
+ "id": 760,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1671,
+ 170,
+ 104,
+ 180
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18720
+ },
+ {
+ "id": 761,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 351,
+ 590,
+ 173,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20587
+ },
+ {
+ "id": 762,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 99,
+ 1038,
+ 76,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7144
+ },
+ {
+ "id": 763,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 603,
+ 325,
+ 76,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6536
+ },
+ {
+ "id": 764,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 742,
+ 216,
+ 50,
+ 117
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5850
+ },
+ {
+ "id": 765,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1730,
+ 501,
+ 157,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8635
+ },
+ {
+ "id": 766,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1748,
+ 699,
+ 38,
+ 185
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7030
+ },
+ {
+ "id": 767,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1763,
+ 704,
+ 239,
+ 38
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9082
+ },
+ {
+ "id": 768,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2175,
+ 399,
+ 190,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16340
+ },
+ {
+ "id": 769,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2239,
+ 554,
+ 86,
+ 162
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13932
+ },
+ {
+ "id": 770,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1755,
+ 445,
+ 203,
+ 66
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13398
+ },
+ {
+ "id": 771,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2033,
+ 1198,
+ 206,
+ 63
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12978
+ },
+ {
+ "id": 772,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1999,
+ 1335,
+ 76,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14668
+ },
+ {
+ "id": 773,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2157,
+ 1511,
+ 142,
+ 165
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23430
+ },
+ {
+ "id": 774,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1895,
+ 1513,
+ 104,
+ 124
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12896
+ },
+ {
+ "id": 775,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2025,
+ 1582,
+ 63,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11025
+ },
+ {
+ "id": 776,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2251,
+ 1094,
+ 119,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20825
+ },
+ {
+ "id": 777,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2302,
+ 977,
+ 195,
+ 114
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22230
+ },
+ {
+ "id": 778,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2435,
+ 1106,
+ 76,
+ 203
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15428
+ },
+ {
+ "id": 779,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2460,
+ 1178,
+ 81,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15633
+ },
+ {
+ "id": 780,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2572,
+ 1012,
+ 145,
+ 155
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22475
+ },
+ {
+ "id": 781,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2580,
+ 1465,
+ 157,
+ 124
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19468
+ },
+ {
+ "id": 782,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2442,
+ 1681,
+ 206,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16068
+ },
+ {
+ "id": 783,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2369,
+ 2012,
+ 106,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15370
+ },
+ {
+ "id": 784,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2175,
+ 2297,
+ 193,
+ 127
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24511
+ },
+ {
+ "id": 785,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 832,
+ 2425,
+ 188,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16732
+ },
+ {
+ "id": 786,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1218,
+ 2414,
+ 129,
+ 162
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20898
+ },
+ {
+ "id": 787,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1376,
+ 2521,
+ 83,
+ 173
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14359
+ },
+ {
+ "id": 788,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1516,
+ 2417,
+ 142,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20590
+ },
+ {
+ "id": 789,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1264,
+ 2608,
+ 73,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10001
+ },
+ {
+ "id": 790,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1290,
+ 2587,
+ 117,
+ 129
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15093
+ },
+ {
+ "id": 791,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 875,
+ 2567,
+ 274,
+ 68
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18632
+ },
+ {
+ "id": 792,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1422,
+ 2010,
+ 55,
+ 249
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13695
+ },
+ {
+ "id": 793,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1493,
+ 2096,
+ 188,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 32900
+ },
+ {
+ "id": 794,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1498,
+ 1903,
+ 94,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19552
+ },
+ {
+ "id": 795,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1610,
+ 1738,
+ 96,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18528
+ },
+ {
+ "id": 796,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1855,
+ 2048,
+ 45,
+ 239
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10755
+ },
+ {
+ "id": 797,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1781,
+ 2412,
+ 137,
+ 180
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24660
+ },
+ {
+ "id": 798,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1903,
+ 2292,
+ 218,
+ 99
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21582
+ },
+ {
+ "id": 799,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2033,
+ 2119,
+ 145,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24650
+ },
+ {
+ "id": 800,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2005,
+ 2076,
+ 157,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14758
+ },
+ {
+ "id": 801,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1610,
+ 2330,
+ 234,
+ 25
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5850
+ },
+ {
+ "id": 802,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1628,
+ 2366,
+ 241,
+ 45
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10845
+ },
+ {
+ "id": 803,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1900,
+ 2379,
+ 137,
+ 180
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24660
+ },
+ {
+ "id": 804,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1704,
+ 2435,
+ 99,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11781
+ },
+ {
+ "id": 805,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 689,
+ 1989,
+ 234,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19422
+ },
+ {
+ "id": 806,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1000,
+ 1870,
+ 190,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25080
+ },
+ {
+ "id": 807,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1129,
+ 1608,
+ 147,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12201
+ },
+ {
+ "id": 808,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1165,
+ 1725,
+ 124,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21700
+ },
+ {
+ "id": 809,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1305,
+ 1626,
+ 30,
+ 183
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5490
+ },
+ {
+ "id": 810,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 753,
+ 1860,
+ 216,
+ 91
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19656
+ },
+ {
+ "id": 811,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 559,
+ 1883,
+ 50,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10400
+ },
+ {
+ "id": 812,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 458,
+ 2132,
+ 183,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9150
+ },
+ {
+ "id": 813,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 147,
+ 1829,
+ 185,
+ 76
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14060
+ },
+ {
+ "id": 814,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 330,
+ 2112,
+ 234,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18252
+ },
+ {
+ "id": 815,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2007,
+ 1769,
+ 70,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11690
+ },
+ {
+ "id": 816,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1668,
+ 2179,
+ 163,
+ 40
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6520
+ },
+ {
+ "id": 817,
+ "image_id": 10,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1426,
+ 2708,
+ 160,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8320
+ },
+ {
+ "id": 818,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 467,
+ 523,
+ 98,
+ 240
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23520
+ },
+ {
+ "id": 819,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 409,
+ 803,
+ 169,
+ 153
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25857
+ },
+ {
+ "id": 820,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 597,
+ 1006,
+ 110,
+ 138
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15180
+ },
+ {
+ "id": 821,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 391,
+ 917,
+ 43,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8299
+ },
+ {
+ "id": 822,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 215,
+ 1089,
+ 95,
+ 236
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22420
+ },
+ {
+ "id": 823,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1006,
+ 874,
+ 110,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22660
+ },
+ {
+ "id": 824,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1105,
+ 800,
+ 83,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8383
+ },
+ {
+ "id": 825,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1256,
+ 910,
+ 227,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13847
+ },
+ {
+ "id": 826,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1450,
+ 978,
+ 110,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17160
+ },
+ {
+ "id": 827,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1286,
+ 1089,
+ 172,
+ 64
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11008
+ },
+ {
+ "id": 828,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1585,
+ 846,
+ 129,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16254
+ },
+ {
+ "id": 829,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1462,
+ 726,
+ 83,
+ 153
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12699
+ },
+ {
+ "id": 830,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1551,
+ 830,
+ 95,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12540
+ },
+ {
+ "id": 831,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1788,
+ 1055,
+ 83,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10956
+ },
+ {
+ "id": 832,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2072,
+ 1012,
+ 83,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11703
+ },
+ {
+ "id": 833,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 825,
+ 1271,
+ 193,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12931
+ },
+ {
+ "id": 834,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1043,
+ 1206,
+ 80,
+ 187
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14960
+ },
+ {
+ "id": 835,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1333,
+ 1258,
+ 218,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22672
+ },
+ {
+ "id": 836,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1403,
+ 1234,
+ 175,
+ 80
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14000
+ },
+ {
+ "id": 837,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1166,
+ 1320,
+ 123,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21525
+ },
+ {
+ "id": 838,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 665,
+ 1486,
+ 212,
+ 92
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19504
+ },
+ {
+ "id": 839,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 889,
+ 1409,
+ 193,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6369
+ },
+ {
+ "id": 840,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1086,
+ 1397,
+ 86,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6020
+ },
+ {
+ "id": 841,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 895,
+ 1701,
+ 169,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10309
+ },
+ {
+ "id": 842,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 760,
+ 1714,
+ 116,
+ 144
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16704
+ },
+ {
+ "id": 843,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 677,
+ 1852,
+ 52,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8632
+ },
+ {
+ "id": 844,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 366,
+ 2194,
+ 178,
+ 113
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20114
+ },
+ {
+ "id": 845,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 421,
+ 1905,
+ 64,
+ 187
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11968
+ },
+ {
+ "id": 846,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 458,
+ 1671,
+ 200,
+ 138
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27600
+ },
+ {
+ "id": 847,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 326,
+ 1661,
+ 83,
+ 169
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14027
+ },
+ {
+ "id": 848,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 200,
+ 1812,
+ 187,
+ 43
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8041
+ },
+ {
+ "id": 849,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 147,
+ 1865,
+ 255,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6885
+ },
+ {
+ "id": 850,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 255,
+ 1914,
+ 141,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22983
+ },
+ {
+ "id": 851,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 83,
+ 1609,
+ 95,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9595
+ },
+ {
+ "id": 852,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 46,
+ 1308,
+ 178,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18512
+ },
+ {
+ "id": 853,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 575,
+ 1394,
+ 61,
+ 3
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 183
+ },
+ {
+ "id": 854,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 696,
+ 321,
+ 159,
+ 147
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23373
+ },
+ {
+ "id": 855,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 582,
+ 359,
+ 193,
+ 109
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21037
+ },
+ {
+ "id": 856,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 687,
+ 220,
+ 67,
+ 138
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9246
+ },
+ {
+ "id": 857,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1015,
+ 84,
+ 147,
+ 184
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27048
+ },
+ {
+ "id": 858,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1246,
+ 79,
+ 117,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10062
+ },
+ {
+ "id": 859,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1070,
+ 243,
+ 79,
+ 199
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15721
+ },
+ {
+ "id": 860,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1289,
+ 292,
+ 203,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29435
+ },
+ {
+ "id": 861,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1299,
+ 456,
+ 203,
+ 71
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14413
+ },
+ {
+ "id": 862,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1194,
+ 657,
+ 246,
+ 39
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9594
+ },
+ {
+ "id": 863,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1215,
+ 691,
+ 210,
+ 56
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11760
+ },
+ {
+ "id": 864,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1160,
+ 592,
+ 187,
+ 46
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8602
+ },
+ {
+ "id": 865,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1099,
+ 563,
+ 180,
+ 46
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8280
+ },
+ {
+ "id": 866,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 182,
+ 767,
+ 126,
+ 103
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12978
+ },
+ {
+ "id": 867,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 330,
+ 525,
+ 52,
+ 113
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5876
+ },
+ {
+ "id": 868,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 214,
+ 739,
+ 145,
+ 88
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12760
+ },
+ {
+ "id": 869,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 92,
+ 933,
+ 109,
+ 136
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14824
+ },
+ {
+ "id": 870,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1541,
+ 565,
+ 182,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13286
+ },
+ {
+ "id": 871,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1741,
+ 243,
+ 98,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20776
+ },
+ {
+ "id": 872,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1461,
+ 264,
+ 172,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29240
+ },
+ {
+ "id": 873,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1543,
+ 212,
+ 103,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18334
+ },
+ {
+ "id": 874,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2062,
+ 626,
+ 174,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11310
+ },
+ {
+ "id": 875,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2252,
+ 639,
+ 136,
+ 147
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19992
+ },
+ {
+ "id": 876,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2203,
+ 859,
+ 218,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27468
+ },
+ {
+ "id": 877,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2233,
+ 929,
+ 149,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19668
+ },
+ {
+ "id": 878,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2428,
+ 1181,
+ 212,
+ 75
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15900
+ },
+ {
+ "id": 879,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2258,
+ 1259,
+ 161,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21252
+ },
+ {
+ "id": 880,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2138,
+ 420,
+ 128,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21760
+ },
+ {
+ "id": 881,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2199,
+ 428,
+ 107,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15943
+ },
+ {
+ "id": 882,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2218,
+ 378,
+ 60,
+ 69
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4140
+ },
+ {
+ "id": 883,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2130,
+ 311,
+ 31,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 2511
+ },
+ {
+ "id": 884,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2213,
+ 1841,
+ 212,
+ 105
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22260
+ },
+ {
+ "id": 885,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2423,
+ 1507,
+ 231,
+ 46
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10626
+ },
+ {
+ "id": 886,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2608,
+ 1484,
+ 132,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14652
+ },
+ {
+ "id": 887,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2266,
+ 1761,
+ 254,
+ 140
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 35560
+ },
+ {
+ "id": 888,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1982,
+ 2333,
+ 142,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27974
+ },
+ {
+ "id": 889,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1723,
+ 2297,
+ 231,
+ 79
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18249
+ },
+ {
+ "id": 890,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2022,
+ 2207,
+ 155,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13330
+ },
+ {
+ "id": 891,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1324,
+ 2467,
+ 212,
+ 77
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16324
+ },
+ {
+ "id": 892,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1517,
+ 2310,
+ 58,
+ 222
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12876
+ },
+ {
+ "id": 893,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1645,
+ 2152,
+ 161,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10787
+ },
+ {
+ "id": 894,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1334,
+ 2375,
+ 147,
+ 121
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17787
+ },
+ {
+ "id": 895,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1549,
+ 2095,
+ 206,
+ 50
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10300
+ },
+ {
+ "id": 896,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1692,
+ 1845,
+ 239,
+ 60
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14340
+ },
+ {
+ "id": 897,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1997,
+ 1919,
+ 75,
+ 121
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9075
+ },
+ {
+ "id": 898,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1607,
+ 2011,
+ 220,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20680
+ },
+ {
+ "id": 899,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1746,
+ 2015,
+ 145,
+ 117
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16965
+ },
+ {
+ "id": 900,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1715,
+ 1669,
+ 107,
+ 170
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18190
+ },
+ {
+ "id": 901,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1717,
+ 1545,
+ 187,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20757
+ },
+ {
+ "id": 902,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1488,
+ 1635,
+ 161,
+ 113
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18193
+ },
+ {
+ "id": 903,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1534,
+ 1458,
+ 56,
+ 199
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11144
+ },
+ {
+ "id": 904,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1593,
+ 1774,
+ 136,
+ 132
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17952
+ },
+ {
+ "id": 905,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1496,
+ 1929,
+ 73,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11899
+ },
+ {
+ "id": 906,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1340,
+ 2032,
+ 180,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21420
+ },
+ {
+ "id": 907,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1229,
+ 2175,
+ 170,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11050
+ },
+ {
+ "id": 908,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1244,
+ 2087,
+ 235,
+ 77
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18095
+ },
+ {
+ "id": 909,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1233,
+ 1660,
+ 149,
+ 79
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11771
+ },
+ {
+ "id": 910,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1330,
+ 1704,
+ 58,
+ 117
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6786
+ },
+ {
+ "id": 911,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1233,
+ 1618,
+ 147,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3969
+ },
+ {
+ "id": 912,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1446,
+ 1467,
+ 88,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12760
+ },
+ {
+ "id": 913,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 552,
+ 2284,
+ 170,
+ 94
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15980
+ },
+ {
+ "id": 914,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 480,
+ 2265,
+ 180,
+ 105
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18900
+ },
+ {
+ "id": 915,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 890,
+ 2256,
+ 201,
+ 65
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13065
+ },
+ {
+ "id": 916,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1099,
+ 2347,
+ 214,
+ 31
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6634
+ },
+ {
+ "id": 917,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1128,
+ 2040,
+ 69,
+ 191
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13179
+ },
+ {
+ "id": 918,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1210,
+ 1882,
+ 77,
+ 172
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13244
+ },
+ {
+ "id": 919,
+ "image_id": 11,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1443,
+ 1870,
+ 69,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14352
+ },
+ {
+ "id": 920,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 864,
+ 1252,
+ 137,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19317
+ },
+ {
+ "id": 921,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1006,
+ 1540,
+ 104,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17368
+ },
+ {
+ "id": 922,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1155,
+ 1737,
+ 122,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22204
+ },
+ {
+ "id": 923,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 376,
+ 1648,
+ 197,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11623
+ },
+ {
+ "id": 924,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 290,
+ 1782,
+ 163,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7172
+ },
+ {
+ "id": 925,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1591,
+ 1293,
+ 81,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13527
+ },
+ {
+ "id": 926,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1695,
+ 1487,
+ 59,
+ 164
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9676
+ },
+ {
+ "id": 927,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1922,
+ 1707,
+ 81,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17172
+ },
+ {
+ "id": 928,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2321,
+ 1465,
+ 141,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29328
+ },
+ {
+ "id": 929,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1926,
+ 1301,
+ 175,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17500
+ },
+ {
+ "id": 930,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1818,
+ 1185,
+ 260,
+ 33
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8580
+ },
+ {
+ "id": 931,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2068,
+ 1249,
+ 279,
+ 55
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15345
+ },
+ {
+ "id": 932,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1483,
+ 1126,
+ 152,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17480
+ },
+ {
+ "id": 933,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1736,
+ 891,
+ 85,
+ 249
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21165
+ },
+ {
+ "id": 934,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1475,
+ 1047,
+ 208,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9984
+ },
+ {
+ "id": 935,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1177,
+ 1047,
+ 163,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24287
+ },
+ {
+ "id": 936,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1032,
+ 965,
+ 93,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14880
+ },
+ {
+ "id": 937,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 935,
+ 827,
+ 134,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11926
+ },
+ {
+ "id": 938,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 730,
+ 816,
+ 149,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11622
+ },
+ {
+ "id": 939,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1416,
+ 2002,
+ 208,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18512
+ },
+ {
+ "id": 940,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1576,
+ 2132,
+ 178,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 30438
+ },
+ {
+ "id": 941,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1654,
+ 2032,
+ 89,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17533
+ },
+ {
+ "id": 942,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2034,
+ 2215,
+ 81,
+ 242
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19602
+ },
+ {
+ "id": 943,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1949,
+ 2517,
+ 115,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21850
+ },
+ {
+ "id": 944,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1963,
+ 2558,
+ 167,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19205
+ },
+ {
+ "id": 945,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1378,
+ 2431,
+ 130,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22230
+ },
+ {
+ "id": 946,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1475,
+ 2636,
+ 190,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23940
+ },
+ {
+ "id": 947,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1874,
+ 2699,
+ 216,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20088
+ },
+ {
+ "id": 948,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2582,
+ 1670,
+ 178,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18512
+ },
+ {
+ "id": 949,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2228,
+ 1801,
+ 223,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24753
+ },
+ {
+ "id": 950,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2310,
+ 2125,
+ 178,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27768
+ },
+ {
+ "id": 951,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1077,
+ 2300,
+ 104,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20488
+ },
+ {
+ "id": 952,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 655,
+ 2237,
+ 178,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25810
+ },
+ {
+ "id": 953,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 484,
+ 2207,
+ 104,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19760
+ },
+ {
+ "id": 954,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 335,
+ 2289,
+ 145,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23200
+ },
+ {
+ "id": 955,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 432,
+ 2263,
+ 89,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13884
+ },
+ {
+ "id": 956,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 383,
+ 2065,
+ 111,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12321
+ },
+ {
+ "id": 957,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 562,
+ 1983,
+ 178,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10502
+ },
+ {
+ "id": 958,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 313,
+ 1924,
+ 122,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17202
+ },
+ {
+ "id": 959,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 182,
+ 1875,
+ 137,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8083
+ },
+ {
+ "id": 960,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 93,
+ 1972,
+ 85,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16150
+ },
+ {
+ "id": 961,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 454,
+ 1417,
+ 141,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26226
+ },
+ {
+ "id": 962,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 622,
+ 1409,
+ 156,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27768
+ },
+ {
+ "id": 963,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1479,
+ 574,
+ 160,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11200
+ },
+ {
+ "id": 964,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1859,
+ 279,
+ 55,
+ 216
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11880
+ },
+ {
+ "id": 965,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1893,
+ 686,
+ 186,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19344
+ },
+ {
+ "id": 966,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1986,
+ 816,
+ 81,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11421
+ },
+ {
+ "id": 967,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2228,
+ 988,
+ 93,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12090
+ },
+ {
+ "id": 968,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2351,
+ 976,
+ 108,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19224
+ },
+ {
+ "id": 969,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2269,
+ 1189,
+ 178,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20470
+ },
+ {
+ "id": 970,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2556,
+ 1256,
+ 193,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19300
+ },
+ {
+ "id": 971,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 525,
+ 805,
+ 186,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24924
+ },
+ {
+ "id": 972,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 354,
+ 805,
+ 89,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17177
+ },
+ {
+ "id": 973,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 316,
+ 704,
+ 152,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19152
+ },
+ {
+ "id": 974,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 268,
+ 723,
+ 70,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12460
+ },
+ {
+ "id": 975,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 78,
+ 976,
+ 63,
+ 205
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12915
+ },
+ {
+ "id": 976,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 70,
+ 1260,
+ 52,
+ 231
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12012
+ },
+ {
+ "id": 977,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 33,
+ 1480,
+ 52,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9100
+ },
+ {
+ "id": 978,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 0,
+ 1715,
+ 48,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 3360
+ },
+ {
+ "id": 979,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 7,
+ 1763,
+ 119,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11067
+ },
+ {
+ "id": 980,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1211,
+ 1965,
+ 156,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10920
+ },
+ {
+ "id": 981,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1293,
+ 1830,
+ 175,
+ 82
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14350
+ },
+ {
+ "id": 982,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1505,
+ 1812,
+ 59,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7257
+ },
+ {
+ "id": 983,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1334,
+ 1681,
+ 193,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10036
+ },
+ {
+ "id": 984,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1214,
+ 1502,
+ 245,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20825
+ },
+ {
+ "id": 985,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1192,
+ 801,
+ 126,
+ 93
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11718
+ },
+ {
+ "id": 986,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1162,
+ 555,
+ 74,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11840
+ },
+ {
+ "id": 987,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 704,
+ 361,
+ 197,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8668
+ },
+ {
+ "id": 988,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 924,
+ 234,
+ 108,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11232
+ },
+ {
+ "id": 989,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1345,
+ 611,
+ 130,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20800
+ },
+ {
+ "id": 990,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1375,
+ 697,
+ 67,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12194
+ },
+ {
+ "id": 991,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1300,
+ 689,
+ 63,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8883
+ },
+ {
+ "id": 992,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1624,
+ 2446,
+ 126,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21546
+ },
+ {
+ "id": 993,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1792,
+ 2703,
+ 63,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5607
+ },
+ {
+ "id": 994,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2258,
+ 786,
+ 178,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13172
+ },
+ {
+ "id": 995,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2403,
+ 794,
+ 70,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10150
+ },
+ {
+ "id": 996,
+ "image_id": 12,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2485,
+ 809,
+ 59,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 2832
+ },
+ {
+ "id": 997,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 806,
+ 617,
+ 76,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15656
+ },
+ {
+ "id": 998,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 932,
+ 817,
+ 169,
+ 76
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12844
+ },
+ {
+ "id": 999,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 751,
+ 873,
+ 224,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21280
+ },
+ {
+ "id": 1000,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 655,
+ 974,
+ 73,
+ 169
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12337
+ },
+ {
+ "id": 1001,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 717,
+ 1174,
+ 172,
+ 92
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15824
+ },
+ {
+ "id": 1002,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1022,
+ 1045,
+ 218,
+ 49
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10682
+ },
+ {
+ "id": 1003,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1462,
+ 919,
+ 86,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17716
+ },
+ {
+ "id": 1004,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1542,
+ 583,
+ 138,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 28428
+ },
+ {
+ "id": 1005,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1748,
+ 667,
+ 209,
+ 73
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15257
+ },
+ {
+ "id": 1006,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1807,
+ 768,
+ 129,
+ 181
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23349
+ },
+ {
+ "id": 1007,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1810,
+ 876,
+ 184,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17480
+ },
+ {
+ "id": 1008,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1625,
+ 860,
+ 184,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23184
+ },
+ {
+ "id": 1009,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 883,
+ 1245,
+ 206,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10712
+ },
+ {
+ "id": 1010,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 871,
+ 1338,
+ 190,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11590
+ },
+ {
+ "id": 1011,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 874,
+ 1424,
+ 221,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15470
+ },
+ {
+ "id": 1012,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1108,
+ 1359,
+ 215,
+ 76
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16340
+ },
+ {
+ "id": 1013,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1293,
+ 1270,
+ 70,
+ 169
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11830
+ },
+ {
+ "id": 1014,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1456,
+ 1325,
+ 113,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23278
+ },
+ {
+ "id": 1015,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1881,
+ 1177,
+ 49,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7644
+ },
+ {
+ "id": 1016,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1385,
+ 1768,
+ 86,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7396
+ },
+ {
+ "id": 1017,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1542,
+ 1685,
+ 129,
+ 98
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12642
+ },
+ {
+ "id": 1018,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1582,
+ 1313,
+ 107,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11449
+ },
+ {
+ "id": 1019,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1370,
+ 1258,
+ 43,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6450
+ },
+ {
+ "id": 1020,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 975,
+ 1498,
+ 197,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18715
+ },
+ {
+ "id": 1021,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1120,
+ 1504,
+ 126,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15876
+ },
+ {
+ "id": 1022,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1154,
+ 1531,
+ 172,
+ 144
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24768
+ },
+ {
+ "id": 1023,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 905,
+ 1676,
+ 129,
+ 98
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12642
+ },
+ {
+ "id": 1024,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 806,
+ 1765,
+ 230,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19780
+ },
+ {
+ "id": 1025,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 557,
+ 1611,
+ 175,
+ 64
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11200
+ },
+ {
+ "id": 1026,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 304,
+ 1528,
+ 181,
+ 95
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17195
+ },
+ {
+ "id": 1027,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 477,
+ 1270,
+ 83,
+ 169
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14027
+ },
+ {
+ "id": 1028,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 120,
+ 1258,
+ 237,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12324
+ },
+ {
+ "id": 1029,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 366,
+ 1073,
+ 104,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17264
+ },
+ {
+ "id": 1030,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 381,
+ 965,
+ 169,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23829
+ },
+ {
+ "id": 1031,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 200,
+ 1057,
+ 138,
+ 113
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15594
+ },
+ {
+ "id": 1032,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 252,
+ 971,
+ 132,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9240
+ },
+ {
+ "id": 1033,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 403,
+ 802,
+ 67,
+ 120
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8040
+ },
+ {
+ "id": 1034,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 446,
+ 771,
+ 40,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4280
+ },
+ {
+ "id": 1035,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1179,
+ 999,
+ 178,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22428
+ },
+ {
+ "id": 1036,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1385,
+ 780,
+ 89,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13884
+ },
+ {
+ "id": 1037,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1216,
+ 617,
+ 110,
+ 221
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24310
+ },
+ {
+ "id": 1038,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1280,
+ 427,
+ 113,
+ 144
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16272
+ },
+ {
+ "id": 1039,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1425,
+ 476,
+ 80,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14240
+ },
+ {
+ "id": 1040,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1348,
+ 648,
+ 181,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19367
+ },
+ {
+ "id": 1041,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1169,
+ 550,
+ 203,
+ 49
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9947
+ },
+ {
+ "id": 1042,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1253,
+ 599,
+ 166,
+ 30
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 4980
+ },
+ {
+ "id": 1043,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1597,
+ 427,
+ 116,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16356
+ },
+ {
+ "id": 1044,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1714,
+ 460,
+ 55,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8580
+ },
+ {
+ "id": 1045,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1788,
+ 488,
+ 43,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6063
+ },
+ {
+ "id": 1046,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1970,
+ 565,
+ 55,
+ 129
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7095
+ },
+ {
+ "id": 1047,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1976,
+ 682,
+ 197,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19897
+ },
+ {
+ "id": 1048,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2096,
+ 827,
+ 135,
+ 138
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18630
+ },
+ {
+ "id": 1049,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2155,
+ 1510,
+ 126,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20538
+ },
+ {
+ "id": 1050,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2090,
+ 1698,
+ 178,
+ 123
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21894
+ },
+ {
+ "id": 1051,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1757,
+ 1599,
+ 166,
+ 187
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31042
+ },
+ {
+ "id": 1052,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1739,
+ 1464,
+ 157,
+ 80
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12560
+ },
+ {
+ "id": 1053,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1856,
+ 1996,
+ 200,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17800
+ },
+ {
+ "id": 1054,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1927,
+ 1944,
+ 190,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5130
+ },
+ {
+ "id": 1055,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1730,
+ 1805,
+ 36,
+ 218
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7848
+ },
+ {
+ "id": 1056,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1684,
+ 1722,
+ 49,
+ 236
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11564
+ },
+ {
+ "id": 1057,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1474,
+ 2156,
+ 215,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18490
+ },
+ {
+ "id": 1058,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1271,
+ 2168,
+ 123,
+ 224
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27552
+ },
+ {
+ "id": 1059,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1628,
+ 2350,
+ 58,
+ 206
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11948
+ },
+ {
+ "id": 1060,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1684,
+ 2439,
+ 246,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21156
+ },
+ {
+ "id": 1061,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2130,
+ 2405,
+ 126,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18900
+ },
+ {
+ "id": 1062,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 858,
+ 2332,
+ 193,
+ 86
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16598
+ },
+ {
+ "id": 1063,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 735,
+ 2175,
+ 116,
+ 218
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25288
+ },
+ {
+ "id": 1064,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 634,
+ 2092,
+ 104,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16952
+ },
+ {
+ "id": 1065,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 621,
+ 2015,
+ 233,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6291
+ },
+ {
+ "id": 1066,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 899,
+ 1947,
+ 172,
+ 61
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10492
+ },
+ {
+ "id": 1067,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1012,
+ 1815,
+ 181,
+ 120
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21720
+ },
+ {
+ "id": 1068,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 406,
+ 1913,
+ 70,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12250
+ },
+ {
+ "id": 1069,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 193,
+ 1827,
+ 147,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22932
+ },
+ {
+ "id": 1070,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 335,
+ 1713,
+ 104,
+ 215
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22360
+ },
+ {
+ "id": 1071,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 243,
+ 1630,
+ 138,
+ 190
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26220
+ },
+ {
+ "id": 1072,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 116,
+ 1618,
+ 80,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15440
+ },
+ {
+ "id": 1073,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 86,
+ 1848,
+ 52,
+ 172
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8944
+ },
+ {
+ "id": 1074,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 55,
+ 1688,
+ 184,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12328
+ },
+ {
+ "id": 1075,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 532,
+ 2033,
+ 89,
+ 172
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15308
+ },
+ {
+ "id": 1076,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 280,
+ 2270,
+ 86,
+ 215
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18490
+ },
+ {
+ "id": 1077,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 403,
+ 2365,
+ 58,
+ 203
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11774
+ },
+ {
+ "id": 1078,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 495,
+ 2227,
+ 123,
+ 236
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29028
+ },
+ {
+ "id": 1079,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 455,
+ 2159,
+ 178,
+ 150
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26700
+ },
+ {
+ "id": 1080,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 101,
+ 2218,
+ 98,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5096
+ },
+ {
+ "id": 1081,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 129,
+ 2304,
+ 73,
+ 40
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 2920
+ },
+ {
+ "id": 1082,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1059,
+ 2193,
+ 197,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13199
+ },
+ {
+ "id": 1083,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1973,
+ 1815,
+ 175,
+ 107
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18725
+ },
+ {
+ "id": 1084,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2256,
+ 1722,
+ 61,
+ 184
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11224
+ },
+ {
+ "id": 1085,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2229,
+ 2116,
+ 240,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 42720
+ },
+ {
+ "id": 1086,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2276,
+ 2423,
+ 169,
+ 172
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 29068
+ },
+ {
+ "id": 1087,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2070,
+ 2540,
+ 181,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18281
+ },
+ {
+ "id": 1088,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2550,
+ 2217,
+ 153,
+ 80
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12240
+ },
+ {
+ "id": 1089,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2489,
+ 1965,
+ 233,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19339
+ },
+ {
+ "id": 1090,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2446,
+ 1774,
+ 193,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27213
+ },
+ {
+ "id": 1091,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2458,
+ 1925,
+ 230,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11960
+ },
+ {
+ "id": 1092,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2335,
+ 1660,
+ 184,
+ 64
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11776
+ },
+ {
+ "id": 1093,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2304,
+ 1528,
+ 274,
+ 27
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7398
+ },
+ {
+ "id": 1094,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2304,
+ 1426,
+ 246,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12792
+ },
+ {
+ "id": 1095,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2523,
+ 1207,
+ 123,
+ 83
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10209
+ },
+ {
+ "id": 1096,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2572,
+ 1328,
+ 49,
+ 166
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8134
+ },
+ {
+ "id": 1097,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2612,
+ 1466,
+ 126,
+ 52
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6552
+ },
+ {
+ "id": 1098,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2344,
+ 1561,
+ 240,
+ 101
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24240
+ },
+ {
+ "id": 1099,
+ "image_id": 13,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1340,
+ 1500,
+ 107,
+ 261
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27927
+ },
+ {
+ "id": 1100,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 592,
+ 1377,
+ 74,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13764
+ },
+ {
+ "id": 1101,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 417,
+ 1634,
+ 44,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8492
+ },
+ {
+ "id": 1102,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 715,
+ 2159,
+ 223,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25645
+ },
+ {
+ "id": 1103,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 812,
+ 2491,
+ 216,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22464
+ },
+ {
+ "id": 1104,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1650,
+ 2450,
+ 186,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13020
+ },
+ {
+ "id": 1105,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1207,
+ 2699,
+ 137,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10138
+ },
+ {
+ "id": 1106,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1713,
+ 1467,
+ 193,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12931
+ },
+ {
+ "id": 1107,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2231,
+ 1411,
+ 264,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17688
+ },
+ {
+ "id": 1108,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2067,
+ 1314,
+ 70,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12250
+ },
+ {
+ "id": 1109,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1668,
+ 1165,
+ 204,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 27948
+ },
+ {
+ "id": 1110,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1776,
+ 1292,
+ 175,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14175
+ },
+ {
+ "id": 1111,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1493,
+ 1243,
+ 130,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9620
+ },
+ {
+ "id": 1112,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1154,
+ 1415,
+ 111,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17760
+ },
+ {
+ "id": 1113,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1274,
+ 1448,
+ 29,
+ 223
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6467
+ },
+ {
+ "id": 1114,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1326,
+ 975,
+ 149,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22648
+ },
+ {
+ "id": 1115,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1549,
+ 767,
+ 122,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23058
+ },
+ {
+ "id": 1116,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1855,
+ 774,
+ 193,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31459
+ },
+ {
+ "id": 1117,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1743,
+ 1046,
+ 249,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20169
+ },
+ {
+ "id": 1118,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 879,
+ 711,
+ 171,
+ 115
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19665
+ },
+ {
+ "id": 1119,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1136,
+ 670,
+ 104,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18928
+ },
+ {
+ "id": 1120,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1076,
+ 774,
+ 149,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21009
+ },
+ {
+ "id": 1121,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1356,
+ 499,
+ 115,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17020
+ },
+ {
+ "id": 1122,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 823,
+ 301,
+ 78,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11310
+ },
+ {
+ "id": 1123,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 443,
+ 536,
+ 175,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12950
+ },
+ {
+ "id": 1124,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 283,
+ 741,
+ 175,
+ 74
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12950
+ },
+ {
+ "id": 1125,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2518,
+ 1780,
+ 156,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18564
+ },
+ {
+ "id": 1126,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1907,
+ 450,
+ 67,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13467
+ },
+ {
+ "id": 1127,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1955,
+ 435,
+ 189,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14742
+ },
+ {
+ "id": 1128,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1970,
+ 364,
+ 171,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11457
+ },
+ {
+ "id": 1129,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1810,
+ 316,
+ 130,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13520
+ },
+ {
+ "id": 1130,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1717,
+ 431,
+ 189,
+ 48
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9072
+ },
+ {
+ "id": 1131,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1821,
+ 461,
+ 104,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16952
+ },
+ {
+ "id": 1132,
+ "image_id": 14,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1955,
+ 297,
+ 63,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6993
+ },
+ {
+ "id": 1133,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1329,
+ 730,
+ 100,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18600
+ },
+ {
+ "id": 1134,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1963,
+ 1024,
+ 219,
+ 67
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14673
+ },
+ {
+ "id": 1135,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2432,
+ 1102,
+ 186,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16554
+ },
+ {
+ "id": 1136,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2343,
+ 1247,
+ 126,
+ 171
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21546
+ },
+ {
+ "id": 1137,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2160,
+ 1728,
+ 81,
+ 212
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17172
+ },
+ {
+ "id": 1138,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2354,
+ 1788,
+ 145,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18850
+ },
+ {
+ "id": 1139,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2384,
+ 1955,
+ 242,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23232
+ },
+ {
+ "id": 1140,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1963,
+ 2000,
+ 189,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 33075
+ },
+ {
+ "id": 1141,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1747,
+ 1914,
+ 189,
+ 141
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26649
+ },
+ {
+ "id": 1142,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1896,
+ 1657,
+ 100,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20100
+ },
+ {
+ "id": 1143,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1713,
+ 1687,
+ 122,
+ 175
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21350
+ },
+ {
+ "id": 1144,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1579,
+ 1654,
+ 59,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8968
+ },
+ {
+ "id": 1145,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1512,
+ 1132,
+ 152,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24320
+ },
+ {
+ "id": 1146,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1557,
+ 510,
+ 152,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12920
+ },
+ {
+ "id": 1147,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 748,
+ 424,
+ 186,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31062
+ },
+ {
+ "id": 1148,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 797,
+ 257,
+ 96,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17856
+ },
+ {
+ "id": 1149,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1035,
+ 331,
+ 178,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19758
+ },
+ {
+ "id": 1150,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2145,
+ 409,
+ 197,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24034
+ },
+ {
+ "id": 1151,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2630,
+ 953,
+ 74,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8214
+ },
+ {
+ "id": 1152,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 424,
+ 1177,
+ 175,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23450
+ },
+ {
+ "id": 1153,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 249,
+ 1132,
+ 141,
+ 108
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15228
+ },
+ {
+ "id": 1154,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 398,
+ 849,
+ 171,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18981
+ },
+ {
+ "id": 1155,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 752,
+ 1069,
+ 130,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12480
+ },
+ {
+ "id": 1156,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 234,
+ 1445,
+ 52,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10816
+ },
+ {
+ "id": 1157,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 346,
+ 1773,
+ 122,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16348
+ },
+ {
+ "id": 1158,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 491,
+ 1985,
+ 167,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18537
+ },
+ {
+ "id": 1159,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 968,
+ 1758,
+ 130,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18850
+ },
+ {
+ "id": 1160,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1225,
+ 1490,
+ 93,
+ 156
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14508
+ },
+ {
+ "id": 1161,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1203,
+ 2291,
+ 167,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22378
+ },
+ {
+ "id": 1162,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2015,
+ 2417,
+ 96,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9216
+ },
+ {
+ "id": 1163,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1322,
+ 1791,
+ 145,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 26970
+ },
+ {
+ "id": 1164,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 223,
+ 1769,
+ 48,
+ 201
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9648
+ },
+ {
+ "id": 1165,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 197,
+ 1963,
+ 186,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15810
+ },
+ {
+ "id": 1166,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 268,
+ 2022,
+ 137,
+ 122
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 16714
+ },
+ {
+ "id": 1167,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 257,
+ 2078,
+ 59,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8791
+ },
+ {
+ "id": 1168,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 122,
+ 1929,
+ 108,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8424
+ },
+ {
+ "id": 1169,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 70,
+ 1203,
+ 119,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 19040
+ },
+ {
+ "id": 1170,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 18,
+ 1240,
+ 100,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7800
+ },
+ {
+ "id": 1171,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 745,
+ 1240,
+ 182,
+ 78
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14196
+ },
+ {
+ "id": 1172,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 830,
+ 1277,
+ 85,
+ 152
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12920
+ },
+ {
+ "id": 1173,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1363,
+ 2585,
+ 70,
+ 149
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10430
+ },
+ {
+ "id": 1174,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1955,
+ 2559,
+ 55,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 6930
+ },
+ {
+ "id": 1175,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1918,
+ 2563,
+ 55,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 5500
+ },
+ {
+ "id": 1176,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1296,
+ 2659,
+ 119,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15470
+ },
+ {
+ "id": 1177,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 659,
+ 1695,
+ 134,
+ 163
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21842
+ },
+ {
+ "id": 1178,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 469,
+ 1579,
+ 93,
+ 234
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 21762
+ },
+ {
+ "id": 1179,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 484,
+ 1758,
+ 48,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9072
+ },
+ {
+ "id": 1180,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 961,
+ 1251,
+ 208,
+ 111
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23088
+ },
+ {
+ "id": 1181,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 875,
+ 908,
+ 186,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25482
+ },
+ {
+ "id": 1182,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 625,
+ 1031,
+ 197,
+ 59
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11623
+ },
+ {
+ "id": 1183,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 800,
+ 1445,
+ 37,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 7141
+ },
+ {
+ "id": 1184,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 800,
+ 1665,
+ 156,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22620
+ },
+ {
+ "id": 1185,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 756,
+ 897,
+ 96,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 12096
+ },
+ {
+ "id": 1186,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 868,
+ 1043,
+ 96,
+ 193
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18528
+ },
+ {
+ "id": 1187,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 931,
+ 1244,
+ 59,
+ 230
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 13570
+ },
+ {
+ "id": 1188,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 152,
+ 849,
+ 163,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11410
+ },
+ {
+ "id": 1189,
+ "image_id": 15,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1091,
+ 2037,
+ 70,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14280
+ },
+ {
+ "id": 1190,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1087,
+ 1362,
+ 134,
+ 178
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23852
+ },
+ {
+ "id": 1191,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1415,
+ 1303,
+ 59,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10974
+ },
+ {
+ "id": 1192,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1486,
+ 1500,
+ 152,
+ 145
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22040
+ },
+ {
+ "id": 1193,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1933,
+ 1415,
+ 182,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17472
+ },
+ {
+ "id": 1194,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2000,
+ 1202,
+ 175,
+ 100
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17500
+ },
+ {
+ "id": 1195,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 2536,
+ 1072,
+ 100,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18600
+ },
+ {
+ "id": 1196,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1922,
+ 949,
+ 78,
+ 204
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15912
+ },
+ {
+ "id": 1197,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1586,
+ 1109,
+ 119,
+ 96
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11424
+ },
+ {
+ "id": 1198,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1922,
+ 2010,
+ 186,
+ 137
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 25482
+ },
+ {
+ "id": 1199,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1650,
+ 2223,
+ 171,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 14535
+ },
+ {
+ "id": 1200,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1110,
+ 2152,
+ 96,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17472
+ },
+ {
+ "id": 1201,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 789,
+ 2081,
+ 141,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18330
+ },
+ {
+ "id": 1202,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 886,
+ 1981,
+ 81,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11988
+ },
+ {
+ "id": 1203,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 994,
+ 1735,
+ 70,
+ 134
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 9380
+ },
+ {
+ "id": 1204,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 935,
+ 1649,
+ 197,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20488
+ },
+ {
+ "id": 1205,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 461,
+ 1586,
+ 242,
+ 44
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10648
+ },
+ {
+ "id": 1206,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 521,
+ 1742,
+ 59,
+ 189
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11151
+ },
+ {
+ "id": 1207,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 555,
+ 1969,
+ 130,
+ 182
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23660
+ },
+ {
+ "id": 1208,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 74,
+ 1914,
+ 149,
+ 167
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 24883
+ },
+ {
+ "id": 1209,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 454,
+ 2420,
+ 242,
+ 130
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 31460
+ },
+ {
+ "id": 1210,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1028,
+ 2703,
+ 134,
+ 85
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11390
+ },
+ {
+ "id": 1211,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 983,
+ 610,
+ 189,
+ 119
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22491
+ },
+ {
+ "id": 1212,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1326,
+ 793,
+ 160,
+ 126
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 20160
+ },
+ {
+ "id": 1213,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1400,
+ 644,
+ 230,
+ 104
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23920
+ },
+ {
+ "id": 1214,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1847,
+ 376,
+ 59,
+ 148
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 8732
+ },
+ {
+ "id": 1215,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1788,
+ 592,
+ 208,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 38688
+ },
+ {
+ "id": 1216,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 1564,
+ 837,
+ 145,
+ 81
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 11745
+ },
+ {
+ "id": 1217,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 804,
+ 994,
+ 141,
+ 160
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 22560
+ },
+ {
+ "id": 1218,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 122,
+ 1217,
+ 201,
+ 89
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17889
+ },
+ {
+ "id": 1219,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 339,
+ 927,
+ 67,
+ 264
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 17688
+ },
+ {
+ "id": 1220,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 290,
+ 856,
+ 74,
+ 208
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 15392
+ },
+ {
+ "id": 1221,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 718,
+ 722,
+ 55,
+ 197
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 10835
+ },
+ {
+ "id": 1222,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 584,
+ 923,
+ 126,
+ 186
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 23436
+ },
+ {
+ "id": 1223,
+ "image_id": 16,
+ "category_id": 0,
+ "segmentation": [],
+ "bbox": [
+ 670,
+ 945,
+ 260,
+ 70
+ ],
+ "ignore": 0,
+ "iscrowd": 0,
+ "area": 18200
+ }
+ ],
+ "info": {
+ "year": 2021,
+ "version": "1.0",
+ "description": "",
+ "contributor": "Label Studio",
+ "url": "",
+ "date_created": "2021-12-01 09:43:34.990175"
+ }
+}
\ No newline at end of file
diff --git a/Images/Annotated/util/__pycache__/annotation.cpython-38.pyc b/Images/Annotated/util/__pycache__/annotation.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8da5749c0040cb466b4360180854ca7ab70e9e2e
Binary files /dev/null and b/Images/Annotated/util/__pycache__/annotation.cpython-38.pyc differ
diff --git a/Images/Annotated/util/__pycache__/sequence_resize.cpython-38.pyc b/Images/Annotated/util/__pycache__/sequence_resize.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a7b1d2d9f76d3724d6b01fe5505381868a35968f
Binary files /dev/null and b/Images/Annotated/util/__pycache__/sequence_resize.cpython-38.pyc differ
diff --git a/Images/Annotated/util/__pycache__/sequence_simple.cpython-38.pyc b/Images/Annotated/util/__pycache__/sequence_simple.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e7b37751edd087a8e40c654c3ff2837d0aab629f
Binary files /dev/null and b/Images/Annotated/util/__pycache__/sequence_simple.cpython-38.pyc differ
diff --git a/Images/Annotated/util/annotation.py b/Images/Annotated/util/annotation.py
new file mode 100644
index 0000000000000000000000000000000000000000..74e36f0e95790a35d308a1302ecdfcecdc69e17e
--- /dev/null
+++ b/Images/Annotated/util/annotation.py
@@ -0,0 +1,42 @@
+import imgaug as ia
+from imgaug import augmenters as iaa
+import numpy as np
+import xml.etree.ElementTree as ET
+import glob
+import shutil
+
+EMPTY_DIR = 'empty'
+
+
+def parse_xml(filename):
+ tree = ET.parse(filename)
+ elem = tree.getroot()
+ result = {
+ 'filename': elem.find('.//filename').text,
+ 'size': {
+ 'width': elem.find('.//size/width').text,
+ 'height': elem.find('.//size/height').text,
+ 'depth': elem.find('.//size/depth').text,
+ },
+ 'objects': []
+ }
+
+ for e in elem.findall('.//object'):
+ obj = {
+ 'name': e.find('.//name').text,
+ 'xmin': e.find('.//bndbox/xmin').text,
+ 'ymin': e.find('.//bndbox/ymin').text,
+ 'xmax': e.find('.//bndbox/xmax').text,
+ 'ymax': e.find('.//bndbox/ymax').text
+ }
+ result['objects'].append(obj)
+
+ return result
+
+
+def inspect(filename):
+ annotation = parse_xml(filename)
+
+ if len(annotation['objects']) == 0:
+ print('Empty annotation file %s is moved.' % filename)
+ shutil.move(filename, EMPTY_DIR)
diff --git a/Images/Annotated/util/sequence.py b/Images/Annotated/util/sequence.py
new file mode 100644
index 0000000000000000000000000000000000000000..857e44019b0ae75cb17baf4930c471ef28db9c8f
--- /dev/null
+++ b/Images/Annotated/util/sequence.py
@@ -0,0 +1,98 @@
+import imgaug as ia
+from imgaug import augmenters as iaa
+
+
+def get():
+ def sometimes(aug): return iaa.Sometimes(0.5, aug)
+
+ return iaa.Sequential(
+ [
+ # apply the following augmenters to most images
+ iaa.Fliplr(0.5), # horizontally flip 50% of all images
+ iaa.Flipud(0.2), # vertically flip 20% of all images
+ # crop images by -5% to 10% of their height/width
+ sometimes(iaa.CropAndPad(
+ percent=(-0.05, 0.1),
+ pad_mode=ia.ALL,
+ pad_cval=(0, 255)
+ )),
+ sometimes(iaa.Affine(
+ # scale images to 80-120% of their size, individually per axis
+ scale={'x': (0.8, 1.2), 'y': (0.8, 1.2)},
+ # translate by -20 to +20 percent (per axis)
+ translate_percent={'x': (-0.2, 0.2), 'y': (-0.2, 0.2)},
+ rotate=(-45, 45), # rotate by -45 to +45 degrees
+ shear=(-16, 16), # shear by -16 to +16 degrees
+ # use nearest neighbour or bilinear interpolation (fast)
+ order=[0, 1],
+ # if mode is constant, use a cval between 0 and 255
+ cval=(0, 255),
+ # use any of scikit-image's warping modes (see 2nd image from the top for examples)
+ mode=ia.ALL
+ )),
+ # execute 0 to 5 of the following (less important) augmenters per image
+ # don't execute all of them, as that would often be way too strong
+ iaa.SomeOf((0, 5),
+ [
+ # convert images into their superpixel representation
+ sometimes(iaa.Superpixels(
+ p_replace=(0, 1.0), n_segments=(20, 200))),
+ iaa.OneOf([
+ # blur images with a sigma between 0 and 3.0
+ iaa.GaussianBlur((0, 3.0)),
+ # blur image using local means with kernel sizes between 2 and 7
+ iaa.AverageBlur(k=(2, 7)),
+ # blur image using local medians with kernel sizes between 2 and 7
+ iaa.MedianBlur(k=(3, 11)),
+ ]),
+ iaa.Sharpen(alpha=(0, 1.0), lightness=(
+ 0.75, 1.5)), # sharpen images
+ iaa.Emboss(alpha=(0, 1.0), strength=(
+ 0, 2.0)), # emboss images
+ # search either for all edges or for directed edges,
+ # blend the result with the original image using a blobby mask
+ iaa.SimplexNoiseAlpha(iaa.OneOf([
+ iaa.EdgeDetect(alpha=(0.5, 1.0)),
+ iaa.DirectedEdgeDetect(
+ alpha=(0.5, 1.0), direction=(0.0, 1.0)),
+ ])),
+ # add gaussian noise to images
+ iaa.AdditiveGaussianNoise(loc=0, scale=(
+ 0.0, 0.05*255), per_channel=0.5),
+ iaa.OneOf([
+ # randomly remove up to 10% of the pixels
+ iaa.Dropout((0.01, 0.1), per_channel=0.5),
+ iaa.CoarseDropout((0.03, 0.15), size_percent=(
+ 0.02, 0.05), per_channel=0.2),
+ ]),
+ # invert color channels
+ iaa.Invert(0.05, per_channel=True),
+ # change brightness of images (by -10 to 10 of original value)
+ iaa.Add((-10, 10), per_channel=0.5),
+ # change hue and saturation
+ iaa.AddToHueAndSaturation((-20, 20)),
+ # either change the brightness of the whole image (sometimes
+ # per channel) or change the brightness of subareas
+ iaa.OneOf([
+ iaa.Multiply((0.5, 1.5), per_channel=0.5),
+ iaa.FrequencyNoiseAlpha(
+ exponent=(-4, 0),
+ first=iaa.Multiply((0.5, 1.5), per_channel=True),
+ second=iaa.ContrastNormalization((0.5, 2.0))
+ )
+ ]),
+ # improve or worsen the contrast
+ iaa.ContrastNormalization((0.5, 2.0), per_channel=0.5),
+ iaa.Grayscale(alpha=(0.0, 1.0)),
+ # move pixels locally around (with random strengths)
+ sometimes(iaa.ElasticTransformation(
+ alpha=(0.5, 3.5), sigma=0.25)),
+ # sometimes move parts of the image around
+ sometimes(iaa.PiecewiseAffine(scale=(0.01, 0.05))),
+ sometimes(iaa.PerspectiveTransform(scale=(0.01, 0.1)))
+ ],
+ random_order=True
+ )
+ ],
+ random_order=False
+ )
diff --git a/Images/Annotated/util/sequence_resize.py b/Images/Annotated/util/sequence_resize.py
new file mode 100644
index 0000000000000000000000000000000000000000..46ebd8d501c4a43587d6807b54e140ee2bfaf46f
--- /dev/null
+++ b/Images/Annotated/util/sequence_resize.py
@@ -0,0 +1,33 @@
+import imgaug as ia
+from imgaug import augmenters as iaa
+
+
+def get():
+ def sometimes(aug): return iaa.Sometimes(0.5, aug)
+
+ return iaa.Sequential(
+ [
+ iaa.PadToSquare(position='center'),
+ # iaa.Fliplr(0.5), # horizontal flips
+
+ # sometimes(iaa.Multiply((0.8, 1.2), per_channel=0.2),),
+ # sometimes(iaa.Add((-10, 10), per_channel=0.5)), # change brightness of images (by -10 to 10 of original value)
+ # sometimes(iaa.AddToHueAndSaturation((-20, 20))), # change hue and saturation
+
+ sometimes(iaa.AddToBrightness((-30, 30))),
+ sometimes(iaa.LinearContrast((0.75, 1.5))), # Strengthen or weaken the contrast in each image.
+
+ sometimes(iaa.CropAndPad(
+ percent=(-0.05, 0.1),
+ pad_mode=ia.ALL,
+ pad_cval=(0, 255)
+ )),
+ sometimes(iaa.Affine(
+ scale={"x": (0.8, 1.2), "y": (0.8, 1.2)},
+ translate_percent={"x": (-0.2, 0.2), "y": (-0.2, 0.2)},
+ rotate=(-15, 15)
+ )),
+ iaa.Resize({"height": 1024, "width": 1024})
+ ],
+ random_order=False
+ )
diff --git a/Images/Annotated/util/sequence_simple.py b/Images/Annotated/util/sequence_simple.py
new file mode 100644
index 0000000000000000000000000000000000000000..61741eec038c719b059b4b943716a13f9e963546
--- /dev/null
+++ b/Images/Annotated/util/sequence_simple.py
@@ -0,0 +1,46 @@
+import imgaug as ia
+from imgaug import augmenters as iaa
+
+
+def get():
+ def sometimes(aug): return iaa.Sometimes(0.5, aug)
+
+ return iaa.Sequential(
+ [
+ iaa.CropAndPad(
+ percent=(-0.1, 0.1),
+ pad_mode=ia.ALL,
+ pad_cval=(0, 255),
+ ),
+ iaa.Fliplr(0.5), # horizontal flips
+ iaa.Crop(percent=(0, 0.1)), # random crops
+ # Small gaussian blur with random sigma between 0 and 0.5.
+ # But we only blur about 50% of all images.
+ iaa.Sometimes(
+ 0.5,
+ iaa.GaussianBlur(sigma=(0, 0.5))
+ ),
+ # Strengthen or weaken the contrast in each image.
+ iaa.LinearContrast((0.75, 1.5)),
+ # Add gaussian noise.
+ # For 50% of all images, we sample the noise once per pixel.
+ # For the other 50% of all images, we sample the noise per pixel AND
+ # channel. This can change the color (not only brightness) of the
+ # pixels.
+ # iaa.AdditiveGaussianNoise(loc=0, scale=(
+ # 0.0, 0.05*255), per_channel=0.5),
+ # Make some images brighter and some darker.
+ # In 20% of all cases, we sample the multiplier once per channel,
+ # which can end up changing the color of the images.
+ # iaa.Multiply((0.8, 1.2), per_channel=0.2),
+ # Apply affine transformations to each image.
+ # Scale/zoom them, translate/move them, rotate them and shear them.
+ iaa.Affine(
+ scale={"x": (0.8, 1.2), "y": (0.8, 1.2)},
+ translate_percent={"x": (-0.2, 0.2), "y": (-0.2, 0.2)},
+ rotate=(-25, 25),
+ shear=(-8, 8)
+ )
+ ],
+ random_order=False
+ )
diff --git a/Images/Not_Annotated/test/IMG_20191210_162102.jpg b/Images/Not_Annotated/test/IMG_20191210_162102.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..42809e4cb367a6e6cbcc60dae4989203a9097c3d
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_162102.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_162238.jpg b/Images/Not_Annotated/test/IMG_20191210_162238.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..598f6d5f007cb4b0f187f06f374a4a3601b72ca8
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_162238.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_162402.jpg b/Images/Not_Annotated/test/IMG_20191210_162402.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a120ddabbd4bf22dd12452d58d97b6186ca500f7
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_162402.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_162520.jpg b/Images/Not_Annotated/test/IMG_20191210_162520.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9bb9e22b4ae58707b3855fa9a56fb2e5a8b3be02
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_162520.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_163333.jpg b/Images/Not_Annotated/test/IMG_20191210_163333.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2ffc1722ae485225885c1244db23c6ff12c74532
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_163333.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_163454.jpg b/Images/Not_Annotated/test/IMG_20191210_163454.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7045bb9e1c328a9ac33bfe174cb797b936f8c20a
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_163454.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_163551.jpg b/Images/Not_Annotated/test/IMG_20191210_163551.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b4c060b4e694f523b375344dd68c8c73a777caed
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_163551.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_163647.jpg b/Images/Not_Annotated/test/IMG_20191210_163647.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6c5642259b9ccffd8e9ab32613043186e29361e3
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_163647.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_165137.jpg b/Images/Not_Annotated/test/IMG_20191210_165137.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f11670b34b3290ce531c779b3ebd918e237a2ee1
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_165137.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_165231.jpg b/Images/Not_Annotated/test/IMG_20191210_165231.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f67de1e5f75995a225a52cf5214f60439731ad4a
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_165231.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_165339.jpg b/Images/Not_Annotated/test/IMG_20191210_165339.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..17c5d2d3e5aea8ca7bb8c160528cefcb36fa5dbd
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_165339.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_165434.jpg b/Images/Not_Annotated/test/IMG_20191210_165434.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..66b7e880e28fdb199f5252c9980fcbe95cc088fa
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_165434.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191210_165603.jpg b/Images/Not_Annotated/test/IMG_20191210_165603.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..57db2d571d03b8bab1ca5afdd27ced819f83ecdf
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191210_165603.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191212_150315.jpg b/Images/Not_Annotated/test/IMG_20191212_150315.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..92870c173b089e7a2e66cbdf0f6f208dc5149c41
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191212_150315.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191212_150409.jpg b/Images/Not_Annotated/test/IMG_20191212_150409.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f64c2f3d5eeb242c59b3437f072960ba3f667836
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191212_150409.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191212_150539.jpg b/Images/Not_Annotated/test/IMG_20191212_150539.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cabac3971323b4ba9d5cd421b6884d92ec8242f0
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191212_150539.jpg differ
diff --git a/Images/Not_Annotated/test/IMG_20191212_150630.jpg b/Images/Not_Annotated/test/IMG_20191212_150630.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e2476dbff7ff640bdc2910f5cef3d4a387a6d3b6
Binary files /dev/null and b/Images/Not_Annotated/test/IMG_20191212_150630.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_164256.jpg b/Images/Not_Annotated/train/IMG_20191203_164256.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c378eb6b9596b19cdcb058aa2f51962c9969db8c
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_164256.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_164408.jpg b/Images/Not_Annotated/train/IMG_20191203_164408.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5a810853695c2002d4301682c880f01d9eb367b9
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_164408.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_164625.jpg b/Images/Not_Annotated/train/IMG_20191203_164625.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..64c1f2231baa1fefc2178ecd07ce2cad491095fe
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_164625.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_164910.jpg b/Images/Not_Annotated/train/IMG_20191203_164910.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..838410180898fda5e7b668abe07b9a6827240123
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_164910.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_165024.jpg b/Images/Not_Annotated/train/IMG_20191203_165024.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e0aaa3e4fb3e4ee5d0c115a11a08a8d8db328e46
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_165024.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_165143.jpg b/Images/Not_Annotated/train/IMG_20191203_165143.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e86c77b21282393891b43664fc1f3e7792d35770
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_165143.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_165310.jpg b/Images/Not_Annotated/train/IMG_20191203_165310.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4815fb76d33f3e7306691e3ac06bfe5a8d3427dd
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_165310.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_165409.jpg b/Images/Not_Annotated/train/IMG_20191203_165409.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5a23744894cbbd21fd48aaf3976894f02840fd5d
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_165409.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_165515.jpg b/Images/Not_Annotated/train/IMG_20191203_165515.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0968be65616415632939d52164e7bff9d9a008af
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_165515.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171231.jpg b/Images/Not_Annotated/train/IMG_20191203_171231.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6654b99a6ba4c18a1491623fda3dc28415faae20
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171231.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171345.jpg b/Images/Not_Annotated/train/IMG_20191203_171345.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..87a4a3e73958368e81660f9d71de4b0f2fe2f3e5
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171345.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171516.jpg b/Images/Not_Annotated/train/IMG_20191203_171516.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f68d773e76ab90bd8cd2de7f492d254800c1c729
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171516.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171617.jpg b/Images/Not_Annotated/train/IMG_20191203_171617.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..23e130978fbc5cc3931d731999c2ba2d8944f2be
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171617.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171749.jpg b/Images/Not_Annotated/train/IMG_20191203_171749.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..766f8a6acef90c26aa9a5e0d614b5099946d59b2
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171749.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_171840.jpg b/Images/Not_Annotated/train/IMG_20191203_171840.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..32e7cde6eb7698d4159e644bf890b788260c52b7
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_171840.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_172042.jpg b/Images/Not_Annotated/train/IMG_20191203_172042.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5bd968fa4f26894f6770988d40e5493612c462f6
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_172042.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_172138.jpg b/Images/Not_Annotated/train/IMG_20191203_172138.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b65f924588b5f0911f7d994043ed5b790fda6ee1
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_172138.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191203_172249.jpg b/Images/Not_Annotated/train/IMG_20191203_172249.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ac8cbb64cc0840579aa8c2f49a466b583d6768ea
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191203_172249.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_172915.jpg b/Images/Not_Annotated/train/IMG_20191205_172915.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0d57361b1fd3867fbf2b5de74df4eb31ad40dcd2
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_172915.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_173149.jpg b/Images/Not_Annotated/train/IMG_20191205_173149.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..86355269e256f3901c74ee8aa5f5b1a7eb1c0abe
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_173149.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_173305.jpg b/Images/Not_Annotated/train/IMG_20191205_173305.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a2e5651dbfab87ee60a302972bbc1b0579e6673d
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_173305.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_173411.jpg b/Images/Not_Annotated/train/IMG_20191205_173411.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8f31315638c6839a63be80b25699df922ee00be7
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_173411.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_174506.jpg b/Images/Not_Annotated/train/IMG_20191205_174506.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0457a133751c820858228ad1c8b46376914a814b
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_174506.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_174527.jpg b/Images/Not_Annotated/train/IMG_20191205_174527.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..68107c2f57c9029c70a5ca7d55abc4ad8ab37ed7
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_174527.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_174546.jpg b/Images/Not_Annotated/train/IMG_20191205_174546.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a7f76e76d7aebe57f35e0fcdb4e88ada8c88b07a
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_174546.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_174602.jpg b/Images/Not_Annotated/train/IMG_20191205_174602.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..917fc1887d8c267aad0acd0a9415b7412eb90226
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_174602.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_174618.jpg b/Images/Not_Annotated/train/IMG_20191205_174618.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2a58eadd147ab075c88042335198cbd832b35781
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_174618.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_175329.jpg b/Images/Not_Annotated/train/IMG_20191205_175329.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..63f74e3d605ca260ce354deee7ad984c54119fb4
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_175329.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_175406.jpg b/Images/Not_Annotated/train/IMG_20191205_175406.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6e278e93450601922711d12a79ba5228f9bcdc46
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_175406.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_175443.jpg b/Images/Not_Annotated/train/IMG_20191205_175443.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a58207f62cd0138865dd0d18cc8edd3ce46f622a
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_175443.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_175543.jpg b/Images/Not_Annotated/train/IMG_20191205_175543.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..65681114257725317bfd9944c160f45f329e6b58
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_175543.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_180120.jpg b/Images/Not_Annotated/train/IMG_20191205_180120.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..29566bb36776d42b830594a94f6a42b6881d0dab
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_180120.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_180229.jpg b/Images/Not_Annotated/train/IMG_20191205_180229.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e2e2b1317f5612af836305edb714374b06d53ad1
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_180229.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_180511.jpg b/Images/Not_Annotated/train/IMG_20191205_180511.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..00e5843974676da1da964c61aab299d1bff797ce
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_180511.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_180601.jpg b/Images/Not_Annotated/train/IMG_20191205_180601.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bdcb41212521618c8155acbbd89c586e4161f3a1
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_180601.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191205_180745.jpg b/Images/Not_Annotated/train/IMG_20191205_180745.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0366d8ee7096331d823ff36a4df42d330f77aaf1
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191205_180745.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_170743.jpg b/Images/Not_Annotated/train/IMG_20191206_170743.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..907eef1f4aca4d3e2b95b586bd5170e40a970939
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_170743.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_170832.jpg b/Images/Not_Annotated/train/IMG_20191206_170832.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8fb3a8f84dd4b78fe5b8f2c8cd2626776696e55f
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_170832.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_170859.jpg b/Images/Not_Annotated/train/IMG_20191206_170859.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b991a6979384dc9f7e93be1969d3f7afaf6764cd
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_170859.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_171000.jpg b/Images/Not_Annotated/train/IMG_20191206_171000.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9a809f003ee5720a530213c248339478ab3adb5b
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_171000.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_171524.jpg b/Images/Not_Annotated/train/IMG_20191206_171524.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..81314ff707c096c9ce6f16eaee52130354c08c88
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_171524.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_171557.jpg b/Images/Not_Annotated/train/IMG_20191206_171557.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..42ca6bd70fa33e828632fdbabc8edf420d3ebd31
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_171557.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_171815.jpg b/Images/Not_Annotated/train/IMG_20191206_171815.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0ef1fc419173f414671b6255469d0f1ace4658e3
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_171815.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_171943.jpg b/Images/Not_Annotated/train/IMG_20191206_171943.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b596bd330c28e58458c4ee5e64375df77e535a57
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_171943.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_172951.jpg b/Images/Not_Annotated/train/IMG_20191206_172951.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7ec90c86596909aa7409651957ee986d5aea647a
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_172951.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_173037.jpg b/Images/Not_Annotated/train/IMG_20191206_173037.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fab22bf65d49bc11bbd8db7444a08590c01ebc95
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_173037.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_173158.jpg b/Images/Not_Annotated/train/IMG_20191206_173158.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..663d3a9ed02705fda367d774c7cf0802b42ca789
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_173158.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_173255.jpg b/Images/Not_Annotated/train/IMG_20191206_173255.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..66f8e10cc86e3c17e09182f4eaa1b7b4a51b8548
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_173255.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_174008.jpg b/Images/Not_Annotated/train/IMG_20191206_174008.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9caa1ae9e0a13d2d344d2cb0e89c67df419f2d45
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_174008.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_174042.jpg b/Images/Not_Annotated/train/IMG_20191206_174042.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c66e3ee7199c49e5f3250b70d447505956d69922
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_174042.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_174127.jpg b/Images/Not_Annotated/train/IMG_20191206_174127.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..df388ed59e757286223666bb899a02d8eaf0056d
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_174127.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_174207.jpg b/Images/Not_Annotated/train/IMG_20191206_174207.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..705cbffe627b2e595cd13ddb5187ebfec383693b
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_174207.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191206_174256.jpg b/Images/Not_Annotated/train/IMG_20191206_174256.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7ee4d1559835618fed41b2e97041b0591a6730ed
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191206_174256.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_164318.jpg b/Images/Not_Annotated/train/IMG_20191209_164318.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a57ab09841fb9bee7609ec3464bc65d850dd1cf1
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_164318.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_164515.jpg b/Images/Not_Annotated/train/IMG_20191209_164515.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6512454a01054a5bd32dfab78f119f67d90b670d
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_164515.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_164632.jpg b/Images/Not_Annotated/train/IMG_20191209_164632.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2483efb911a4cb99c6ce5de21c8eded0a2fc3ca3
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_164632.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_164723.jpg b/Images/Not_Annotated/train/IMG_20191209_164723.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f4697e1128d0edb920686c1b83155d830d052a1e
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_164723.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_165653.jpg b/Images/Not_Annotated/train/IMG_20191209_165653.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b4f428f10533c0ee8d11ecf6cfdd608b0502423b
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_165653.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_165750.jpg b/Images/Not_Annotated/train/IMG_20191209_165750.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c6db2d181fa171c22eeb3913d14838909d6e1d67
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_165750.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_165850.jpg b/Images/Not_Annotated/train/IMG_20191209_165850.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..318c47ef1303062844b65fba5ebdad27cf25b4fd
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_165850.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_165931.jpg b/Images/Not_Annotated/train/IMG_20191209_165931.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..47289442df87016817ec7963d799141eaee01cca
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_165931.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_170028.jpg b/Images/Not_Annotated/train/IMG_20191209_170028.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4d7d955c1a7f0eb9ca22740bbaeca16420762fb3
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_170028.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_171153.jpg b/Images/Not_Annotated/train/IMG_20191209_171153.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..de40474eb77024cc370823de5241707a7779df9f
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_171153.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_171232.jpg b/Images/Not_Annotated/train/IMG_20191209_171232.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fa4a5bdba9821a0a9d510eb9eedcd13a31c466f9
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_171232.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_171321.jpg b/Images/Not_Annotated/train/IMG_20191209_171321.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..429100e00c1222b500359698c7bb5fca807e0b4c
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_171321.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_171405.jpg b/Images/Not_Annotated/train/IMG_20191209_171405.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5bf394692faf0145970561efaa795234cc95be26
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_171405.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_172133.jpg b/Images/Not_Annotated/train/IMG_20191209_172133.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..777e840ada877da3760cb993925444b9f062d50b
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_172133.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_172226.jpg b/Images/Not_Annotated/train/IMG_20191209_172226.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7d6259ea0e53c02f0defcfb980d2bb2699521f8f
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_172226.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_172401.jpg b/Images/Not_Annotated/train/IMG_20191209_172401.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..eb1bcf2ac61437456570f4801eef6bef1f691e44
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_172401.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_172453.jpg b/Images/Not_Annotated/train/IMG_20191209_172453.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2550bff60aa8ba94323d3922c77d2690556e5c5d
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_172453.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191209_172616.jpg b/Images/Not_Annotated/train/IMG_20191209_172616.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7d0fafb14ef0e6f1ecd367fe7c0d28bbd656136c
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191209_172616.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191210_160740.jpg b/Images/Not_Annotated/train/IMG_20191210_160740.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ddaa2531040f18e6201ada45cd4f617ad7921009
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191210_160740.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191210_160822.jpg b/Images/Not_Annotated/train/IMG_20191210_160822.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..19241229eb755713b78da0ae3cb578c4a00810c6
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191210_160822.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191210_160855.jpg b/Images/Not_Annotated/train/IMG_20191210_160855.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..febd680c4d948b6c7c01a2e2a2f28af3891cabf6
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191210_160855.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191210_160948.jpg b/Images/Not_Annotated/train/IMG_20191210_160948.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a1d84fe63ace65b66f9c82c5a399547feabacc01
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191210_160948.jpg differ
diff --git a/Images/Not_Annotated/train/IMG_20191210_161946.jpg b/Images/Not_Annotated/train/IMG_20191210_161946.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e26e91afb6734ac1b4cdbb47acda879e17a22ff3
Binary files /dev/null and b/Images/Not_Annotated/train/IMG_20191210_161946.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_151351.jpg b/Images/Not_Annotated/valid/IMG_20191212_151351.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f53d74642d7fe1454628d1f66a0bd7d9b41718a9
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_151351.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_151438.jpg b/Images/Not_Annotated/valid/IMG_20191212_151438.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8bb1e9d477c98936d78d786a18594a730816c7a9
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_151438.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_151559.jpg b/Images/Not_Annotated/valid/IMG_20191212_151559.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1714587858546a330b2f2c18cf4bd1bae10069e7
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_151559.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_151714.jpg b/Images/Not_Annotated/valid/IMG_20191212_151714.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fc69068c1b59595bb1f3c87e83c6d7aab4bec054
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_151714.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_151844.jpg b/Images/Not_Annotated/valid/IMG_20191212_151844.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1c1ba5d209117d893f6afa16a9116ca90b275957
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_151844.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_153339.jpg b/Images/Not_Annotated/valid/IMG_20191212_153339.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..855c5de6618c7b8196efafb9380d14eb5eeb2863
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_153339.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_153420.jpg b/Images/Not_Annotated/valid/IMG_20191212_153420.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2f96392c0a535e65338b8da60ba5cdc9666b23a9
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_153420.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_153457.jpg b/Images/Not_Annotated/valid/IMG_20191212_153457.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..165b2b95fd3009d6130ae7626bda7b400217d893
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_153457.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_153614.jpg b/Images/Not_Annotated/valid/IMG_20191212_153614.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d4c5cde3bc2c3cdaf0f4b01a8e97aea967c9fd7d
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_153614.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_154100.jpg b/Images/Not_Annotated/valid/IMG_20191212_154100.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6533d2528b7cdbbd2fe641930373a950e2b58d7a
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_154100.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_154209.jpg b/Images/Not_Annotated/valid/IMG_20191212_154209.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cc8f4ed3a11768f65d9e6e135ee3efc71d71f90f
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_154209.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_154330.jpg b/Images/Not_Annotated/valid/IMG_20191212_154330.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bae503fcef82c2e67c4ebd61acbd3a22ba123e2f
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_154330.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_154452.jpg b/Images/Not_Annotated/valid/IMG_20191212_154452.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..061de246390747d6a8e34cc9c0cc3a3686850e5e
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_154452.jpg differ
diff --git a/Images/Not_Annotated/valid/IMG_20191212_154600.jpg b/Images/Not_Annotated/valid/IMG_20191212_154600.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..429fd962bd5142a353ab929bc18681d3dafff4fe
Binary files /dev/null and b/Images/Not_Annotated/valid/IMG_20191212_154600.jpg differ
diff --git a/sample_images/IMG_20191212_151351.jpg b/sample_images/IMG_20191212_151351.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f53d74642d7fe1454628d1f66a0bd7d9b41718a9
Binary files /dev/null and b/sample_images/IMG_20191212_151351.jpg differ
diff --git a/sample_images/IMG_20191212_151438.jpg b/sample_images/IMG_20191212_151438.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8bb1e9d477c98936d78d786a18594a730816c7a9
Binary files /dev/null and b/sample_images/IMG_20191212_151438.jpg differ
diff --git a/sample_images/IMG_20191212_151559.jpg b/sample_images/IMG_20191212_151559.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1714587858546a330b2f2c18cf4bd1bae10069e7
Binary files /dev/null and b/sample_images/IMG_20191212_151559.jpg differ
diff --git a/sample_images/IMG_20191212_151714.jpg b/sample_images/IMG_20191212_151714.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fc69068c1b59595bb1f3c87e83c6d7aab4bec054
Binary files /dev/null and b/sample_images/IMG_20191212_151714.jpg differ
diff --git a/sample_images/IMG_20191212_151844.jpg b/sample_images/IMG_20191212_151844.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1c1ba5d209117d893f6afa16a9116ca90b275957
Binary files /dev/null and b/sample_images/IMG_20191212_151844.jpg differ
diff --git a/sample_images/IMG_20191212_153339.jpg b/sample_images/IMG_20191212_153339.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..855c5de6618c7b8196efafb9380d14eb5eeb2863
Binary files /dev/null and b/sample_images/IMG_20191212_153339.jpg differ
diff --git a/sample_images/IMG_20191212_153420.jpg b/sample_images/IMG_20191212_153420.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2f96392c0a535e65338b8da60ba5cdc9666b23a9
Binary files /dev/null and b/sample_images/IMG_20191212_153420.jpg differ
diff --git a/sample_images/IMG_20191212_153457.jpg b/sample_images/IMG_20191212_153457.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..165b2b95fd3009d6130ae7626bda7b400217d893
Binary files /dev/null and b/sample_images/IMG_20191212_153457.jpg differ
diff --git a/sample_images/IMG_20191212_153614.jpg b/sample_images/IMG_20191212_153614.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d4c5cde3bc2c3cdaf0f4b01a8e97aea967c9fd7d
Binary files /dev/null and b/sample_images/IMG_20191212_153614.jpg differ
diff --git a/sample_images/IMG_20191212_154100.jpg b/sample_images/IMG_20191212_154100.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6533d2528b7cdbbd2fe641930373a950e2b58d7a
Binary files /dev/null and b/sample_images/IMG_20191212_154100.jpg differ
diff --git a/sample_images/IMG_20191212_154209.jpg b/sample_images/IMG_20191212_154209.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cc8f4ed3a11768f65d9e6e135ee3efc71d71f90f
Binary files /dev/null and b/sample_images/IMG_20191212_154209.jpg differ
diff --git a/sample_images/IMG_20191212_154330.jpg b/sample_images/IMG_20191212_154330.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bae503fcef82c2e67c4ebd61acbd3a22ba123e2f
Binary files /dev/null and b/sample_images/IMG_20191212_154330.jpg differ
diff --git a/sample_images/IMG_20191212_154452.jpg b/sample_images/IMG_20191212_154452.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..061de246390747d6a8e34cc9c0cc3a3686850e5e
Binary files /dev/null and b/sample_images/IMG_20191212_154452.jpg differ
diff --git a/sample_images/IMG_20191212_154600.jpg b/sample_images/IMG_20191212_154600.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..429fd962bd5142a353ab929bc18681d3dafff4fe
Binary files /dev/null and b/sample_images/IMG_20191212_154600.jpg differ