diff --git a/Media1.mp4 b/Media1.mp4 new file mode 100644 index 000000000..8f6e5f775 Binary files /dev/null and b/Media1.mp4 differ diff --git a/README.md b/README.md index d06b7f498..716854521 100644 --- a/README.md +++ b/README.md @@ -1,56 +1,33 @@ -# YOLOv2 in Keras and Applications +# Helmet Detection using YOLOv2 in Keras -This repo contains the implementation of YOLOv2 in Keras with Tensorflow backend. It supports training YOLOv2 network with various backends such as MobileNet and InceptionV3. Links to demo applications are shown below. Check out https://experiencor.github.io/yolo_demo/demo.html for a Raccoon Detector demo run entirely in brower with DeepLearn.js and MobileNet backend (it somehow breaks in Window). Source code of this demo is located at https://git.io/vF7vG. +This repo contains the implementation of YOLOv2 in Keras with Tensorflow backend. It supports training YOLOv2 network with various backends such as MobileNet and InceptionV3. -## Todo list: -- [x] Warmup training -- [x] Raccoon detection, Self-driving car, and Kangaroo detection -- [x] SqueezeNet, MobileNet, InceptionV3, and ResNet50 backends -- [x] Support python 2.7 and 3.6 -- [ ] Multiple-GPU training -- [ ] Multiscale training -- [ ] mAP Evaluation -## Some example applications (click for videos): +## My application: -### Raccon detection -

+### Helmet detection +![Helmet and people wearing helmets](./helmet_detection.gif "Helmet Detection") -Dataset => https://github.com/experiencor/raccoon_dataset - -### Kangaroo detection -

- -Dataset => https://github.com/experiencor/kangaroo - -### Self-driving Car -

- -Dataset => http://cocodataset.org/#detections-challenge2017 - -### Red blod cell detection -

- -Dataset => https://github.com/cosmicad/dataset - -### Hand detection -

- -Dataset => http://cvrr.ucsd.edu/vivachallenge/index.php/hands/hand-detection/ ## Usage for python code ### 0. Requirement -python 2.7 +python 2.7 or 3.x keras >= 2.0.8 imgaug ### 1. Data preparation -Download the Raccoon dataset from from https://github.com/experiencor/raccoon_dataset. +#### Dataset Collection +The dataset containing images of people wearing helmets and people without helmets were collected mostly from google search. Some images have people applauding, those were collected from [Stanford 40 Action Dataset](http://vision.stanford.edu/Datasets/40actions.html). + +#### Annotations +Annotaion of each image was done in Pascal VOC format using the awesome lightweight annotation tool [LabelImg](https://github.com/tzutalin/labelImg) for object-detection + +#### Organizing the dataset Organize the dataset into 4 folders: + train_image_folder <= the folder that contains the train images. @@ -73,12 +50,12 @@ The configuration file is a json file, which looks like this: "input_size": 416, "anchors": [0.57273, 0.677385, 1.87446, 2.06253, 3.33843, 5.47434, 7.88282, 3.52778, 9.77052, 9.16828], "max_box_per_image": 10, - "labels": ["raccoon"] + "labels": ["helmet", "person with helmet", "person without helmet"] }, "train": { - "train_image_folder": "/home/andy/data/raccoon_dataset/images/", - "train_annot_folder": "/home/andy/data/raccoon_dataset/anns/", + "train_image_folder": "/train_image_folder/", + "train_annot_folder": "/train_annot_folder/", "train_times": 10, # the number of time to cycle through the training set, useful for small datasets "pretrained_weights": "", # specify the path of the pretrained weights, but it's fine to start from scratch @@ -109,15 +86,10 @@ The model section defines the type of the model to construct as well as other pa Download pretrained weights for backend (tiny yolo, full yolo, squeezenet, mobilenet, and inceptionV3) at: -https://1drv.ms/f/s!ApLdDEW3ut5fec2OzK4S4RpT-SU +https://drive.google.com/file/d/1gpOX-lfvyP70Pi2G77RIGzCBMHqO5Gic/view?usp=sharing **These weights must be put in the root folder of the repository. They are the pretrained weights for the backend only and will be loaded during model creation. The code does not work without these weights.** -The link to the pretrained weights for the whole model (both frontend and backend) of the raccoon detector can be downloaded at: - -https://1drv.ms/f/s!ApLdDEW3ut5feoZAEUwmSMYdPlY - -These weights can be used as the pretrained weights for any one class object detectors. ### 3. Generate anchors for your dataset (optional) diff --git a/config.json b/config.json index dfab8b380..f07b6a5dd 100644 --- a/config.json +++ b/config.json @@ -2,28 +2,28 @@ "model" : { "backend": "Full Yolo", "input_size": 416, - "anchors": [0.57273, 0.677385, 1.87446, 2.06253, 3.33843, 5.47434, 7.88282, 3.52778, 9.77052, 9.16828], + "anchors": [1.57,1.77, 2.80,8.62, 3.60,3.36, 5.51,10.50, 9.22,11.30], "max_box_per_image": 10, - "labels": ["kangaroo"] + "labels": ["helmet","person with helmet","person without helmet"] }, "train": { - "train_image_folder": "/home/andy/data/kangaroo/images/", - "train_annot_folder": "/home/andy/data/kangaroo/annots/", + "train_image_folder": "train_image_folder\\", + "train_annot_folder": "train_annot_folder\\", - "train_times": 8, - "pretrained_weights": "full_yolo_kangaroo3.h5", - "batch_size": 16, + "train_times": 10, + "pretrained_weights": "", + "batch_size": 2, "learning_rate": 1e-4, - "nb_epochs": 1, - "warmup_epochs": 3, + "nb_epochs": 50, + "warmup_epochs": 0, "object_scale": 5.0 , "no_object_scale": 1.0, "coord_scale": 1.0, "class_scale": 1.0, - "saved_weights_name": "full_yolo_kangaroo.h5", + "saved_weights_name": "full_yolo_helmet_and_person.h5", "debug": true }, diff --git a/helmet_detection.gif b/helmet_detection.gif new file mode 100644 index 000000000..20b03ef4b Binary files /dev/null and b/helmet_detection.gif differ diff --git a/requirements.txt b/requirements.txt index ebfe39a25..f74d80afd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ -tensorflow-gpu==1.3 +tensorflow-gpu==1.4 keras==2.0.8 imgaug opencv-python h5py +tqdm \ No newline at end of file diff --git a/train_annot_folder/applauding_001.xml b/train_annot_folder/applauding_001.xml new file mode 100644 index 000000000..33a2f9709 --- /dev/null +++ b/train_annot_folder/applauding_001.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_001.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_001.jpg + + Unknown + + + 300 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 30 + 57 + 250 + 322 + + + diff --git a/train_annot_folder/applauding_002.xml b/train_annot_folder/applauding_002.xml new file mode 100644 index 000000000..673fd8f67 --- /dev/null +++ b/train_annot_folder/applauding_002.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_002.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_002.jpg + + Unknown + + + 421 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 6 + 49 + 161 + 231 + + + + person without helmet + Unspecified + 0 + 0 + + 205 + 16 + 420 + 277 + + + diff --git a/train_annot_folder/applauding_003.xml b/train_annot_folder/applauding_003.xml new file mode 100644 index 000000000..ecebe2177 --- /dev/null +++ b/train_annot_folder/applauding_003.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_003.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_003.jpg + + Unknown + + + 466 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 271 + 86 + 435 + 292 + + + diff --git a/train_annot_folder/applauding_004.xml b/train_annot_folder/applauding_004.xml new file mode 100644 index 000000000..743d942f1 --- /dev/null +++ b/train_annot_folder/applauding_004.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_004.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_004.jpg + + Unknown + + + 300 + 417 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 66 + 19 + 246 + 417 + + + diff --git a/train_annot_folder/applauding_005.xml b/train_annot_folder/applauding_005.xml new file mode 100644 index 000000000..f3760393a --- /dev/null +++ b/train_annot_folder/applauding_005.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_005.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_005.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 91 + 60 + 224 + 451 + + + diff --git a/train_annot_folder/applauding_007.xml b/train_annot_folder/applauding_007.xml new file mode 100644 index 000000000..c14a52591 --- /dev/null +++ b/train_annot_folder/applauding_007.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_007.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_007.jpg + + Unknown + + + 410 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 159 + 15 + 396 + 302 + + + diff --git a/train_annot_folder/applauding_008.xml b/train_annot_folder/applauding_008.xml new file mode 100644 index 000000000..18bc33506 --- /dev/null +++ b/train_annot_folder/applauding_008.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_008.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_008.jpg + + Unknown + + + 450 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 211 + 28 + 314 + 232 + + + diff --git a/train_annot_folder/applauding_011.xml b/train_annot_folder/applauding_011.xml new file mode 100644 index 000000000..a778fa197 --- /dev/null +++ b/train_annot_folder/applauding_011.xml @@ -0,0 +1,62 @@ + + non_workers + applauding_011.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_011.jpg + + Unknown + + + 600 + 800 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 302 + 132 + 482 + 728 + + + + person without helmet + Unspecified + 0 + 0 + + 152 + 240 + 301 + 797 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 297 + 181 + 799 + + + + person without helmet + Unspecified + 0 + 0 + + 471 + 207 + 535 + 483 + + + diff --git a/train_annot_folder/applauding_012.xml b/train_annot_folder/applauding_012.xml new file mode 100644 index 000000000..23ec49251 --- /dev/null +++ b/train_annot_folder/applauding_012.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_012.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_012.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 27 + 26 + 213 + 299 + + + + person without helmet + Unspecified + 0 + 0 + + 219 + 19 + 335 + 298 + + + diff --git a/train_annot_folder/applauding_013.xml b/train_annot_folder/applauding_013.xml new file mode 100644 index 000000000..c099133f2 --- /dev/null +++ b/train_annot_folder/applauding_013.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_013.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_013.jpg + + Unknown + + + 300 + 436 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 2 + 4 + 149 + 436 + + + diff --git a/train_annot_folder/applauding_014.xml b/train_annot_folder/applauding_014.xml new file mode 100644 index 000000000..04f0fc668 --- /dev/null +++ b/train_annot_folder/applauding_014.xml @@ -0,0 +1,62 @@ + + non_workers + applauding_014.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_014.jpg + + Unknown + + + 449 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 8 + 58 + 123 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 114 + 33 + 239 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 228 + 57 + 322 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 324 + 52 + 440 + 299 + + + diff --git a/train_annot_folder/applauding_015.xml b/train_annot_folder/applauding_015.xml new file mode 100644 index 000000000..5339a1fe2 --- /dev/null +++ b/train_annot_folder/applauding_015.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_015.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_015.jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 83 + 18 + 238 + 200 + + + diff --git a/train_annot_folder/applauding_016.xml b/train_annot_folder/applauding_016.xml new file mode 100644 index 000000000..db8518054 --- /dev/null +++ b/train_annot_folder/applauding_016.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_016.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_016.jpg + + Unknown + + + 356 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 143 + 9 + 336 + 200 + + + diff --git a/train_annot_folder/applauding_017.xml b/train_annot_folder/applauding_017.xml new file mode 100644 index 000000000..080491487 --- /dev/null +++ b/train_annot_folder/applauding_017.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_017.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_017.jpg + + Unknown + + + 601 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 236 + 85 + 442 + 391 + + + + person without helmet + Unspecified + 0 + 0 + + 3 + 147 + 219 + 349 + + + diff --git a/train_annot_folder/applauding_018.xml b/train_annot_folder/applauding_018.xml new file mode 100644 index 000000000..fc55993b1 --- /dev/null +++ b/train_annot_folder/applauding_018.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_018.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_018.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 205 + 16 + 347 + 300 + + + diff --git a/train_annot_folder/applauding_019.xml b/train_annot_folder/applauding_019.xml new file mode 100644 index 000000000..31dd2a425 --- /dev/null +++ b/train_annot_folder/applauding_019.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_019.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_019.jpg + + Unknown + + + 599 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 50 + 42 + 292 + 400 + + + diff --git a/train_annot_folder/applauding_020.xml b/train_annot_folder/applauding_020.xml new file mode 100644 index 000000000..e9828674d --- /dev/null +++ b/train_annot_folder/applauding_020.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_020.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_020.jpg + + Unknown + + + 413 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 74 + 30 + 244 + 400 + + + diff --git a/train_annot_folder/applauding_021.xml b/train_annot_folder/applauding_021.xml new file mode 100644 index 000000000..4eeabbf66 --- /dev/null +++ b/train_annot_folder/applauding_021.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_021.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_021.jpg + + Unknown + + + 300 + 405 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 29 + 109 + 284 + 401 + + + diff --git a/train_annot_folder/applauding_022.xml b/train_annot_folder/applauding_022.xml new file mode 100644 index 000000000..4f96f604d --- /dev/null +++ b/train_annot_folder/applauding_022.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_022.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_022.jpg + + Unknown + + + 349 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 46 + 2 + 302 + 300 + + + diff --git a/train_annot_folder/applauding_023.xml b/train_annot_folder/applauding_023.xml new file mode 100644 index 000000000..8e01040bc --- /dev/null +++ b/train_annot_folder/applauding_023.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_023.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_023.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 107 + 194 + 300 + + + diff --git a/train_annot_folder/applauding_024.xml b/train_annot_folder/applauding_024.xml new file mode 100644 index 000000000..aafb159c2 --- /dev/null +++ b/train_annot_folder/applauding_024.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_024.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_024.jpg + + Unknown + + + 300 + 479 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 45 + 7 + 244 + 307 + + + diff --git a/train_annot_folder/applauding_025.xml b/train_annot_folder/applauding_025.xml new file mode 100644 index 000000000..5298ae1a9 --- /dev/null +++ b/train_annot_folder/applauding_025.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_025.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_025.jpg + + Unknown + + + 802 + 600 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 142 + 124 + 409 + 600 + + + + person without helmet + Unspecified + 1 + 0 + + 484 + 57 + 781 + 600 + + + diff --git a/train_annot_folder/applauding_026.xml b/train_annot_folder/applauding_026.xml new file mode 100644 index 000000000..ccd21025a --- /dev/null +++ b/train_annot_folder/applauding_026.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_026.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_026.jpg + + Unknown + + + 300 + 443 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 146 + 34 + 298 + 350 + + + diff --git a/train_annot_folder/applauding_028.xml b/train_annot_folder/applauding_028.xml new file mode 100644 index 000000000..2d9737a5f --- /dev/null +++ b/train_annot_folder/applauding_028.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_028.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_028.jpg + + Unknown + + + 300 + 410 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 43 + 48 + 294 + 398 + + + diff --git a/train_annot_folder/applauding_029.xml b/train_annot_folder/applauding_029.xml new file mode 100644 index 000000000..39fea93ac --- /dev/null +++ b/train_annot_folder/applauding_029.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_029.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_029.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 58 + 49 + 225 + 451 + + + diff --git a/train_annot_folder/applauding_030.xml b/train_annot_folder/applauding_030.xml new file mode 100644 index 000000000..f5bd42c18 --- /dev/null +++ b/train_annot_folder/applauding_030.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_030.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_030.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 27 + 37 + 173 + 300 + + + diff --git a/train_annot_folder/applauding_032.xml b/train_annot_folder/applauding_032.xml new file mode 100644 index 000000000..ea426800c --- /dev/null +++ b/train_annot_folder/applauding_032.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_032.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_032.jpg + + Unknown + + + 379 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 214 + 22 + 371 + 296 + + + diff --git a/train_annot_folder/applauding_035.xml b/train_annot_folder/applauding_035.xml new file mode 100644 index 000000000..515e2a24c --- /dev/null +++ b/train_annot_folder/applauding_035.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_035.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_035.jpg + + Unknown + + + 300 + 384 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 125 + 19 + 278 + 200 + + + diff --git a/train_annot_folder/applauding_036.xml b/train_annot_folder/applauding_036.xml new file mode 100644 index 000000000..fde500ff0 --- /dev/null +++ b/train_annot_folder/applauding_036.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_036.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_036.jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 39 + 15 + 177 + 294 + + + diff --git a/train_annot_folder/applauding_037.xml b/train_annot_folder/applauding_037.xml new file mode 100644 index 000000000..32356bade --- /dev/null +++ b/train_annot_folder/applauding_037.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_037.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_037.jpg + + Unknown + + + 300 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 207 + 33 + 295 + 375 + + + + person without helmet + Unspecified + 0 + 0 + + 127 + 130 + 177 + 246 + + + diff --git a/train_annot_folder/applauding_038.xml b/train_annot_folder/applauding_038.xml new file mode 100644 index 000000000..b903734e9 --- /dev/null +++ b/train_annot_folder/applauding_038.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_038.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_038.jpg + + Unknown + + + 488 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 45 + 30 + 466 + 400 + + + diff --git a/train_annot_folder/applauding_039.xml b/train_annot_folder/applauding_039.xml new file mode 100644 index 000000000..88e776aa2 --- /dev/null +++ b/train_annot_folder/applauding_039.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_039.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_039.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 76 + 18 + 226 + 388 + + + diff --git a/train_annot_folder/applauding_040.xml b/train_annot_folder/applauding_040.xml new file mode 100644 index 000000000..978874d5f --- /dev/null +++ b/train_annot_folder/applauding_040.xml @@ -0,0 +1,50 @@ + + non_workers + applauding_040.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_040.jpg + + Unknown + + + 497 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 325 + 22 + 475 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 136 + 8 + 245 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 32 + 15 + 149 + 237 + + + diff --git a/train_annot_folder/applauding_041.xml b/train_annot_folder/applauding_041.xml new file mode 100644 index 000000000..b664705ae --- /dev/null +++ b/train_annot_folder/applauding_041.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_041.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_041.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 44 + 8 + 306 + 277 + + + + person without helmet + Unspecified + 1 + 0 + + 299 + 105 + 451 + 298 + + + diff --git a/train_annot_folder/applauding_042.xml b/train_annot_folder/applauding_042.xml new file mode 100644 index 000000000..3b38fa56f --- /dev/null +++ b/train_annot_folder/applauding_042.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_042.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_042.jpg + + Unknown + + + 200 + 283 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 40 + 6 + 178 + 283 + + + diff --git a/train_annot_folder/applauding_043.xml b/train_annot_folder/applauding_043.xml new file mode 100644 index 000000000..5f9d4f5e4 --- /dev/null +++ b/train_annot_folder/applauding_043.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_043.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_043.jpg + + Unknown + + + 425 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 269 + 39 + 425 + 217 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 7 + 102 + 299 + + + diff --git a/train_annot_folder/applauding_044.xml b/train_annot_folder/applauding_044.xml new file mode 100644 index 000000000..25451887e --- /dev/null +++ b/train_annot_folder/applauding_044.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_044.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_044.jpg + + Unknown + + + 440 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 28 + 24 + 155 + 298 + + + + person without helmet + Unspecified + 1 + 0 + + 273 + 8 + 418 + 300 + + + diff --git a/train_annot_folder/applauding_045.xml b/train_annot_folder/applauding_045.xml new file mode 100644 index 000000000..f519876f1 --- /dev/null +++ b/train_annot_folder/applauding_045.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_045.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_045.jpg + + Unknown + + + 300 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 117 + 121 + 189 + 329 + + + + person without helmet + Unspecified + 0 + 0 + + 211 + 140 + 273 + 380 + + + diff --git a/train_annot_folder/applauding_046.xml b/train_annot_folder/applauding_046.xml new file mode 100644 index 000000000..6a993f2da --- /dev/null +++ b/train_annot_folder/applauding_046.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_046.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_046.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 46 + 8 + 222 + 238 + + + diff --git a/train_annot_folder/applauding_047.xml b/train_annot_folder/applauding_047.xml new file mode 100644 index 000000000..130871618 --- /dev/null +++ b/train_annot_folder/applauding_047.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_047.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_047.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 129 + 8 + 326 + 300 + + + diff --git a/train_annot_folder/applauding_048.xml b/train_annot_folder/applauding_048.xml new file mode 100644 index 000000000..2d74eb25a --- /dev/null +++ b/train_annot_folder/applauding_048.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_048.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_048.jpg + + Unknown + + + 800 + 600 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 25 + 25 + 663 + 600 + + + diff --git a/train_annot_folder/applauding_049.xml b/train_annot_folder/applauding_049.xml new file mode 100644 index 000000000..533ef657e --- /dev/null +++ b/train_annot_folder/applauding_049.xml @@ -0,0 +1,62 @@ + + non_workers + applauding_049.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_049.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 144 + 38 + 234 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 337 + 125 + 395 + 232 + + + + person without helmet + Unspecified + 1 + 0 + + 331 + 224 + 406 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 16 + 87 + 87 + 300 + + + diff --git a/train_annot_folder/applauding_050.xml b/train_annot_folder/applauding_050.xml new file mode 100644 index 000000000..bb876b7eb --- /dev/null +++ b/train_annot_folder/applauding_050.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_050.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_050.jpg + + Unknown + + + 300 + 447 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 18 + 26 + 300 + 408 + + + diff --git a/train_annot_folder/applauding_051.xml b/train_annot_folder/applauding_051.xml new file mode 100644 index 000000000..66ca964ed --- /dev/null +++ b/train_annot_folder/applauding_051.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_051.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_051.jpg + + Unknown + + + 376 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 42 + 2 + 351 + 300 + + + diff --git a/train_annot_folder/applauding_052.xml b/train_annot_folder/applauding_052.xml new file mode 100644 index 000000000..1c8334d27 --- /dev/null +++ b/train_annot_folder/applauding_052.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_052.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_052.jpg + + Unknown + + + 410 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 164 + 72 + 317 + 300 + + + diff --git a/train_annot_folder/applauding_053.xml b/train_annot_folder/applauding_053.xml new file mode 100644 index 000000000..1bca6b9b8 --- /dev/null +++ b/train_annot_folder/applauding_053.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_053.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_053.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 60 + 31 + 215 + 300 + + + diff --git a/train_annot_folder/applauding_054.xml b/train_annot_folder/applauding_054.xml new file mode 100644 index 000000000..2aaa3a7e0 --- /dev/null +++ b/train_annot_folder/applauding_054.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_054.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_054.jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 30 + 199 + 245 + + + diff --git a/train_annot_folder/applauding_055.xml b/train_annot_folder/applauding_055.xml new file mode 100644 index 000000000..c35af7a81 --- /dev/null +++ b/train_annot_folder/applauding_055.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_055.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_055.jpg + + Unknown + + + 686 + 500 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 108 + 55 + 316 + 500 + + + + person without helmet + Unspecified + 1 + 0 + + 372 + 73 + 671 + 500 + + + diff --git a/train_annot_folder/applauding_056.xml b/train_annot_folder/applauding_056.xml new file mode 100644 index 000000000..9a90cddc3 --- /dev/null +++ b/train_annot_folder/applauding_056.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_056.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_056.jpg + + Unknown + + + 200 + 393 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 157 + 392 + + + diff --git a/train_annot_folder/applauding_057.xml b/train_annot_folder/applauding_057.xml new file mode 100644 index 000000000..fd7ba6011 --- /dev/null +++ b/train_annot_folder/applauding_057.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_057.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_057.jpg + + Unknown + + + 534 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 97 + 116 + 353 + 394 + + + diff --git a/train_annot_folder/applauding_058.xml b/train_annot_folder/applauding_058.xml new file mode 100644 index 000000000..1222ab919 --- /dev/null +++ b/train_annot_folder/applauding_058.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_058.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_058.jpg + + Unknown + + + 200 + 466 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 16 + 15 + 162 + 462 + + + diff --git a/train_annot_folder/applauding_059.xml b/train_annot_folder/applauding_059.xml new file mode 100644 index 000000000..54f902c87 --- /dev/null +++ b/train_annot_folder/applauding_059.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_059.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_059.jpg + + Unknown + + + 400 + 522 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 17 + 14 + 392 + 462 + + + diff --git a/train_annot_folder/applauding_060.xml b/train_annot_folder/applauding_060.xml new file mode 100644 index 000000000..5b5233b12 --- /dev/null +++ b/train_annot_folder/applauding_060.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_060.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_060.jpg + + Unknown + + + 300 + 435 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 62 + 38 + 265 + 418 + + + diff --git a/train_annot_folder/applauding_061.xml b/train_annot_folder/applauding_061.xml new file mode 100644 index 000000000..1351a83b8 --- /dev/null +++ b/train_annot_folder/applauding_061.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_061.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_061.jpg + + Unknown + + + 300 + 452 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 126 + 84 + 228 + 426 + + + diff --git a/train_annot_folder/applauding_062.xml b/train_annot_folder/applauding_062.xml new file mode 100644 index 000000000..2f821678a --- /dev/null +++ b/train_annot_folder/applauding_062.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_062.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_062.jpg + + Unknown + + + 602 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 400 + 33 + 532 + 268 + + + + person without helmet + Unspecified + 0 + 0 + + 132 + 45 + 281 + 315 + + + diff --git a/train_annot_folder/applauding_063.xml b/train_annot_folder/applauding_063.xml new file mode 100644 index 000000000..d15db7a17 --- /dev/null +++ b/train_annot_folder/applauding_063.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_063.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_063.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 24 + 15 + 250 + 300 + + + diff --git a/train_annot_folder/applauding_064.xml b/train_annot_folder/applauding_064.xml new file mode 100644 index 000000000..0ae8c25d5 --- /dev/null +++ b/train_annot_folder/applauding_064.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_064.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_064.jpg + + Unknown + + + 268 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 60 + 5 + 143 + 199 + + + diff --git a/train_annot_folder/applauding_065.xml b/train_annot_folder/applauding_065.xml new file mode 100644 index 000000000..4f41b4baf --- /dev/null +++ b/train_annot_folder/applauding_065.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_065.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_065.jpg + + Unknown + + + 300 + 433 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 150 + 26 + 239 + 371 + + + + person without helmet + Unspecified + 0 + 0 + + 60 + 56 + 149 + 306 + + + diff --git a/train_annot_folder/applauding_066.xml b/train_annot_folder/applauding_066.xml new file mode 100644 index 000000000..af39cd988 --- /dev/null +++ b/train_annot_folder/applauding_066.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_066.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_066.jpg + + Unknown + + + 598 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 74 + 7 + 327 + 252 + + + + person without helmet + Unspecified + 1 + 0 + + 330 + 156 + 501 + 400 + + + diff --git a/train_annot_folder/applauding_067.xml b/train_annot_folder/applauding_067.xml new file mode 100644 index 000000000..86c42db0d --- /dev/null +++ b/train_annot_folder/applauding_067.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_067.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_067.jpg + + Unknown + + + 400 + 552 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 35 + 24 + 362 + 552 + + + diff --git a/train_annot_folder/applauding_068.xml b/train_annot_folder/applauding_068.xml new file mode 100644 index 000000000..7842243c3 --- /dev/null +++ b/train_annot_folder/applauding_068.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_068.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_068.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 104 + 22 + 300 + 340 + + + diff --git a/train_annot_folder/applauding_069.xml b/train_annot_folder/applauding_069.xml new file mode 100644 index 000000000..67c9f9a69 --- /dev/null +++ b/train_annot_folder/applauding_069.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_069.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_069.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 163 + 63 + 292 + 300 + + + diff --git a/train_annot_folder/applauding_070.xml b/train_annot_folder/applauding_070.xml new file mode 100644 index 000000000..7d68f977c --- /dev/null +++ b/train_annot_folder/applauding_070.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_070.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_070.jpg + + Unknown + + + 442 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 243 + 19 + 372 + 297 + + + diff --git a/train_annot_folder/applauding_071.xml b/train_annot_folder/applauding_071.xml new file mode 100644 index 000000000..7b1867130 --- /dev/null +++ b/train_annot_folder/applauding_071.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_071.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_071.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 90 + 67 + 283 + 451 + + + diff --git a/train_annot_folder/applauding_072.xml b/train_annot_folder/applauding_072.xml new file mode 100644 index 000000000..fdc2687df --- /dev/null +++ b/train_annot_folder/applauding_072.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_072.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_072.jpg + + Unknown + + + 534 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 97 + 83 + 265 + 400 + + + diff --git a/train_annot_folder/applauding_073.xml b/train_annot_folder/applauding_073.xml new file mode 100644 index 000000000..50aa49f15 --- /dev/null +++ b/train_annot_folder/applauding_073.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_073.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_073.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 66 + 80 + 300 + 374 + + + diff --git a/train_annot_folder/applauding_074.xml b/train_annot_folder/applauding_074.xml new file mode 100644 index 000000000..822ca36b2 --- /dev/null +++ b/train_annot_folder/applauding_074.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_074.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_074.jpg + + Unknown + + + 469 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 23 + 126 + 221 + 300 + + + diff --git a/train_annot_folder/applauding_075.xml b/train_annot_folder/applauding_075.xml new file mode 100644 index 000000000..b84a2ef0f --- /dev/null +++ b/train_annot_folder/applauding_075.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_075.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_075.jpg + + Unknown + + + 300 + 426 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 109 + 23 + 260 + 426 + + + diff --git a/train_annot_folder/applauding_076.xml b/train_annot_folder/applauding_076.xml new file mode 100644 index 000000000..651178698 --- /dev/null +++ b/train_annot_folder/applauding_076.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_076.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_076.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 126 + 92 + 229 + 300 + + + diff --git a/train_annot_folder/applauding_077.xml b/train_annot_folder/applauding_077.xml new file mode 100644 index 000000000..e09f79216 --- /dev/null +++ b/train_annot_folder/applauding_077.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_077.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_077.jpg + + Unknown + + + 600 + 650 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 109 + 1 + 502 + 380 + + + diff --git a/train_annot_folder/applauding_078.xml b/train_annot_folder/applauding_078.xml new file mode 100644 index 000000000..c1f7bca8e --- /dev/null +++ b/train_annot_folder/applauding_078.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_078.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_078.jpg + + Unknown + + + 336 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 61 + 4 + 235 + 267 + + + diff --git a/train_annot_folder/applauding_079.xml b/train_annot_folder/applauding_079.xml new file mode 100644 index 000000000..4f3708547 --- /dev/null +++ b/train_annot_folder/applauding_079.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_079.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_079.jpg + + Unknown + + + 600 + 894 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 111 + 178 + 492 + 784 + + + diff --git a/train_annot_folder/applauding_080.xml b/train_annot_folder/applauding_080.xml new file mode 100644 index 000000000..ce23b5365 --- /dev/null +++ b/train_annot_folder/applauding_080.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_080.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_080.jpg + + Unknown + + + 300 + 450 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 124 + 71 + 200 + 371 + + + diff --git a/train_annot_folder/applauding_081.xml b/train_annot_folder/applauding_081.xml new file mode 100644 index 000000000..ff27926b2 --- /dev/null +++ b/train_annot_folder/applauding_081.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_081.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_081.jpg + + Unknown + + + 300 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 105 + 124 + 208 + 296 + + + diff --git a/train_annot_folder/applauding_082.xml b/train_annot_folder/applauding_082.xml new file mode 100644 index 000000000..332b2212c --- /dev/null +++ b/train_annot_folder/applauding_082.xml @@ -0,0 +1,62 @@ + + non_workers + applauding_082.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_082.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 276 + 46 + 430 + 281 + + + + person without helmet + Unspecified + 0 + 0 + + 139 + 98 + 210 + 229 + + + + person without helmet + Unspecified + 0 + 0 + + 17 + 81 + 71 + 224 + + + + person without helmet + Unspecified + 0 + 0 + + 97 + 105 + 148 + 215 + + + diff --git a/train_annot_folder/applauding_083.xml b/train_annot_folder/applauding_083.xml new file mode 100644 index 000000000..f9baf9232 --- /dev/null +++ b/train_annot_folder/applauding_083.xml @@ -0,0 +1,50 @@ + + non_workers + applauding_083.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_083.jpg + + Unknown + + + 835 + 600 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 72 + 94 + 337 + 542 + + + + person without helmet + Unspecified + 0 + 0 + + 347 + 67 + 503 + 344 + + + + person without helmet + Unspecified + 0 + 0 + + 546 + 56 + 748 + 419 + + + diff --git a/train_annot_folder/applauding_084.xml b/train_annot_folder/applauding_084.xml new file mode 100644 index 000000000..d133524b1 --- /dev/null +++ b/train_annot_folder/applauding_084.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_084.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_084.jpg + + Unknown + + + 300 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 31 + 97 + 121 + 249 + + + diff --git a/train_annot_folder/applauding_085.xml b/train_annot_folder/applauding_085.xml new file mode 100644 index 000000000..c829ff33f --- /dev/null +++ b/train_annot_folder/applauding_085.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_085.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_085.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 115 + 76 + 195 + 335 + + + diff --git a/train_annot_folder/applauding_086.xml b/train_annot_folder/applauding_086.xml new file mode 100644 index 000000000..cd02829e4 --- /dev/null +++ b/train_annot_folder/applauding_086.xml @@ -0,0 +1,86 @@ + + non_workers + applauding_086.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_086.jpg + + Unknown + + + 400 + 444 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 322 + 170 + 386 + 313 + + + + person without helmet + Unspecified + 0 + 0 + + 241 + 169 + 320 + 310 + + + + person without helmet + Unspecified + 0 + 0 + + 195 + 122 + 264 + 264 + + + + person without helmet + Unspecified + 0 + 0 + + 130 + 119 + 201 + 417 + + + + person without helmet + Unspecified + 0 + 0 + + 68 + 136 + 129 + 408 + + + + person without helmet + Unspecified + 0 + 0 + + 13 + 138 + 77 + 269 + + + diff --git a/train_annot_folder/applauding_087.xml b/train_annot_folder/applauding_087.xml new file mode 100644 index 000000000..99cbe7e6e --- /dev/null +++ b/train_annot_folder/applauding_087.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_087.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_087.jpg + + Unknown + + + 300 + 390 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 22 + 2 + 246 + 317 + + + diff --git a/train_annot_folder/applauding_088.xml b/train_annot_folder/applauding_088.xml new file mode 100644 index 000000000..035b6186b --- /dev/null +++ b/train_annot_folder/applauding_088.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_088.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_088.jpg + + Unknown + + + 300 + 438 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 6 + 1 + 293 + 355 + + + diff --git a/train_annot_folder/applauding_089.xml b/train_annot_folder/applauding_089.xml new file mode 100644 index 000000000..f2adc0977 --- /dev/null +++ b/train_annot_folder/applauding_089.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_089.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_089.jpg + + Unknown + + + 600 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 52 + 60 + 237 + 290 + + + + person without helmet + Unspecified + 0 + 0 + + 190 + 65 + 473 + 320 + + + diff --git a/train_annot_folder/applauding_090.xml b/train_annot_folder/applauding_090.xml new file mode 100644 index 000000000..3189e8a5b --- /dev/null +++ b/train_annot_folder/applauding_090.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_090.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_090.jpg + + Unknown + + + 300 + 448 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 182 + 195 + 300 + 445 + + + + person without helmet + Unspecified + 0 + 0 + + 80 + 96 + 190 + 263 + + + diff --git a/train_annot_folder/applauding_091.xml b/train_annot_folder/applauding_091.xml new file mode 100644 index 000000000..230af3cd2 --- /dev/null +++ b/train_annot_folder/applauding_091.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_091.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_091.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 161 + 74 + 296 + 262 + + + diff --git a/train_annot_folder/applauding_093.xml b/train_annot_folder/applauding_093.xml new file mode 100644 index 000000000..0f5d8536a --- /dev/null +++ b/train_annot_folder/applauding_093.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_093.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_093.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 16 + 137 + 162 + 300 + + + diff --git a/train_annot_folder/applauding_094.xml b/train_annot_folder/applauding_094.xml new file mode 100644 index 000000000..3e3c0eea2 --- /dev/null +++ b/train_annot_folder/applauding_094.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_094.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_094.jpg + + Unknown + + + 535 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 238 + 2 + 482 + 400 + + + diff --git a/train_annot_folder/applauding_095.xml b/train_annot_folder/applauding_095.xml new file mode 100644 index 000000000..70511c95f --- /dev/null +++ b/train_annot_folder/applauding_095.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_095.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_095.jpg + + Unknown + + + 800 + 600 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 342 + 1 + 764 + 600 + + + diff --git a/train_annot_folder/applauding_096.xml b/train_annot_folder/applauding_096.xml new file mode 100644 index 000000000..08a447c35 --- /dev/null +++ b/train_annot_folder/applauding_096.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_096.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_096.jpg + + Unknown + + + 300 + 402 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 49 + 46 + 300 + 392 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 69 + 90 + 276 + + + diff --git a/train_annot_folder/applauding_097.xml b/train_annot_folder/applauding_097.xml new file mode 100644 index 000000000..d25d013fd --- /dev/null +++ b/train_annot_folder/applauding_097.xml @@ -0,0 +1,50 @@ + + non_workers + applauding_097.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_097.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 91 + 94 + 237 + 274 + + + + person without helmet + Unspecified + 0 + 0 + + 255 + 100 + 401 + 249 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 93 + 88 + 250 + + + diff --git a/train_annot_folder/applauding_098.xml b/train_annot_folder/applauding_098.xml new file mode 100644 index 000000000..6dabe3e57 --- /dev/null +++ b/train_annot_folder/applauding_098.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_098.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_098.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 379 + 80 + 432 + 181 + + + + person without helmet + Unspecified + 1 + 0 + + 201 + 28 + 359 + 300 + + + diff --git a/train_annot_folder/applauding_099.xml b/train_annot_folder/applauding_099.xml new file mode 100644 index 000000000..5b9ab5d65 --- /dev/null +++ b/train_annot_folder/applauding_099.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_099.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_099.jpg + + Unknown + + + 451 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 33 + 9 + 113 + 314 + + + diff --git a/train_annot_folder/applauding_100.xml b/train_annot_folder/applauding_100.xml new file mode 100644 index 000000000..70882ed08 --- /dev/null +++ b/train_annot_folder/applauding_100.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_100.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_100.jpg + + Unknown + + + 500 + 751 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 199 + 161 + 429 + 652 + + + + person without helmet + Unspecified + 0 + 0 + + 38 + 185 + 236 + 569 + + + diff --git a/train_annot_folder/applauding_101.xml b/train_annot_folder/applauding_101.xml new file mode 100644 index 000000000..3291acb11 --- /dev/null +++ b/train_annot_folder/applauding_101.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_101.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_101.jpg + + Unknown + + + 500 + 760 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 302 + 25 + 447 + 394 + + + + person without helmet + Unspecified + 0 + 0 + + 136 + 43 + 330 + 511 + + + diff --git a/train_annot_folder/applauding_102.xml b/train_annot_folder/applauding_102.xml new file mode 100644 index 000000000..17e036c90 --- /dev/null +++ b/train_annot_folder/applauding_102.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_102.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_102.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 50 + 1 + 299 + 289 + + + diff --git a/train_annot_folder/applauding_103.xml b/train_annot_folder/applauding_103.xml new file mode 100644 index 000000000..35dc68d48 --- /dev/null +++ b/train_annot_folder/applauding_103.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_103.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_103.jpg + + Unknown + + + 448 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 60 + 67 + 146 + 298 + + + + person without helmet + Unspecified + 1 + 0 + + 281 + 37 + 415 + 300 + + + diff --git a/train_annot_folder/applauding_104.xml b/train_annot_folder/applauding_104.xml new file mode 100644 index 000000000..362a701ca --- /dev/null +++ b/train_annot_folder/applauding_104.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_104.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_104.jpg + + Unknown + + + 600 + 801 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 34 + 36 + 560 + 801 + + + diff --git a/train_annot_folder/applauding_105.xml b/train_annot_folder/applauding_105.xml new file mode 100644 index 000000000..d94567b4e --- /dev/null +++ b/train_annot_folder/applauding_105.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_105.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_105.jpg + + Unknown + + + 536 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 210 + 54 + 343 + 400 + + + diff --git a/train_annot_folder/applauding_106.xml b/train_annot_folder/applauding_106.xml new file mode 100644 index 000000000..112e6ebfe --- /dev/null +++ b/train_annot_folder/applauding_106.xml @@ -0,0 +1,98 @@ + + non_workers + applauding_106.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_106.jpg + + Unknown + + + 600 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 160 + 69 + 285 + 225 + + + + person without helmet + Unspecified + 0 + 0 + + 316 + 124 + 414 + 367 + + + + person without helmet + Unspecified + 0 + 0 + + 447 + 77 + 547 + 359 + + + + person without helmet + Unspecified + 1 + 0 + + 521 + 91 + 600 + 217 + + + + person without helmet + Unspecified + 1 + 0 + + 105 + 225 + 280 + 400 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 172 + 80 + 399 + + + + person without helmet + Unspecified + 0 + 0 + + 393 + 117 + 461 + 239 + + + diff --git a/train_annot_folder/applauding_107.xml b/train_annot_folder/applauding_107.xml new file mode 100644 index 000000000..bcc7d26c5 --- /dev/null +++ b/train_annot_folder/applauding_107.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_107.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_107.jpg + + Unknown + + + 348 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 12 + 60 + 107 + 190 + + + + person without helmet + Unspecified + 0 + 0 + + 135 + 102 + 291 + 279 + + + diff --git a/train_annot_folder/applauding_108.xml b/train_annot_folder/applauding_108.xml new file mode 100644 index 000000000..8850b77dc --- /dev/null +++ b/train_annot_folder/applauding_108.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_108.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_108.jpg + + Unknown + + + 424 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 186 + 26 + 385 + 295 + + + diff --git a/train_annot_folder/applauding_109.xml b/train_annot_folder/applauding_109.xml new file mode 100644 index 000000000..d103eb7f7 --- /dev/null +++ b/train_annot_folder/applauding_109.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_109.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_109.jpg + + Unknown + + + 600 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 162 + 10 + 498 + 400 + + + diff --git a/train_annot_folder/applauding_110.xml b/train_annot_folder/applauding_110.xml new file mode 100644 index 000000000..21431465e --- /dev/null +++ b/train_annot_folder/applauding_110.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_110.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_110.jpg + + Unknown + + + 400 + 404 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 17 + 114 + 249 + 402 + + + diff --git a/train_annot_folder/applauding_111.xml b/train_annot_folder/applauding_111.xml new file mode 100644 index 000000000..0a01fe0c2 --- /dev/null +++ b/train_annot_folder/applauding_111.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_111.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_111.jpg + + Unknown + + + 482 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 61 + 29 + 296 + 300 + + + diff --git a/train_annot_folder/applauding_112.xml b/train_annot_folder/applauding_112.xml new file mode 100644 index 000000000..a41190589 --- /dev/null +++ b/train_annot_folder/applauding_112.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_112.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_112.jpg + + Unknown + + + 300 + 421 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 106 + 123 + 286 + 348 + + + diff --git a/train_annot_folder/applauding_113.xml b/train_annot_folder/applauding_113.xml new file mode 100644 index 000000000..1963a0530 --- /dev/null +++ b/train_annot_folder/applauding_113.xml @@ -0,0 +1,62 @@ + + non_workers + applauding_113.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_113.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 66 + 84 + 132 + 276 + + + + person without helmet + Unspecified + 1 + 0 + + 198 + 106 + 274 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 300 + 103 + 367 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 351 + 90 + 399 + 299 + + + diff --git a/train_annot_folder/applauding_114.xml b/train_annot_folder/applauding_114.xml new file mode 100644 index 000000000..8da46965e --- /dev/null +++ b/train_annot_folder/applauding_114.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_114.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_114.jpg + + Unknown + + + 300 + 461 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 170 + 304 + + + diff --git a/train_annot_folder/applauding_115.xml b/train_annot_folder/applauding_115.xml new file mode 100644 index 000000000..4f054b706 --- /dev/null +++ b/train_annot_folder/applauding_115.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_115.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_115.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 89 + 52 + 266 + 300 + + + diff --git a/train_annot_folder/applauding_116.xml b/train_annot_folder/applauding_116.xml new file mode 100644 index 000000000..9c2dd7e1b --- /dev/null +++ b/train_annot_folder/applauding_116.xml @@ -0,0 +1,50 @@ + + non_workers + applauding_116.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_116.jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 114 + 34 + 175 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 169 + 54 + 211 + 149 + + + + person without helmet + Unspecified + 0 + 0 + + 41 + 77 + 73 + 124 + + + diff --git a/train_annot_folder/applauding_117.xml b/train_annot_folder/applauding_117.xml new file mode 100644 index 000000000..32f9567c2 --- /dev/null +++ b/train_annot_folder/applauding_117.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_117.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_117.jpg + + Unknown + + + 300 + 450 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 47 + 84 + 238 + 388 + + + + person without helmet + Unspecified + 0 + 0 + + 13 + 11 + 98 + 149 + + + diff --git a/train_annot_folder/applauding_118.xml b/train_annot_folder/applauding_118.xml new file mode 100644 index 000000000..b0b56e0bf --- /dev/null +++ b/train_annot_folder/applauding_118.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_118.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_118.jpg + + Unknown + + + 200 + 290 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 25 + 37 + 200 + 290 + + + diff --git a/train_annot_folder/applauding_120.xml b/train_annot_folder/applauding_120.xml new file mode 100644 index 000000000..77a537739 --- /dev/null +++ b/train_annot_folder/applauding_120.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_120.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_120.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 49 + 12 + 189 + 450 + + + diff --git a/train_annot_folder/applauding_121.xml b/train_annot_folder/applauding_121.xml new file mode 100644 index 000000000..8ef929926 --- /dev/null +++ b/train_annot_folder/applauding_121.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_121.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_121.jpg + + Unknown + + + 280 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 14 + 5 + 138 + 182 + + + + person without helmet + Unspecified + 1 + 0 + + 138 + 20 + 280 + 182 + + + diff --git a/train_annot_folder/applauding_122.xml b/train_annot_folder/applauding_122.xml new file mode 100644 index 000000000..6bcd441f4 --- /dev/null +++ b/train_annot_folder/applauding_122.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_122.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_122.jpg + + Unknown + + + 420 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 278 + 79 + 413 + 294 + + + + person without helmet + Unspecified + 1 + 0 + + 126 + 12 + 245 + 300 + + + diff --git a/train_annot_folder/applauding_123.xml b/train_annot_folder/applauding_123.xml new file mode 100644 index 000000000..24c404538 --- /dev/null +++ b/train_annot_folder/applauding_123.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_123.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_123.jpg + + Unknown + + + 600 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 144 + 38 + 311 + 400 + + + + person without helmet + Unspecified + 0 + 0 + + 301 + 57 + 407 + 295 + + + diff --git a/train_annot_folder/applauding_124.xml b/train_annot_folder/applauding_124.xml new file mode 100644 index 000000000..9a882100d --- /dev/null +++ b/train_annot_folder/applauding_124.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_124.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_124.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 109 + 47 + 265 + 451 + + + diff --git a/train_annot_folder/applauding_125.xml b/train_annot_folder/applauding_125.xml new file mode 100644 index 000000000..b3985b9d9 --- /dev/null +++ b/train_annot_folder/applauding_125.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_125.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_125.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 25 + 4 + 182 + 179 + + + + person without helmet + Unspecified + 1 + 0 + + 279 + 6 + 400 + 194 + + + diff --git a/train_annot_folder/applauding_126.xml b/train_annot_folder/applauding_126.xml new file mode 100644 index 000000000..cec6c4f94 --- /dev/null +++ b/train_annot_folder/applauding_126.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_126.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_126.jpg + + Unknown + + + 300 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 85 + 153 + 220 + 400 + + + diff --git a/train_annot_folder/applauding_127.xml b/train_annot_folder/applauding_127.xml new file mode 100644 index 000000000..51363a4bf --- /dev/null +++ b/train_annot_folder/applauding_127.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_127.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_127.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 150 + 11 + 419 + 300 + + + diff --git a/train_annot_folder/applauding_128.xml b/train_annot_folder/applauding_128.xml new file mode 100644 index 000000000..80d989b82 --- /dev/null +++ b/train_annot_folder/applauding_128.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_128.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_128.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 97 + 94 + 190 + 447 + + + + person without helmet + Unspecified + 0 + 0 + + 189 + 116 + 251 + 427 + + + diff --git a/train_annot_folder/applauding_129.xml b/train_annot_folder/applauding_129.xml new file mode 100644 index 000000000..af82f36ad --- /dev/null +++ b/train_annot_folder/applauding_129.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_129.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_129.jpg + + Unknown + + + 300 + 500 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 71 + 53 + 261 + 451 + + + diff --git a/train_annot_folder/applauding_130.xml b/train_annot_folder/applauding_130.xml new file mode 100644 index 000000000..31b6ad87d --- /dev/null +++ b/train_annot_folder/applauding_130.xml @@ -0,0 +1,50 @@ + + non_workers + applauding_130.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_130.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 153 + 125 + 236 + 290 + + + + person without helmet + Unspecified + 0 + 0 + + 25 + 153 + 127 + 295 + + + + person without helmet + Unspecified + 1 + 0 + + 265 + 61 + 403 + 300 + + + diff --git a/train_annot_folder/applauding_132.xml b/train_annot_folder/applauding_132.xml new file mode 100644 index 000000000..906a7094a --- /dev/null +++ b/train_annot_folder/applauding_132.xml @@ -0,0 +1,74 @@ + + non_workers + applauding_132.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_132.jpg + + Unknown + + + 448 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 2 + 63 + 81 + 293 + + + + person without helmet + Unspecified + 1 + 0 + + 77 + 70 + 189 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 320 + 60 + 403 + 297 + + + + person without helmet + Unspecified + 1 + 0 + + 393 + 62 + 448 + 275 + + + + person without helmet + Unspecified + 1 + 0 + + 197 + 73 + 304 + 300 + + + diff --git a/train_annot_folder/applauding_133.xml b/train_annot_folder/applauding_133.xml new file mode 100644 index 000000000..8fcbc91c2 --- /dev/null +++ b/train_annot_folder/applauding_133.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_133.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_133.jpg + + Unknown + + + 306 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 137 + 55 + 298 + 300 + + + diff --git a/train_annot_folder/applauding_134.xml b/train_annot_folder/applauding_134.xml new file mode 100644 index 000000000..b8fc18769 --- /dev/null +++ b/train_annot_folder/applauding_134.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_134.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_134.jpg + + Unknown + + + 493 + 400 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 101 + 1 + 266 + 400 + + + + person without helmet + Unspecified + 0 + 0 + + 258 + 24 + 455 + 399 + + + diff --git a/train_annot_folder/applauding_135.xml b/train_annot_folder/applauding_135.xml new file mode 100644 index 000000000..36ae72cd2 --- /dev/null +++ b/train_annot_folder/applauding_135.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_135.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_135.jpg + + Unknown + + + 440 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 133 + 1 + 336 + 300 + + + diff --git a/train_annot_folder/applauding_136.xml b/train_annot_folder/applauding_136.xml new file mode 100644 index 000000000..4ce7c3099 --- /dev/null +++ b/train_annot_folder/applauding_136.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_136.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_136.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 95 + 77 + 231 + 300 + + + diff --git a/train_annot_folder/applauding_138.xml b/train_annot_folder/applauding_138.xml new file mode 100644 index 000000000..0bee15496 --- /dev/null +++ b/train_annot_folder/applauding_138.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_138.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_138.jpg + + Unknown + + + 300 + 424 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 124 + 29 + 269 + 424 + + + diff --git a/train_annot_folder/applauding_139.xml b/train_annot_folder/applauding_139.xml new file mode 100644 index 000000000..beb2e1553 --- /dev/null +++ b/train_annot_folder/applauding_139.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_139.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_139.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 58 + 86 + 268 + 451 + + + diff --git a/train_annot_folder/applauding_142.xml b/train_annot_folder/applauding_142.xml new file mode 100644 index 000000000..6348032e8 --- /dev/null +++ b/train_annot_folder/applauding_142.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_142.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_142.jpg + + Unknown + + + 300 + 565 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 54 + 39 + 191 + 528 + + + diff --git a/train_annot_folder/applauding_143.xml b/train_annot_folder/applauding_143.xml new file mode 100644 index 000000000..5beea9b87 --- /dev/null +++ b/train_annot_folder/applauding_143.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_143.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_143.jpg + + Unknown + + + 300 + 331 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 185 + 331 + + + diff --git a/train_annot_folder/applauding_144.xml b/train_annot_folder/applauding_144.xml new file mode 100644 index 000000000..4df31f358 --- /dev/null +++ b/train_annot_folder/applauding_144.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_144.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_144.jpg + + Unknown + + + 200 + 320 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 36 + 1 + 170 + 320 + + + diff --git a/train_annot_folder/applauding_151.xml b/train_annot_folder/applauding_151.xml new file mode 100644 index 000000000..7a3018090 --- /dev/null +++ b/train_annot_folder/applauding_151.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_151.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_151.jpg + + Unknown + + + 400 + 471 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 242 + 84 + 364 + 468 + + + + person without helmet + Unspecified + 0 + 0 + + 9 + 8 + 164 + 468 + + + diff --git a/train_annot_folder/applauding_152.xml b/train_annot_folder/applauding_152.xml new file mode 100644 index 000000000..82929ee61 --- /dev/null +++ b/train_annot_folder/applauding_152.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_152.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_152.jpg + + Unknown + + + 422 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 88 + 70 + 220 + 230 + + + diff --git a/train_annot_folder/applauding_153.xml b/train_annot_folder/applauding_153.xml new file mode 100644 index 000000000..955dd145b --- /dev/null +++ b/train_annot_folder/applauding_153.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_153.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_153.jpg + + Unknown + + + 200 + 318 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 29 + 1 + 200 + 262 + + + diff --git a/train_annot_folder/applauding_154.xml b/train_annot_folder/applauding_154.xml new file mode 100644 index 000000000..299164626 --- /dev/null +++ b/train_annot_folder/applauding_154.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_154.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_154.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 182 + 82 + 309 + 300 + + + diff --git a/train_annot_folder/applauding_155.xml b/train_annot_folder/applauding_155.xml new file mode 100644 index 000000000..31231dc14 --- /dev/null +++ b/train_annot_folder/applauding_155.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_155.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_155.jpg + + Unknown + + + 497 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 25 + 1 + 286 + 300 + + + diff --git a/train_annot_folder/applauding_156.xml b/train_annot_folder/applauding_156.xml new file mode 100644 index 000000000..925b4c176 --- /dev/null +++ b/train_annot_folder/applauding_156.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_156.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_156.jpg + + Unknown + + + 419 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 90 + 25 + 247 + 300 + + + diff --git a/train_annot_folder/applauding_158.xml b/train_annot_folder/applauding_158.xml new file mode 100644 index 000000000..d0bd70a5a --- /dev/null +++ b/train_annot_folder/applauding_158.xml @@ -0,0 +1,122 @@ + + non_workers + applauding_158.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_158.jpg + + Unknown + + + 595 + 400 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 470 + 23 + 547 + 244 + + + + person without helmet + Unspecified + 0 + 0 + + 404 + 33 + 476 + 225 + + + + person without helmet + Unspecified + 0 + 0 + + 363 + 43 + 407 + 207 + + + + person without helmet + Unspecified + 0 + 0 + + 291 + 54 + 334 + 167 + + + + person without helmet + Unspecified + 0 + 0 + + 177 + 61 + 205 + 148 + + + + person without helmet + Unspecified + 0 + 0 + + 222 + 51 + 252 + 146 + + + + person without helmet + Unspecified + 0 + 0 + + 252 + 55 + 277 + 141 + + + + person without helmet + Unspecified + 0 + 0 + + 341 + 60 + 370 + 175 + + + + person without helmet + Unspecified + 0 + 0 + + 16 + 12 + 150 + 393 + + + diff --git a/train_annot_folder/applauding_159.xml b/train_annot_folder/applauding_159.xml new file mode 100644 index 000000000..442f77c4c --- /dev/null +++ b/train_annot_folder/applauding_159.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_159.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_159.jpg + + Unknown + + + 448 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 198 + 48 + 439 + 300 + + + diff --git a/train_annot_folder/applauding_160.xml b/train_annot_folder/applauding_160.xml new file mode 100644 index 000000000..0f4c0c019 --- /dev/null +++ b/train_annot_folder/applauding_160.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_160.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_160.jpg + + Unknown + + + 452 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 204 + 39 + 368 + 300 + + + diff --git a/train_annot_folder/applauding_162.xml b/train_annot_folder/applauding_162.xml new file mode 100644 index 000000000..78e381b55 --- /dev/null +++ b/train_annot_folder/applauding_162.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_162.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_162.jpg + + Unknown + + + 346 + 201 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 151 + 8 + 282 + 201 + + + diff --git a/train_annot_folder/applauding_163.xml b/train_annot_folder/applauding_163.xml new file mode 100644 index 000000000..f1243cf7b --- /dev/null +++ b/train_annot_folder/applauding_163.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_163.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_163.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 120 + 9 + 284 + 300 + + + diff --git a/train_annot_folder/applauding_169.xml b/train_annot_folder/applauding_169.xml new file mode 100644 index 000000000..71e8842f3 --- /dev/null +++ b/train_annot_folder/applauding_169.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_169.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_169.jpg + + Unknown + + + 400 + 450 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 9 + 15 + 300 + 450 + + + diff --git a/train_annot_folder/applauding_170.xml b/train_annot_folder/applauding_170.xml new file mode 100644 index 000000000..0f47de1c0 --- /dev/null +++ b/train_annot_folder/applauding_170.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_170.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_170.jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 11 + 155 + 300 + 434 + + + diff --git a/train_annot_folder/applauding_171.xml b/train_annot_folder/applauding_171.xml new file mode 100644 index 000000000..23ea20c13 --- /dev/null +++ b/train_annot_folder/applauding_171.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_171.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_171.jpg + + Unknown + + + 383 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 210 + 1 + 378 + 300 + + + diff --git a/train_annot_folder/applauding_172.xml b/train_annot_folder/applauding_172.xml new file mode 100644 index 000000000..98c129f83 --- /dev/null +++ b/train_annot_folder/applauding_172.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_172.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_172.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 117 + 164 + 235 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 4 + 67 + 28 + 118 + + + diff --git a/train_annot_folder/applauding_173.xml b/train_annot_folder/applauding_173.xml new file mode 100644 index 000000000..d17aa70a1 --- /dev/null +++ b/train_annot_folder/applauding_173.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_173.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_173.jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 12 + 65 + 194 + 300 + + + + person without helmet + Unspecified + 0 + 0 + + 192 + 42 + 370 + 299 + + + diff --git a/train_annot_folder/applauding_176.xml b/train_annot_folder/applauding_176.xml new file mode 100644 index 000000000..0b216fe02 --- /dev/null +++ b/train_annot_folder/applauding_176.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_176.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_176.jpg + + Unknown + + + 300 + 376 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 117 + 80 + 254 + 266 + + + diff --git a/train_annot_folder/applauding_177.xml b/train_annot_folder/applauding_177.xml new file mode 100644 index 000000000..37ae4e304 --- /dev/null +++ b/train_annot_folder/applauding_177.xml @@ -0,0 +1,38 @@ + + non_workers + applauding_177.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_177.jpg + + Unknown + + + 451 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 306 + 43 + 450 + 300 + + + + person without helmet + Unspecified + 1 + 0 + + 138 + 9 + 348 + 300 + + + diff --git a/train_annot_folder/applauding_178.xml b/train_annot_folder/applauding_178.xml new file mode 100644 index 000000000..5c6b45f99 --- /dev/null +++ b/train_annot_folder/applauding_178.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_178.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_178.jpg + + Unknown + + + 400 + 960 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 117 + 54 + 318 + 918 + + + diff --git a/train_annot_folder/applauding_179.xml b/train_annot_folder/applauding_179.xml new file mode 100644 index 000000000..c0542fb5b --- /dev/null +++ b/train_annot_folder/applauding_179.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_179.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_179.jpg + + Unknown + + + 300 + 352 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 42 + 29 + 265 + 352 + + + diff --git a/train_annot_folder/applauding_181.xml b/train_annot_folder/applauding_181.xml new file mode 100644 index 000000000..b5a64348d --- /dev/null +++ b/train_annot_folder/applauding_181.xml @@ -0,0 +1,26 @@ + + non_workers + applauding_181.jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\applauding_181.jpg + + Unknown + + + 400 + 417 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 87 + 44 + 296 + 405 + + + diff --git a/train_annot_folder/person_without_helmet (1).xml b/train_annot_folder/person_without_helmet (1).xml new file mode 100644 index 000000000..46e471eb1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (1).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (1).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (1).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 115 + 14 + 257 + 185 + + + diff --git a/train_annot_folder/person_without_helmet (10).xml b/train_annot_folder/person_without_helmet (10).xml new file mode 100644 index 000000000..ee7a682f0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (10).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (10).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (10).jpg + + Unknown + + + 200 + 270 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 25 + 75 + 180 + 270 + + + diff --git a/train_annot_folder/person_without_helmet (100).xml b/train_annot_folder/person_without_helmet (100).xml new file mode 100644 index 000000000..540562758 --- /dev/null +++ b/train_annot_folder/person_without_helmet (100).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (100).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (100).jpg + + Unknown + + + 200 + 239 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 43 + 15 + 121 + 154 + + + diff --git a/train_annot_folder/person_without_helmet (101).xml b/train_annot_folder/person_without_helmet (101).xml new file mode 100644 index 000000000..0301db0a2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (101).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (101).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (101).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 123 + 48 + 186 + 183 + + + diff --git a/train_annot_folder/person_without_helmet (102).xml b/train_annot_folder/person_without_helmet (102).xml new file mode 100644 index 000000000..49a3f32c5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (102).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (102).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (102).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 106 + 56 + 175 + 139 + + + diff --git a/train_annot_folder/person_without_helmet (103).xml b/train_annot_folder/person_without_helmet (103).xml new file mode 100644 index 000000000..4362f2ff9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (103).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (103).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (103).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 54 + 110 + 115 + 265 + + + diff --git a/train_annot_folder/person_without_helmet (104).xml b/train_annot_folder/person_without_helmet (104).xml new file mode 100644 index 000000000..d2eeec81e --- /dev/null +++ b/train_annot_folder/person_without_helmet (104).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (104).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (104).jpg + + Unknown + + + 235 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 4 + 43 + 80 + 124 + + + diff --git a/train_annot_folder/person_without_helmet (105).xml b/train_annot_folder/person_without_helmet (105).xml new file mode 100644 index 000000000..ea16149b5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (105).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (105).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (105).jpg + + Unknown + + + 223 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 5 + 81 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (106).xml b/train_annot_folder/person_without_helmet (106).xml new file mode 100644 index 000000000..f46bdd2e5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (106).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (106).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (106).jpg + + Unknown + + + 200 + 232 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 26 + 103 + 199 + + + diff --git a/train_annot_folder/person_without_helmet (107).xml b/train_annot_folder/person_without_helmet (107).xml new file mode 100644 index 000000000..20af04c9d --- /dev/null +++ b/train_annot_folder/person_without_helmet (107).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (107).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (107).jpg + + Unknown + + + 301 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 123 + 11 + 263 + 170 + + + diff --git a/train_annot_folder/person_without_helmet (108).xml b/train_annot_folder/person_without_helmet (108).xml new file mode 100644 index 000000000..c9767a037 --- /dev/null +++ b/train_annot_folder/person_without_helmet (108).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (108).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (108).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 11 + 97 + 183 + + + diff --git a/train_annot_folder/person_without_helmet (109).xml b/train_annot_folder/person_without_helmet (109).xml new file mode 100644 index 000000000..dcd89060a --- /dev/null +++ b/train_annot_folder/person_without_helmet (109).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (109).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (109).jpg + + Unknown + + + 268 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 41 + 22 + 149 + 137 + + + diff --git a/train_annot_folder/person_without_helmet (11).xml b/train_annot_folder/person_without_helmet (11).xml new file mode 100644 index 000000000..2d5e3792d --- /dev/null +++ b/train_annot_folder/person_without_helmet (11).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (11).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (11).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 2 + 12 + 150 + 184 + + + diff --git a/train_annot_folder/person_without_helmet (110).xml b/train_annot_folder/person_without_helmet (110).xml new file mode 100644 index 000000000..2a5f7343e --- /dev/null +++ b/train_annot_folder/person_without_helmet (110).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (110).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (110).jpg + + Unknown + + + 209 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 4 + 4 + 147 + 145 + + + diff --git a/train_annot_folder/person_without_helmet (111).xml b/train_annot_folder/person_without_helmet (111).xml new file mode 100644 index 000000000..1bac08068 --- /dev/null +++ b/train_annot_folder/person_without_helmet (111).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (111).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (111).jpg + + Unknown + + + 251 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 16 + 11 + 173 + 167 + + + diff --git a/train_annot_folder/person_without_helmet (112).xml b/train_annot_folder/person_without_helmet (112).xml new file mode 100644 index 000000000..5f6d52289 --- /dev/null +++ b/train_annot_folder/person_without_helmet (112).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (112).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (112).jpg + + Unknown + + + 310 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 119 + 15 + 254 + 155 + + + diff --git a/train_annot_folder/person_without_helmet (113).xml b/train_annot_folder/person_without_helmet (113).xml new file mode 100644 index 000000000..0732a7982 --- /dev/null +++ b/train_annot_folder/person_without_helmet (113).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (113).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (113).jpg + + Unknown + + + 331 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 105 + 26 + 320 + 281 + + + diff --git a/train_annot_folder/person_without_helmet (114).xml b/train_annot_folder/person_without_helmet (114).xml new file mode 100644 index 000000000..2d83a54b0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (114).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (114).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (114).jpg + + Unknown + + + 200 + 207 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 6 + 24 + 160 + 192 + + + diff --git a/train_annot_folder/person_without_helmet (115).xml b/train_annot_folder/person_without_helmet (115).xml new file mode 100644 index 000000000..705483890 --- /dev/null +++ b/train_annot_folder/person_without_helmet (115).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (115).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (115).jpg + + Unknown + + + 274 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 83 + 17 + 251 + 179 + + + diff --git a/train_annot_folder/person_without_helmet (116).xml b/train_annot_folder/person_without_helmet (116).xml new file mode 100644 index 000000000..abb80e9e5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (116).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (116).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (116).jpg + + Unknown + + + 209 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 10 + 6 + 142 + 171 + + + diff --git a/train_annot_folder/person_without_helmet (117).xml b/train_annot_folder/person_without_helmet (117).xml new file mode 100644 index 000000000..cb980d8ab --- /dev/null +++ b/train_annot_folder/person_without_helmet (117).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (117).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (117).jpg + + Unknown + + + 200 + 229 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 167 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (118).xml b/train_annot_folder/person_without_helmet (118).xml new file mode 100644 index 000000000..69c6824be --- /dev/null +++ b/train_annot_folder/person_without_helmet (118).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (118).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (118).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 14 + 109 + 248 + + + diff --git a/train_annot_folder/person_without_helmet (119).xml b/train_annot_folder/person_without_helmet (119).xml new file mode 100644 index 000000000..e50b0293a --- /dev/null +++ b/train_annot_folder/person_without_helmet (119).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (119).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (119).jpg + + Unknown + + + 205 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 4 + 26 + 131 + 160 + + + diff --git a/train_annot_folder/person_without_helmet (12).xml b/train_annot_folder/person_without_helmet (12).xml new file mode 100644 index 000000000..2ea59c5c1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (12).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (12).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (12).jpg + + Unknown + + + 300 + 451 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 101 + 63 + 276 + 447 + + + diff --git a/train_annot_folder/person_without_helmet (120).xml b/train_annot_folder/person_without_helmet (120).xml new file mode 100644 index 000000000..b6f307bac --- /dev/null +++ b/train_annot_folder/person_without_helmet (120).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (120).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (120).jpg + + Unknown + + + 200 + 231 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 28 + 1 + 200 + 175 + + + diff --git a/train_annot_folder/person_without_helmet (121).xml b/train_annot_folder/person_without_helmet (121).xml new file mode 100644 index 000000000..05f03a9e9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (121).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (121).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (121).jpg + + Unknown + + + 200 + 268 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 140 + 212 + + + diff --git a/train_annot_folder/person_without_helmet (122).xml b/train_annot_folder/person_without_helmet (122).xml new file mode 100644 index 000000000..002e09ed0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (122).xml @@ -0,0 +1,38 @@ + + non_workers + person_without_helmet (122).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (122).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 32 + 29 + 127 + 167 + + + + person without helmet + Unspecified + 0 + 0 + + 131 + 11 + 192 + 84 + + + diff --git a/train_annot_folder/person_without_helmet (123).xml b/train_annot_folder/person_without_helmet (123).xml new file mode 100644 index 000000000..dbf2440f2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (123).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (123).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (123).jpg + + Unknown + + + 258 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 123 + 1 + 258 + 148 + + + diff --git a/train_annot_folder/person_without_helmet (124).xml b/train_annot_folder/person_without_helmet (124).xml new file mode 100644 index 000000000..dc09a8f04 --- /dev/null +++ b/train_annot_folder/person_without_helmet (124).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (124).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (124).jpg + + Unknown + + + 235 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 18 + 119 + 171 + + + diff --git a/train_annot_folder/person_without_helmet (126).xml b/train_annot_folder/person_without_helmet (126).xml new file mode 100644 index 000000000..ccda67346 --- /dev/null +++ b/train_annot_folder/person_without_helmet (126).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (126).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (126).jpg + + Unknown + + + 279 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 145 + 37 + 264 + 186 + + + diff --git a/train_annot_folder/person_without_helmet (127).xml b/train_annot_folder/person_without_helmet (127).xml new file mode 100644 index 000000000..85de7bb99 --- /dev/null +++ b/train_annot_folder/person_without_helmet (127).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (127).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (127).jpg + + Unknown + + + 224 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 83 + 52 + 222 + 199 + + + diff --git a/train_annot_folder/person_without_helmet (128).xml b/train_annot_folder/person_without_helmet (128).xml new file mode 100644 index 000000000..4dc8b954e --- /dev/null +++ b/train_annot_folder/person_without_helmet (128).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (128).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (128).jpg + + Unknown + + + 506 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 112 + 25 + 206 + 157 + + + diff --git a/train_annot_folder/person_without_helmet (129).xml b/train_annot_folder/person_without_helmet (129).xml new file mode 100644 index 000000000..04f25fb4a --- /dev/null +++ b/train_annot_folder/person_without_helmet (129).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (129).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (129).jpg + + Unknown + + + 320 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 125 + 11 + 295 + 159 + + + diff --git a/train_annot_folder/person_without_helmet (13).xml b/train_annot_folder/person_without_helmet (13).xml new file mode 100644 index 000000000..33269c3e7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (13).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (13).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (13).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 57 + 14 + 235 + 177 + + + diff --git a/train_annot_folder/person_without_helmet (130).xml b/train_annot_folder/person_without_helmet (130).xml new file mode 100644 index 000000000..08f6ea460 --- /dev/null +++ b/train_annot_folder/person_without_helmet (130).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (130).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (130).jpg + + Unknown + + + 200 + 230 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 64 + 25 + 133 + 147 + + + diff --git a/train_annot_folder/person_without_helmet (131).xml b/train_annot_folder/person_without_helmet (131).xml new file mode 100644 index 000000000..993ee0924 --- /dev/null +++ b/train_annot_folder/person_without_helmet (131).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (131).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (131).jpg + + Unknown + + + 218 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 54 + 197 + 187 + + + diff --git a/train_annot_folder/person_without_helmet (132).xml b/train_annot_folder/person_without_helmet (132).xml new file mode 100644 index 000000000..e78506c57 --- /dev/null +++ b/train_annot_folder/person_without_helmet (132).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (132).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (132).jpg + + Unknown + + + 208 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 68 + 12 + 135 + 179 + + + diff --git a/train_annot_folder/person_without_helmet (133).xml b/train_annot_folder/person_without_helmet (133).xml new file mode 100644 index 000000000..602eb2410 --- /dev/null +++ b/train_annot_folder/person_without_helmet (133).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (133).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (133).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 115 + 21 + 300 + 184 + + + diff --git a/train_annot_folder/person_without_helmet (134).xml b/train_annot_folder/person_without_helmet (134).xml new file mode 100644 index 000000000..8c9e86348 --- /dev/null +++ b/train_annot_folder/person_without_helmet (134).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (134).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (134).jpg + + Unknown + + + 355 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 13 + 25 + 150 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (135).xml b/train_annot_folder/person_without_helmet (135).xml new file mode 100644 index 000000000..cb3e81398 --- /dev/null +++ b/train_annot_folder/person_without_helmet (135).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (135).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (135).jpg + + Unknown + + + 249 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 39 + 13 + 219 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (136).xml b/train_annot_folder/person_without_helmet (136).xml new file mode 100644 index 000000000..5d376ff39 --- /dev/null +++ b/train_annot_folder/person_without_helmet (136).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (136).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (136).jpg + + Unknown + + + 320 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 118 + 1 + 216 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (137).xml b/train_annot_folder/person_without_helmet (137).xml new file mode 100644 index 000000000..626decbbb --- /dev/null +++ b/train_annot_folder/person_without_helmet (137).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (137).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (137).jpg + + Unknown + + + 209 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 16 + 15 + 153 + 129 + + + diff --git a/train_annot_folder/person_without_helmet (138).xml b/train_annot_folder/person_without_helmet (138).xml new file mode 100644 index 000000000..765d8e7a0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (138).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (138).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (138).jpg + + Unknown + + + 200 + 215 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 12 + 2 + 184 + 214 + + + diff --git a/train_annot_folder/person_without_helmet (139).xml b/train_annot_folder/person_without_helmet (139).xml new file mode 100644 index 000000000..a6884f47f --- /dev/null +++ b/train_annot_folder/person_without_helmet (139).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (139).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (139).jpg + + Unknown + + + 207 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 42 + 15 + 180 + 181 + + + diff --git a/train_annot_folder/person_without_helmet (14).xml b/train_annot_folder/person_without_helmet (14).xml new file mode 100644 index 000000000..3fa2ad075 --- /dev/null +++ b/train_annot_folder/person_without_helmet (14).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (14).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (14).jpg + + Unknown + + + 282 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 8 + 11 + 222 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (140).xml b/train_annot_folder/person_without_helmet (140).xml new file mode 100644 index 000000000..3c3afa91a --- /dev/null +++ b/train_annot_folder/person_without_helmet (140).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (140).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (140).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 30 + 1 + 121 + 264 + + + diff --git a/train_annot_folder/person_without_helmet (141).xml b/train_annot_folder/person_without_helmet (141).xml new file mode 100644 index 000000000..1036585e5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (141).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (141).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (141).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 39 + 55 + 192 + 199 + + + diff --git a/train_annot_folder/person_without_helmet (142).xml b/train_annot_folder/person_without_helmet (142).xml new file mode 100644 index 000000000..1c28dbd9d --- /dev/null +++ b/train_annot_folder/person_without_helmet (142).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (142).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (142).jpg + + Unknown + + + 200 + 202 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 49 + 46 + 176 + 202 + + + diff --git a/train_annot_folder/person_without_helmet (143).xml b/train_annot_folder/person_without_helmet (143).xml new file mode 100644 index 000000000..bdc20d2c6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (143).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (143).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (143).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 53 + 21 + 172 + 300 + + + diff --git a/train_annot_folder/person_without_helmet (144).xml b/train_annot_folder/person_without_helmet (144).xml new file mode 100644 index 000000000..38927c786 --- /dev/null +++ b/train_annot_folder/person_without_helmet (144).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (144).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (144).jpg + + Unknown + + + 200 + 233 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 90 + 45 + 158 + 218 + + + diff --git a/train_annot_folder/person_without_helmet (145).xml b/train_annot_folder/person_without_helmet (145).xml new file mode 100644 index 000000000..c7363cc30 --- /dev/null +++ b/train_annot_folder/person_without_helmet (145).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (145).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (145).jpg + + Unknown + + + 200 + 253 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 62 + 39 + 183 + 227 + + + diff --git a/train_annot_folder/person_without_helmet (146).xml b/train_annot_folder/person_without_helmet (146).xml new file mode 100644 index 000000000..e088bfa09 --- /dev/null +++ b/train_annot_folder/person_without_helmet (146).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (146).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (146).jpg + + Unknown + + + 206 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 56 + 32 + 157 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (147).xml b/train_annot_folder/person_without_helmet (147).xml new file mode 100644 index 000000000..af6eb5bcd --- /dev/null +++ b/train_annot_folder/person_without_helmet (147).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (147).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (147).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 64 + 113 + 127 + 300 + + + diff --git a/train_annot_folder/person_without_helmet (148).xml b/train_annot_folder/person_without_helmet (148).xml new file mode 100644 index 000000000..4fd3f1748 --- /dev/null +++ b/train_annot_folder/person_without_helmet (148).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (148).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (148).jpg + + Unknown + + + 200 + 226 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 9 + 11 + 192 + 226 + + + diff --git a/train_annot_folder/person_without_helmet (149).xml b/train_annot_folder/person_without_helmet (149).xml new file mode 100644 index 000000000..f82094dfb --- /dev/null +++ b/train_annot_folder/person_without_helmet (149).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (149).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (149).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 51 + 81 + 137 + 179 + + + diff --git a/train_annot_folder/person_without_helmet (155).xml b/train_annot_folder/person_without_helmet (155).xml new file mode 100644 index 000000000..baddd7a79 --- /dev/null +++ b/train_annot_folder/person_without_helmet (155).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (155).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (155).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 25 + 53 + 141 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (156).xml b/train_annot_folder/person_without_helmet (156).xml new file mode 100644 index 000000000..7b4778bc8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (156).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (156).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (156).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 70 + 37 + 165 + 198 + + + diff --git a/train_annot_folder/person_without_helmet (157).xml b/train_annot_folder/person_without_helmet (157).xml new file mode 100644 index 000000000..92d41eae5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (157).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (157).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (157).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 50 + 71 + 118 + 262 + + + diff --git a/train_annot_folder/person_without_helmet (158).xml b/train_annot_folder/person_without_helmet (158).xml new file mode 100644 index 000000000..94dfb03d0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (158).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (158).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (158).jpg + + Unknown + + + 200 + 211 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 115 + 1 + 192 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (159).xml b/train_annot_folder/person_without_helmet (159).xml new file mode 100644 index 000000000..bde2b155b --- /dev/null +++ b/train_annot_folder/person_without_helmet (159).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (159).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (159).jpg + + Unknown + + + 200 + 264 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 68 + 4 + 191 + 260 + + + diff --git a/train_annot_folder/person_without_helmet (160).xml b/train_annot_folder/person_without_helmet (160).xml new file mode 100644 index 000000000..91b3c3708 --- /dev/null +++ b/train_annot_folder/person_without_helmet (160).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (160).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (160).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 54 + 1 + 188 + 245 + + + diff --git a/train_annot_folder/person_without_helmet (161).xml b/train_annot_folder/person_without_helmet (161).xml new file mode 100644 index 000000000..64b12a1a0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (161).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (161).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (161).jpg + + Unknown + + + 200 + 222 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 111 + 65 + 177 + 210 + + + diff --git a/train_annot_folder/person_without_helmet (162).xml b/train_annot_folder/person_without_helmet (162).xml new file mode 100644 index 000000000..a3cb1183c --- /dev/null +++ b/train_annot_folder/person_without_helmet (162).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (162).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (162).jpg + + Unknown + + + 200 + 260 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 77 + 51 + 182 + 251 + + + diff --git a/train_annot_folder/person_without_helmet (163).xml b/train_annot_folder/person_without_helmet (163).xml new file mode 100644 index 000000000..5038ea1d6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (163).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (163).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (163).jpg + + Unknown + + + 200 + 206 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 43 + 41 + 154 + 193 + + + diff --git a/train_annot_folder/person_without_helmet (164).xml b/train_annot_folder/person_without_helmet (164).xml new file mode 100644 index 000000000..e9bdcd8a9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (164).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (164).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (164).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 146 + 10 + 257 + 190 + + + + person without helmet + Unspecified + 0 + 0 + + 69 + 76 + 104 + 140 + + + diff --git a/train_annot_folder/person_without_helmet (165).xml b/train_annot_folder/person_without_helmet (165).xml new file mode 100644 index 000000000..47b8cb08a --- /dev/null +++ b/train_annot_folder/person_without_helmet (165).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (165).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (165).jpg + + Unknown + + + 206 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 95 + 70 + 139 + 194 + + + diff --git a/train_annot_folder/person_without_helmet (166).xml b/train_annot_folder/person_without_helmet (166).xml new file mode 100644 index 000000000..4a8cf5097 --- /dev/null +++ b/train_annot_folder/person_without_helmet (166).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (166).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (166).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 62 + 1 + 171 + 110 + + + diff --git a/train_annot_folder/person_without_helmet (167).xml b/train_annot_folder/person_without_helmet (167).xml new file mode 100644 index 000000000..2e4cd032d --- /dev/null +++ b/train_annot_folder/person_without_helmet (167).xml @@ -0,0 +1,62 @@ + + person_without_helmet + person_without_helmet (167).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (167).jpg + + Unknown + + + 200 + 212 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 16 + 11 + 107 + 145 + + + + person without helmet + Unspecified + 1 + 0 + + 129 + 52 + 200 + 171 + + + + person without helmet + Unspecified + 0 + 0 + + 107 + 79 + 134 + 159 + + + + person without helmet + Unspecified + 1 + 0 + + 148 + 1 + 198 + 52 + + + diff --git a/train_annot_folder/person_without_helmet (168).xml b/train_annot_folder/person_without_helmet (168).xml new file mode 100644 index 000000000..62f2c674b --- /dev/null +++ b/train_annot_folder/person_without_helmet (168).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (168).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (168).jpg + + Unknown + + + 200 + 224 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 99 + 100 + 185 + 224 + + + + person without helmet + Unspecified + 0 + 0 + + 21 + 4 + 95 + 195 + + + diff --git a/train_annot_folder/person_without_helmet (169).xml b/train_annot_folder/person_without_helmet (169).xml new file mode 100644 index 000000000..2e85abfa1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (169).xml @@ -0,0 +1,14 @@ + + person_without_helmet + person_without_helmet (169).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (169).jpg + + Unknown + + + 342 + 200 + 3 + + 0 + diff --git a/train_annot_folder/person_without_helmet (170).xml b/train_annot_folder/person_without_helmet (170).xml new file mode 100644 index 000000000..4c7891b02 --- /dev/null +++ b/train_annot_folder/person_without_helmet (170).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (170).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (170).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 100 + 15 + 175 + 163 + + + diff --git a/train_annot_folder/person_without_helmet (171).xml b/train_annot_folder/person_without_helmet (171).xml new file mode 100644 index 000000000..92de53cd9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (171).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (171).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (171).jpg + + Unknown + + + 224 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 82 + 40 + 115 + 161 + + + + person without helmet + Unspecified + 0 + 0 + + 32 + 56 + 74 + 173 + + + + person without helmet + Unspecified + 0 + 0 + + 112 + 39 + 140 + 78 + + + diff --git a/train_annot_folder/person_without_helmet (172).xml b/train_annot_folder/person_without_helmet (172).xml new file mode 100644 index 000000000..8ac285ca7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (172).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (172).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (172).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 32 + 6 + 91 + 160 + + + diff --git a/train_annot_folder/person_without_helmet (173).xml b/train_annot_folder/person_without_helmet (173).xml new file mode 100644 index 000000000..549ba6736 --- /dev/null +++ b/train_annot_folder/person_without_helmet (173).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (173).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (173).jpg + + Unknown + + + 401 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 180 + 95 + 260 + 255 + + + diff --git a/train_annot_folder/person_without_helmet (174).xml b/train_annot_folder/person_without_helmet (174).xml new file mode 100644 index 000000000..d833e318c --- /dev/null +++ b/train_annot_folder/person_without_helmet (174).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (174).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (174).jpg + + Unknown + + + 341 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 149 + 78 + 173 + 91 + + + + person with helmet + Unspecified + 0 + 0 + + 141 + 79 + 172 + 171 + + + diff --git a/train_annot_folder/person_without_helmet (175).xml b/train_annot_folder/person_without_helmet (175).xml new file mode 100644 index 000000000..3937995ec --- /dev/null +++ b/train_annot_folder/person_without_helmet (175).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (175).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (175).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 26 + 1 + 133 + 154 + + + diff --git a/train_annot_folder/person_without_helmet (176).xml b/train_annot_folder/person_without_helmet (176).xml new file mode 100644 index 000000000..adbf8677b --- /dev/null +++ b/train_annot_folder/person_without_helmet (176).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (176).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (176).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 52 + 1 + 169 + 159 + + + diff --git a/train_annot_folder/person_without_helmet (177).xml b/train_annot_folder/person_without_helmet (177).xml new file mode 100644 index 000000000..442543def --- /dev/null +++ b/train_annot_folder/person_without_helmet (177).xml @@ -0,0 +1,14 @@ + + person_without_helmet + person_without_helmet (177).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (177).jpg + + Unknown + + + 320 + 200 + 3 + + 0 + diff --git a/train_annot_folder/person_without_helmet (180).xml b/train_annot_folder/person_without_helmet (180).xml new file mode 100644 index 000000000..b18a57a4a --- /dev/null +++ b/train_annot_folder/person_without_helmet (180).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (180).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (180).jpg + + Unknown + + + 220 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 92 + 10 + 125 + 26 + + + + person with helmet + Unspecified + 0 + 0 + + 79 + 11 + 153 + 100 + + + diff --git a/train_annot_folder/person_without_helmet (181).xml b/train_annot_folder/person_without_helmet (181).xml new file mode 100644 index 000000000..203e5044d --- /dev/null +++ b/train_annot_folder/person_without_helmet (181).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (181).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (181).jpg + + Unknown + + + 308 + 201 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 91 + 53 + 118 + 99 + + + diff --git a/train_annot_folder/person_without_helmet (182).xml b/train_annot_folder/person_without_helmet (182).xml new file mode 100644 index 000000000..c4ed3cfe5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (182).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (182).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (182).jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 90 + 150 + 108 + 185 + + + + person without helmet + Unspecified + 0 + 0 + + 187 + 129 + 210 + 166 + + + diff --git a/train_annot_folder/person_without_helmet (183).xml b/train_annot_folder/person_without_helmet (183).xml new file mode 100644 index 000000000..bb52c8f5d --- /dev/null +++ b/train_annot_folder/person_without_helmet (183).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (183).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (183).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 65 + 61 + 89 + 103 + + + diff --git a/train_annot_folder/person_without_helmet (184).xml b/train_annot_folder/person_without_helmet (184).xml new file mode 100644 index 000000000..51ef0be2b --- /dev/null +++ b/train_annot_folder/person_without_helmet (184).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (184).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (184).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 49 + 68 + 82 + 107 + + + + person without helmet + Unspecified + 0 + 0 + + 117 + 59 + 146 + 91 + + + diff --git a/train_annot_folder/person_without_helmet (185).xml b/train_annot_folder/person_without_helmet (185).xml new file mode 100644 index 000000000..3820c727c --- /dev/null +++ b/train_annot_folder/person_without_helmet (185).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (185).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (185).jpg + + Unknown + + + 204 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 155 + 89 + 174 + 120 + + + diff --git a/train_annot_folder/person_without_helmet (186).xml b/train_annot_folder/person_without_helmet (186).xml new file mode 100644 index 000000000..67b878a8c --- /dev/null +++ b/train_annot_folder/person_without_helmet (186).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (186).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (186).jpg + + Unknown + + + 200 + 250 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 91 + 5 + 166 + 227 + + + diff --git a/train_annot_folder/person_without_helmet (187).xml b/train_annot_folder/person_without_helmet (187).xml new file mode 100644 index 000000000..bc4ea7811 --- /dev/null +++ b/train_annot_folder/person_without_helmet (187).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (187).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (187).jpg + + Unknown + + + 200 + 306 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 66 + 31 + 130 + 259 + + + diff --git a/train_annot_folder/person_without_helmet (188).xml b/train_annot_folder/person_without_helmet (188).xml new file mode 100644 index 000000000..c7d8bba07 --- /dev/null +++ b/train_annot_folder/person_without_helmet (188).xml @@ -0,0 +1,14 @@ + + person_without_helmet + person_without_helmet (188).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (188).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + diff --git a/train_annot_folder/person_without_helmet (189).xml b/train_annot_folder/person_without_helmet (189).xml new file mode 100644 index 000000000..85989b79b --- /dev/null +++ b/train_annot_folder/person_without_helmet (189).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (189).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (189).jpg + + Unknown + + + 200 + 202 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 96 + 68 + 137 + 157 + + + diff --git a/train_annot_folder/person_without_helmet (190).xml b/train_annot_folder/person_without_helmet (190).xml new file mode 100644 index 000000000..1dece7880 --- /dev/null +++ b/train_annot_folder/person_without_helmet (190).xml @@ -0,0 +1,14 @@ + + person_without_helmet + person_without_helmet (190).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (190).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + diff --git a/train_annot_folder/person_without_helmet (191).xml b/train_annot_folder/person_without_helmet (191).xml new file mode 100644 index 000000000..65b3a02ea --- /dev/null +++ b/train_annot_folder/person_without_helmet (191).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (191).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (191).jpg + + Unknown + + + 302 + 201 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 28 + 6 + 122 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (192).xml b/train_annot_folder/person_without_helmet (192).xml new file mode 100644 index 000000000..4699ade42 --- /dev/null +++ b/train_annot_folder/person_without_helmet (192).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (192).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (192).jpg + + Unknown + + + 289 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 30 + 5 + 144 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (193).xml b/train_annot_folder/person_without_helmet (193).xml new file mode 100644 index 000000000..11f242762 --- /dev/null +++ b/train_annot_folder/person_without_helmet (193).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (193).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (193).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 38 + 36 + 77 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (194).xml b/train_annot_folder/person_without_helmet (194).xml new file mode 100644 index 000000000..c15d29ec1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (194).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (194).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (194).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 125 + 73 + 181 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 253 + 123 + 300 + 199 + + + + person without helmet + Unspecified + 0 + 0 + + 4 + 108 + 53 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (195).xml b/train_annot_folder/person_without_helmet (195).xml new file mode 100644 index 000000000..6cc93d3b1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (195).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (195).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (195).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 66 + 99 + 97 + 217 + + + diff --git a/train_annot_folder/person_without_helmet (196).xml b/train_annot_folder/person_without_helmet (196).xml new file mode 100644 index 000000000..b28fb08e3 --- /dev/null +++ b/train_annot_folder/person_without_helmet (196).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (196).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (196).jpg + + Unknown + + + 200 + 243 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 65 + 13 + 117 + 243 + + + diff --git a/train_annot_folder/person_without_helmet (197).xml b/train_annot_folder/person_without_helmet (197).xml new file mode 100644 index 000000000..d1c74f3a7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (197).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (197).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (197).jpg + + Unknown + + + 219 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 98 + 35 + 190 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (198).xml b/train_annot_folder/person_without_helmet (198).xml new file mode 100644 index 000000000..63f097c1c --- /dev/null +++ b/train_annot_folder/person_without_helmet (198).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (198).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (198).jpg + + Unknown + + + 209 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 15 + 16 + 104 + 193 + + + diff --git a/train_annot_folder/person_without_helmet (199).xml b/train_annot_folder/person_without_helmet (199).xml new file mode 100644 index 000000000..472e39598 --- /dev/null +++ b/train_annot_folder/person_without_helmet (199).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (199).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (199).jpg + + Unknown + + + 308 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 3 + 164 + 263 + 289 + + + diff --git a/train_annot_folder/person_without_helmet (200).xml b/train_annot_folder/person_without_helmet (200).xml new file mode 100644 index 000000000..21419b416 --- /dev/null +++ b/train_annot_folder/person_without_helmet (200).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (200).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (200).jpg + + Unknown + + + 289 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 38 + 30 + 146 + 141 + + + diff --git a/train_annot_folder/person_without_helmet (201).xml b/train_annot_folder/person_without_helmet (201).xml new file mode 100644 index 000000000..1b52bf3c7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (201).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (201).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (201).jpg + + Unknown + + + 200 + 264 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 70 + 12 + 200 + 241 + + + diff --git a/train_annot_folder/person_without_helmet (202).xml b/train_annot_folder/person_without_helmet (202).xml new file mode 100644 index 000000000..c0a6462ae --- /dev/null +++ b/train_annot_folder/person_without_helmet (202).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (202).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (202).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 45 + 6 + 167 + 192 + + + diff --git a/train_annot_folder/person_without_helmet (203).xml b/train_annot_folder/person_without_helmet (203).xml new file mode 100644 index 000000000..9b329a2d6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (203).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (203).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (203).jpg + + Unknown + + + 322 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 112 + 1 + 303 + 195 + + + diff --git a/train_annot_folder/person_without_helmet (204).xml b/train_annot_folder/person_without_helmet (204).xml new file mode 100644 index 000000000..a046245f5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (204).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (204).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (204).jpg + + Unknown + + + 271 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 73 + 26 + 172 + 137 + + + diff --git a/train_annot_folder/person_without_helmet (205).xml b/train_annot_folder/person_without_helmet (205).xml new file mode 100644 index 000000000..5ae1f0b96 --- /dev/null +++ b/train_annot_folder/person_without_helmet (205).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (205).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (205).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 27 + 7 + 169 + 300 + + + diff --git a/train_annot_folder/person_without_helmet (206).xml b/train_annot_folder/person_without_helmet (206).xml new file mode 100644 index 000000000..ef1448f8f --- /dev/null +++ b/train_annot_folder/person_without_helmet (206).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (206).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (206).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 34 + 2 + 164 + 231 + + + diff --git a/train_annot_folder/person_without_helmet (207).xml b/train_annot_folder/person_without_helmet (207).xml new file mode 100644 index 000000000..1e594dc45 --- /dev/null +++ b/train_annot_folder/person_without_helmet (207).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (207).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (207).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 6 + 5 + 128 + 178 + + + diff --git a/train_annot_folder/person_without_helmet (208).xml b/train_annot_folder/person_without_helmet (208).xml new file mode 100644 index 000000000..aef46bd53 --- /dev/null +++ b/train_annot_folder/person_without_helmet (208).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (208).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (208).jpg + + Unknown + + + 285 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 133 + 20 + 248 + 190 + + + diff --git a/train_annot_folder/person_without_helmet (209).xml b/train_annot_folder/person_without_helmet (209).xml new file mode 100644 index 000000000..45c21baeb --- /dev/null +++ b/train_annot_folder/person_without_helmet (209).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (209).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (209).jpg + + Unknown + + + 214 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 98 + 49 + 147 + 165 + + + + person without helmet + Unspecified + 0 + 0 + + 61 + 34 + 101 + 108 + + + diff --git a/train_annot_folder/person_without_helmet (210).xml b/train_annot_folder/person_without_helmet (210).xml new file mode 100644 index 000000000..000f5c441 --- /dev/null +++ b/train_annot_folder/person_without_helmet (210).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (210).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (210).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 54 + 4 + 152 + 179 + + + + person without helmet + Unspecified + 0 + 0 + + 177 + 25 + 251 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (211).xml b/train_annot_folder/person_without_helmet (211).xml new file mode 100644 index 000000000..f5d367735 --- /dev/null +++ b/train_annot_folder/person_without_helmet (211).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (211).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (211).jpg + + Unknown + + + 200 + 210 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 34 + 9 + 176 + 186 + + + diff --git a/train_annot_folder/person_without_helmet (212).xml b/train_annot_folder/person_without_helmet (212).xml new file mode 100644 index 000000000..0eb4db8b4 --- /dev/null +++ b/train_annot_folder/person_without_helmet (212).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (212).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (212).jpg + + Unknown + + + 200 + 255 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 27 + 82 + 115 + 247 + + + diff --git a/train_annot_folder/person_without_helmet (213).xml b/train_annot_folder/person_without_helmet (213).xml new file mode 100644 index 000000000..c0c4a3db5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (213).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (213).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (213).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 64 + 32 + 190 + 141 + + + diff --git a/train_annot_folder/person_without_helmet (214).xml b/train_annot_folder/person_without_helmet (214).xml new file mode 100644 index 000000000..9c3a1e15a --- /dev/null +++ b/train_annot_folder/person_without_helmet (214).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (214).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (214).jpg + + Unknown + + + 308 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 4 + 4 + 151 + 240 + + + diff --git a/train_annot_folder/person_without_helmet (215).xml b/train_annot_folder/person_without_helmet (215).xml new file mode 100644 index 000000000..36a71eee5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (215).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (215).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (215).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 40 + 25 + 274 + 162 + + + diff --git a/train_annot_folder/person_without_helmet (216).xml b/train_annot_folder/person_without_helmet (216).xml new file mode 100644 index 000000000..39237eed5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (216).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (216).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (216).jpg + + Unknown + + + 206 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 76 + 9 + 195 + 168 + + + diff --git a/train_annot_folder/person_without_helmet (217).xml b/train_annot_folder/person_without_helmet (217).xml new file mode 100644 index 000000000..e43cbb317 --- /dev/null +++ b/train_annot_folder/person_without_helmet (217).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (217).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (217).jpg + + Unknown + + + 204 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 41 + 51 + 143 + 172 + + + + person without helmet + Unspecified + 0 + 0 + + 10 + 45 + 42 + 89 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 37 + 8 + 49 + + + diff --git a/train_annot_folder/person_without_helmet (218).xml b/train_annot_folder/person_without_helmet (218).xml new file mode 100644 index 000000000..1d71563a8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (218).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (218).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (218).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 18 + 66 + 146 + + + diff --git a/train_annot_folder/person_without_helmet (219).xml b/train_annot_folder/person_without_helmet (219).xml new file mode 100644 index 000000000..d5afb7ee6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (219).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (219).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (219).jpg + + Unknown + + + 354 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 237 + 34 + 335 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (220).xml b/train_annot_folder/person_without_helmet (220).xml new file mode 100644 index 000000000..7f37ae626 --- /dev/null +++ b/train_annot_folder/person_without_helmet (220).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (220).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (220).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 102 + 19 + 190 + 145 + + + diff --git a/train_annot_folder/person_without_helmet (221).xml b/train_annot_folder/person_without_helmet (221).xml new file mode 100644 index 000000000..7318afcc0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (221).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (221).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (221).jpg + + Unknown + + + 303 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 176 + 37 + 241 + 149 + + + diff --git a/train_annot_folder/person_without_helmet (222).xml b/train_annot_folder/person_without_helmet (222).xml new file mode 100644 index 000000000..984e7c580 --- /dev/null +++ b/train_annot_folder/person_without_helmet (222).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (222).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (222).jpg + + Unknown + + + 271 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 162 + 2 + 266 + 188 + + + diff --git a/train_annot_folder/person_without_helmet (223).xml b/train_annot_folder/person_without_helmet (223).xml new file mode 100644 index 000000000..1d2a280c2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (223).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (223).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (223).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 78 + 43 + 120 + 181 + + + + person without helmet + Unspecified + 0 + 0 + + 35 + 24 + 81 + 181 + + + diff --git a/train_annot_folder/person_without_helmet (224).xml b/train_annot_folder/person_without_helmet (224).xml new file mode 100644 index 000000000..724a763f6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (224).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (224).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (224).jpg + + Unknown + + + 200 + 220 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 52 + 61 + 99 + 220 + + + + person without helmet + Unspecified + 0 + 0 + + 132 + 71 + 186 + 217 + + + diff --git a/train_annot_folder/person_without_helmet (225).xml b/train_annot_folder/person_without_helmet (225).xml new file mode 100644 index 000000000..3b5c058a3 --- /dev/null +++ b/train_annot_folder/person_without_helmet (225).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (225).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (225).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 51 + 1 + 147 + 124 + + + diff --git a/train_annot_folder/person_without_helmet (226).xml b/train_annot_folder/person_without_helmet (226).xml new file mode 100644 index 000000000..be7f79815 --- /dev/null +++ b/train_annot_folder/person_without_helmet (226).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (226).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (226).jpg + + Unknown + + + 240 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 87 + 29 + 132 + 136 + + + diff --git a/train_annot_folder/person_without_helmet (227).xml b/train_annot_folder/person_without_helmet (227).xml new file mode 100644 index 000000000..7c5f09966 --- /dev/null +++ b/train_annot_folder/person_without_helmet (227).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (227).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (227).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 137 + 1 + 267 + 153 + + + diff --git a/train_annot_folder/person_without_helmet (228).xml b/train_annot_folder/person_without_helmet (228).xml new file mode 100644 index 000000000..10a277577 --- /dev/null +++ b/train_annot_folder/person_without_helmet (228).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (228).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (228).jpg + + Unknown + + + 200 + 213 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 43 + 8 + 131 + 128 + + + diff --git a/train_annot_folder/person_without_helmet (229).xml b/train_annot_folder/person_without_helmet (229).xml new file mode 100644 index 000000000..4a8d6b99c --- /dev/null +++ b/train_annot_folder/person_without_helmet (229).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (229).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (229).jpg + + Unknown + + + 200 + 268 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 78 + 53 + 179 + 243 + + + diff --git a/train_annot_folder/person_without_helmet (230).xml b/train_annot_folder/person_without_helmet (230).xml new file mode 100644 index 000000000..f43c16f01 --- /dev/null +++ b/train_annot_folder/person_without_helmet (230).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (230).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (230).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 27 + 1 + 146 + 144 + + + diff --git a/train_annot_folder/person_without_helmet (231).xml b/train_annot_folder/person_without_helmet (231).xml new file mode 100644 index 000000000..d3983f892 --- /dev/null +++ b/train_annot_folder/person_without_helmet (231).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (231).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (231).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 132 + 16 + 194 + 96 + + + diff --git a/train_annot_folder/person_without_helmet (232).xml b/train_annot_folder/person_without_helmet (232).xml new file mode 100644 index 000000000..5fb9ce649 --- /dev/null +++ b/train_annot_folder/person_without_helmet (232).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (232).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (232).jpg + + Unknown + + + 226 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 6 + 77 + 140 + + + diff --git a/train_annot_folder/person_without_helmet (233).xml b/train_annot_folder/person_without_helmet (233).xml new file mode 100644 index 000000000..a8396803b --- /dev/null +++ b/train_annot_folder/person_without_helmet (233).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (233).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (233).jpg + + Unknown + + + 303 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 89 + 70 + 123 + 155 + + + diff --git a/train_annot_folder/person_without_helmet (234).xml b/train_annot_folder/person_without_helmet (234).xml new file mode 100644 index 000000000..a9a2a2e24 --- /dev/null +++ b/train_annot_folder/person_without_helmet (234).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (234).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (234).jpg + + Unknown + + + 301 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 14 + 1 + 127 + 147 + + + + person without helmet + Unspecified + 0 + 0 + + 205 + 119 + 271 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (235).xml b/train_annot_folder/person_without_helmet (235).xml new file mode 100644 index 000000000..19dd253ca --- /dev/null +++ b/train_annot_folder/person_without_helmet (235).xml @@ -0,0 +1,62 @@ + + person_without_helmet + person_without_helmet (235).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (235).jpg + + Unknown + + + 313 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 35 + 66 + 87 + 122 + + + + person without helmet + Unspecified + 0 + 0 + + 87 + 85 + 121 + 128 + + + + person without helmet + Unspecified + 0 + 0 + + 153 + 90 + 212 + 186 + + + + person without helmet + Unspecified + 0 + 0 + + 237 + 55 + 267 + 93 + + + diff --git a/train_annot_folder/person_without_helmet (236).xml b/train_annot_folder/person_without_helmet (236).xml new file mode 100644 index 000000000..f77ee5e14 --- /dev/null +++ b/train_annot_folder/person_without_helmet (236).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (236).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (236).jpg + + Unknown + + + 397 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 12 + 71 + 124 + 187 + + + diff --git a/train_annot_folder/person_without_helmet (237).xml b/train_annot_folder/person_without_helmet (237).xml new file mode 100644 index 000000000..d3b55b3c8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (237).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (237).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (237).jpg + + Unknown + + + 261 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 179 + 119 + 251 + 198 + + + diff --git a/train_annot_folder/person_without_helmet (238).xml b/train_annot_folder/person_without_helmet (238).xml new file mode 100644 index 000000000..c28ee3730 --- /dev/null +++ b/train_annot_folder/person_without_helmet (238).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (238).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (238).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 108 + 60 + 187 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (239).xml b/train_annot_folder/person_without_helmet (239).xml new file mode 100644 index 000000000..2460a2581 --- /dev/null +++ b/train_annot_folder/person_without_helmet (239).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (239).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (239).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 238 + 51 + 267 + 116 + + + + person without helmet + Unspecified + 0 + 0 + + 151 + 67 + 180 + 98 + + + + person without helmet + Unspecified + 0 + 0 + + 191 + 77 + 219 + 104 + + + diff --git a/train_annot_folder/person_without_helmet (240).xml b/train_annot_folder/person_without_helmet (240).xml new file mode 100644 index 000000000..1e7890f15 --- /dev/null +++ b/train_annot_folder/person_without_helmet (240).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (240).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (240).jpg + + Unknown + + + 314 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 100 + 2 + 229 + 147 + + + diff --git a/train_annot_folder/person_without_helmet (241).xml b/train_annot_folder/person_without_helmet (241).xml new file mode 100644 index 000000000..a6e233cdf --- /dev/null +++ b/train_annot_folder/person_without_helmet (241).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (241).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (241).jpg + + Unknown + + + 335 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 171 + 5 + 283 + 134 + + + diff --git a/train_annot_folder/person_without_helmet (242).xml b/train_annot_folder/person_without_helmet (242).xml new file mode 100644 index 000000000..5b506c301 --- /dev/null +++ b/train_annot_folder/person_without_helmet (242).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (242).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (242).jpg + + Unknown + + + 295 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 136 + 29 + 211 + 111 + + + + person without helmet + Unspecified + 1 + 0 + + 219 + 8 + 295 + 151 + + + diff --git a/train_annot_folder/person_without_helmet (243).xml b/train_annot_folder/person_without_helmet (243).xml new file mode 100644 index 000000000..b794aea9b --- /dev/null +++ b/train_annot_folder/person_without_helmet (243).xml @@ -0,0 +1,98 @@ + + person_without_helmet + person_without_helmet (243).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (243).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 17 + 77 + 45 + 104 + + + + person without helmet + Unspecified + 0 + 0 + + 42 + 86 + 60 + 116 + + + + person without helmet + Unspecified + 0 + 0 + + 156 + 89 + 187 + 122 + + + + person without helmet + Unspecified + 0 + 0 + + 206 + 73 + 228 + 96 + + + + person without helmet + Unspecified + 0 + 0 + + 223 + 90 + 248 + 120 + + + + person without helmet + Unspecified + 0 + 0 + + 69 + 81 + 83 + 93 + + + + person without helmet + Unspecified + 0 + 0 + + 84 + 80 + 94 + 90 + + + diff --git a/train_annot_folder/person_without_helmet (244).xml b/train_annot_folder/person_without_helmet (244).xml new file mode 100644 index 000000000..150cb0d81 --- /dev/null +++ b/train_annot_folder/person_without_helmet (244).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (244).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (244).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 119 + 85 + 194 + 179 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 57 + 71 + 187 + + + diff --git a/train_annot_folder/person_without_helmet (245).xml b/train_annot_folder/person_without_helmet (245).xml new file mode 100644 index 000000000..052148a2b --- /dev/null +++ b/train_annot_folder/person_without_helmet (245).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (245).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (245).jpg + + Unknown + + + 200 + 261 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 74 + 100 + 136 + 186 + + + diff --git a/train_annot_folder/person_without_helmet (246).xml b/train_annot_folder/person_without_helmet (246).xml new file mode 100644 index 000000000..d0f59be4a --- /dev/null +++ b/train_annot_folder/person_without_helmet (246).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (246).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (246).jpg + + Unknown + + + 202 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 13 + 28 + 100 + 179 + + + diff --git a/train_annot_folder/person_without_helmet (247).xml b/train_annot_folder/person_without_helmet (247).xml new file mode 100644 index 000000000..07c222c04 --- /dev/null +++ b/train_annot_folder/person_without_helmet (247).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (247).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (247).jpg + + Unknown + + + 320 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 104 + 17 + 255 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (248).xml b/train_annot_folder/person_without_helmet (248).xml new file mode 100644 index 000000000..3c8db9b3c --- /dev/null +++ b/train_annot_folder/person_without_helmet (248).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (248).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (248).jpg + + Unknown + + + 302 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 76 + 5 + 246 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (249).xml b/train_annot_folder/person_without_helmet (249).xml new file mode 100644 index 000000000..d11738395 --- /dev/null +++ b/train_annot_folder/person_without_helmet (249).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (249).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (249).jpg + + Unknown + + + 275 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 35 + 34 + 130 + 180 + + + diff --git a/train_annot_folder/person_without_helmet (250).xml b/train_annot_folder/person_without_helmet (250).xml new file mode 100644 index 000000000..4f27b5e1c --- /dev/null +++ b/train_annot_folder/person_without_helmet (250).xml @@ -0,0 +1,86 @@ + + person_without_helmet + person_without_helmet (250).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (250).jpg + + Unknown + + + 318 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 129 + 50 + 196 + 176 + + + + person without helmet + Unspecified + 0 + 0 + + 218 + 66 + 261 + 124 + + + + person without helmet + Unspecified + 1 + 0 + + 248 + 65 + 318 + 170 + + + + person without helmet + Unspecified + 0 + 0 + + 2 + 48 + 39 + 107 + + + + person without helmet + Unspecified + 0 + 0 + + 21 + 80 + 111 + 196 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 81 + 28 + 161 + + + diff --git a/train_annot_folder/person_without_helmet (251).xml b/train_annot_folder/person_without_helmet (251).xml new file mode 100644 index 000000000..0fd79bbbc --- /dev/null +++ b/train_annot_folder/person_without_helmet (251).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (251).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (251).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 88 + 44 + 197 + 228 + + + diff --git a/train_annot_folder/person_without_helmet (252).xml b/train_annot_folder/person_without_helmet (252).xml new file mode 100644 index 000000000..50fd71a34 --- /dev/null +++ b/train_annot_folder/person_without_helmet (252).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (252).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (252).jpg + + Unknown + + + 334 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 53 + 74 + 135 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 181 + 135 + 223 + 183 + + + + person without helmet + Unspecified + 0 + 0 + + 221 + 141 + 262 + 181 + + + diff --git a/train_annot_folder/person_without_helmet (253).xml b/train_annot_folder/person_without_helmet (253).xml new file mode 100644 index 000000000..2ac265997 --- /dev/null +++ b/train_annot_folder/person_without_helmet (253).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (253).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (253).jpg + + Unknown + + + 224 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 92 + 40 + 175 + 165 + + + diff --git a/train_annot_folder/person_without_helmet (254).xml b/train_annot_folder/person_without_helmet (254).xml new file mode 100644 index 000000000..eb7e473de --- /dev/null +++ b/train_annot_folder/person_without_helmet (254).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (254).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (254).jpg + + Unknown + + + 200 + 425 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 50 + 107 + 192 + 358 + + + diff --git a/train_annot_folder/person_without_helmet (255).xml b/train_annot_folder/person_without_helmet (255).xml new file mode 100644 index 000000000..8ef688638 --- /dev/null +++ b/train_annot_folder/person_without_helmet (255).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (255).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (255).jpg + + Unknown + + + 200 + 294 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 55 + 9 + 165 + 257 + + + diff --git a/train_annot_folder/person_without_helmet (256).xml b/train_annot_folder/person_without_helmet (256).xml new file mode 100644 index 000000000..48bfb9565 --- /dev/null +++ b/train_annot_folder/person_without_helmet (256).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (256).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (256).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 137 + 29 + 208 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 121 + 31 + 240 + 193 + + + diff --git a/train_annot_folder/person_without_helmet (257).xml b/train_annot_folder/person_without_helmet (257).xml new file mode 100644 index 000000000..e0158e795 --- /dev/null +++ b/train_annot_folder/person_without_helmet (257).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (257).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (257).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 133 + 46 + 200 + 182 + + + diff --git a/train_annot_folder/person_without_helmet (258).xml b/train_annot_folder/person_without_helmet (258).xml new file mode 100644 index 000000000..c40398ff5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (258).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (258).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (258).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 113 + 86 + 151 + 199 + + + diff --git a/train_annot_folder/person_without_helmet (259).xml b/train_annot_folder/person_without_helmet (259).xml new file mode 100644 index 000000000..b4c52727d --- /dev/null +++ b/train_annot_folder/person_without_helmet (259).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (259).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (259).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 89 + 20 + 175 + 178 + + + diff --git a/train_annot_folder/person_without_helmet (260).xml b/train_annot_folder/person_without_helmet (260).xml new file mode 100644 index 000000000..0f4b81b8c --- /dev/null +++ b/train_annot_folder/person_without_helmet (260).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (260).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (260).jpg + + Unknown + + + 233 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 170 + 87 + 219 + 190 + + + diff --git a/train_annot_folder/person_without_helmet (261).xml b/train_annot_folder/person_without_helmet (261).xml new file mode 100644 index 000000000..7429e1d4a --- /dev/null +++ b/train_annot_folder/person_without_helmet (261).xml @@ -0,0 +1,50 @@ + + person_without_helmet + person_without_helmet (261).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (261).jpg + + Unknown + + + 307 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 18 + 44 + 91 + 164 + + + + person without helmet + Unspecified + 0 + 0 + + 67 + 13 + 94 + 40 + + + + person without helmet + Unspecified + 0 + 0 + + 60 + 35 + 86 + 60 + + + diff --git a/train_annot_folder/person_without_helmet (262).xml b/train_annot_folder/person_without_helmet (262).xml new file mode 100644 index 000000000..82e46f437 --- /dev/null +++ b/train_annot_folder/person_without_helmet (262).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (262).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (262).jpg + + Unknown + + + 200 + 207 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 55 + 72 + 132 + 207 + + + + person without helmet + Unspecified + 0 + 0 + + 15 + 5 + 76 + 83 + + + diff --git a/train_annot_folder/person_without_helmet (263).xml b/train_annot_folder/person_without_helmet (263).xml new file mode 100644 index 000000000..4494b0ae8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (263).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (263).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (263).jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 72 + 105 + 162 + 300 + + + diff --git a/train_annot_folder/person_without_helmet (264).xml b/train_annot_folder/person_without_helmet (264).xml new file mode 100644 index 000000000..eadcf3c4a --- /dev/null +++ b/train_annot_folder/person_without_helmet (264).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (264).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (264).jpg + + Unknown + + + 395 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 85 + 10 + 216 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (265).xml b/train_annot_folder/person_without_helmet (265).xml new file mode 100644 index 000000000..d44e2f803 --- /dev/null +++ b/train_annot_folder/person_without_helmet (265).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (265).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (265).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 6 + 12 + 120 + 187 + + + diff --git a/train_annot_folder/person_without_helmet (266).xml b/train_annot_folder/person_without_helmet (266).xml new file mode 100644 index 000000000..95b7cc8c3 --- /dev/null +++ b/train_annot_folder/person_without_helmet (266).xml @@ -0,0 +1,86 @@ + + person_without_helmet + person_without_helmet (266).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (266).jpg + + Unknown + + + 334 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 199 + 45 + 242 + 107 + + + + person without helmet + Unspecified + 0 + 0 + + 201 + 105 + 258 + 165 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 141 + 47 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 248 + 163 + 298 + 182 + + + + person without helmet + Unspecified + 0 + 0 + + 243 + 177 + 309 + 199 + + + + person without helmet + Unspecified + 0 + 0 + + 35 + 137 + 86 + 174 + + + diff --git a/train_annot_folder/person_without_helmet (267).xml b/train_annot_folder/person_without_helmet (267).xml new file mode 100644 index 000000000..180135c93 --- /dev/null +++ b/train_annot_folder/person_without_helmet (267).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (267).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (267).jpg + + Unknown + + + 200 + 264 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 46 + 151 + 111 + 264 + + + diff --git a/train_annot_folder/person_without_helmet (268).xml b/train_annot_folder/person_without_helmet (268).xml new file mode 100644 index 000000000..8fb38e404 --- /dev/null +++ b/train_annot_folder/person_without_helmet (268).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (268).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (268).jpg + + Unknown + + + 335 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 99 + 21 + 196 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (269).xml b/train_annot_folder/person_without_helmet (269).xml new file mode 100644 index 000000000..2467ee959 --- /dev/null +++ b/train_annot_folder/person_without_helmet (269).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (269).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (269).jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 9 + 50 + 166 + 282 + + + diff --git a/train_annot_folder/person_without_helmet (270).xml b/train_annot_folder/person_without_helmet (270).xml new file mode 100644 index 000000000..a85eb5d41 --- /dev/null +++ b/train_annot_folder/person_without_helmet (270).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (270).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (270).jpg + + Unknown + + + 207 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 45 + 23 + 127 + 122 + + + diff --git a/train_annot_folder/person_without_helmet (271).xml b/train_annot_folder/person_without_helmet (271).xml new file mode 100644 index 000000000..12d138b8d --- /dev/null +++ b/train_annot_folder/person_without_helmet (271).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (271).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (271).jpg + + Unknown + + + 200 + 387 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 98 + 98 + 200 + 376 + + + diff --git a/train_annot_folder/person_without_helmet (272).xml b/train_annot_folder/person_without_helmet (272).xml new file mode 100644 index 000000000..1eef4fba0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (272).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (272).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (272).jpg + + Unknown + + + 200 + 224 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 93 + 66 + 156 + 218 + + + + person without helmet + Unspecified + 1 + 0 + + 148 + 14 + 200 + 104 + + + diff --git a/train_annot_folder/person_without_helmet (273).xml b/train_annot_folder/person_without_helmet (273).xml new file mode 100644 index 000000000..e35ed7bd6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (273).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (273).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (273).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 15 + 7 + 122 + 185 + + + diff --git a/train_annot_folder/person_without_helmet (274).xml b/train_annot_folder/person_without_helmet (274).xml new file mode 100644 index 000000000..b5124aea4 --- /dev/null +++ b/train_annot_folder/person_without_helmet (274).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (274).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (274).jpg + + Unknown + + + 240 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 23 + 42 + 87 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (275).xml b/train_annot_folder/person_without_helmet (275).xml new file mode 100644 index 000000000..6d82115dd --- /dev/null +++ b/train_annot_folder/person_without_helmet (275).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (275).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (275).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 10 + 28 + 88 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (276).xml b/train_annot_folder/person_without_helmet (276).xml new file mode 100644 index 000000000..be875c4d9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (276).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (276).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (276).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 38 + 52 + 107 + 194 + + + diff --git a/train_annot_folder/person_without_helmet (277).xml b/train_annot_folder/person_without_helmet (277).xml new file mode 100644 index 000000000..0c318a6b2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (277).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (277).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (277).jpg + + Unknown + + + 263 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 159 + 45 + 260 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (278).xml b/train_annot_folder/person_without_helmet (278).xml new file mode 100644 index 000000000..a8e1edbba --- /dev/null +++ b/train_annot_folder/person_without_helmet (278).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (278).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (278).jpg + + Unknown + + + 251 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 2 + 32 + 109 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 165 + 46 + 210 + 149 + + + diff --git a/train_annot_folder/person_without_helmet (279).xml b/train_annot_folder/person_without_helmet (279).xml new file mode 100644 index 000000000..56f03bd4e --- /dev/null +++ b/train_annot_folder/person_without_helmet (279).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (279).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (279).jpg + + Unknown + + + 200 + 204 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 116 + 53 + 174 + 204 + + + diff --git a/train_annot_folder/person_without_helmet (280).xml b/train_annot_folder/person_without_helmet (280).xml new file mode 100644 index 000000000..49d649e03 --- /dev/null +++ b/train_annot_folder/person_without_helmet (280).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (280).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (280).jpg + + Unknown + + + 200 + 233 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 12 + 22 + 104 + 221 + + + diff --git a/train_annot_folder/person_without_helmet (281).xml b/train_annot_folder/person_without_helmet (281).xml new file mode 100644 index 000000000..a1318aeed --- /dev/null +++ b/train_annot_folder/person_without_helmet (281).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (281).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (281).jpg + + Unknown + + + 334 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 90 + 54 + 171 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (282).xml b/train_annot_folder/person_without_helmet (282).xml new file mode 100644 index 000000000..a0fb5f054 --- /dev/null +++ b/train_annot_folder/person_without_helmet (282).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (282).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (282).jpg + + Unknown + + + 300 + 386 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 17 + 14 + 113 + 359 + + + diff --git a/train_annot_folder/person_without_helmet (283).xml b/train_annot_folder/person_without_helmet (283).xml new file mode 100644 index 000000000..9d9dd08c5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (283).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (283).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (283).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 161 + 58 + 252 + 198 + + + diff --git a/train_annot_folder/person_without_helmet (284).xml b/train_annot_folder/person_without_helmet (284).xml new file mode 100644 index 000000000..82defe681 --- /dev/null +++ b/train_annot_folder/person_without_helmet (284).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (284).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (284).jpg + + Unknown + + + 200 + 305 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 59 + 112 + 182 + 263 + + + + person without helmet + Unspecified + 0 + 0 + + 93 + 25 + 177 + 117 + + + diff --git a/train_annot_folder/person_without_helmet (285).xml b/train_annot_folder/person_without_helmet (285).xml new file mode 100644 index 000000000..2d20669df --- /dev/null +++ b/train_annot_folder/person_without_helmet (285).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (285).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (285).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 99 + 20 + 272 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (286).xml b/train_annot_folder/person_without_helmet (286).xml new file mode 100644 index 000000000..fc62732ae --- /dev/null +++ b/train_annot_folder/person_without_helmet (286).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (286).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (286).jpg + + Unknown + + + 200 + 201 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 35 + 1 + 130 + 98 + + + diff --git a/train_annot_folder/person_without_helmet (287).xml b/train_annot_folder/person_without_helmet (287).xml new file mode 100644 index 000000000..999057d72 --- /dev/null +++ b/train_annot_folder/person_without_helmet (287).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (287).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (287).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 23 + 11 + 141 + 142 + + + diff --git a/train_annot_folder/person_without_helmet (288).xml b/train_annot_folder/person_without_helmet (288).xml new file mode 100644 index 000000000..52d160fd2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (288).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (288).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (288).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 141 + 8 + 250 + 120 + + + diff --git a/train_annot_folder/person_without_helmet (289).xml b/train_annot_folder/person_without_helmet (289).xml new file mode 100644 index 000000000..d31e40c64 --- /dev/null +++ b/train_annot_folder/person_without_helmet (289).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (289).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (289).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 64 + 47 + 124 + 119 + + + diff --git a/train_annot_folder/person_without_helmet (290).xml b/train_annot_folder/person_without_helmet (290).xml new file mode 100644 index 000000000..c0979516d --- /dev/null +++ b/train_annot_folder/person_without_helmet (290).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (290).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (290).jpg + + Unknown + + + 283 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 107 + 2 + 198 + 97 + + + diff --git a/train_annot_folder/person_without_helmet (291).xml b/train_annot_folder/person_without_helmet (291).xml new file mode 100644 index 000000000..35226de22 --- /dev/null +++ b/train_annot_folder/person_without_helmet (291).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (291).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (291).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 31 + 11 + 190 + 128 + + + diff --git a/train_annot_folder/person_without_helmet (292).xml b/train_annot_folder/person_without_helmet (292).xml new file mode 100644 index 000000000..964b37351 --- /dev/null +++ b/train_annot_folder/person_without_helmet (292).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (292).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (292).jpg + + Unknown + + + 268 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 28 + 38 + 122 + 147 + + + + person without helmet + Unspecified + 0 + 0 + + 174 + 2 + 261 + 181 + + + diff --git a/train_annot_folder/person_without_helmet (293).xml b/train_annot_folder/person_without_helmet (293).xml new file mode 100644 index 000000000..20fe095c0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (293).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (293).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (293).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 12 + 14 + 111 + 143 + + + diff --git a/train_annot_folder/person_without_helmet (294).xml b/train_annot_folder/person_without_helmet (294).xml new file mode 100644 index 000000000..9030edbc2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (294).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (294).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (294).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 33 + 2 + 134 + 108 + + + diff --git a/train_annot_folder/person_without_helmet (295).xml b/train_annot_folder/person_without_helmet (295).xml new file mode 100644 index 000000000..41f2aa2c9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (295).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (295).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (295).jpg + + Unknown + + + 280 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 120 + 8 + 218 + 176 + + + diff --git a/train_annot_folder/person_without_helmet (296).xml b/train_annot_folder/person_without_helmet (296).xml new file mode 100644 index 000000000..8f83f1bc8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (296).xml @@ -0,0 +1,38 @@ + + person_without_helmet + person_without_helmet (296).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (296).jpg + + Unknown + + + 269 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 136 + 14 + 257 + 191 + + + + person without helmet + Unspecified + 0 + 0 + + 13 + 36 + 69 + 100 + + + diff --git a/train_annot_folder/person_without_helmet (297).xml b/train_annot_folder/person_without_helmet (297).xml new file mode 100644 index 000000000..a79f0ed0d --- /dev/null +++ b/train_annot_folder/person_without_helmet (297).xml @@ -0,0 +1,26 @@ + + person_without_helmet + person_without_helmet (297).jpg + C:\Users\nasir.shah\Desktop\person_without_helmet\person_without_helmet (297).jpg + + Unknown + + + 238 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 73 + 2 + 205 + 137 + + + diff --git a/train_annot_folder/person_without_helmet (3).xml b/train_annot_folder/person_without_helmet (3).xml new file mode 100644 index 000000000..e4692d474 --- /dev/null +++ b/train_annot_folder/person_without_helmet (3).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (3).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (3).jpg + + Unknown + + + 200 + 283 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 37 + 8 + 162 + 283 + + + diff --git a/train_annot_folder/person_without_helmet (30).xml b/train_annot_folder/person_without_helmet (30).xml new file mode 100644 index 000000000..8e74dc558 --- /dev/null +++ b/train_annot_folder/person_without_helmet (30).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (30).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (30).jpg + + Unknown + + + 200 + 247 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 75 + 50 + 154 + 148 + + + diff --git a/train_annot_folder/person_without_helmet (31).xml b/train_annot_folder/person_without_helmet (31).xml new file mode 100644 index 000000000..4d4723008 --- /dev/null +++ b/train_annot_folder/person_without_helmet (31).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (31).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (31).jpg + + Unknown + + + 200 + 253 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 40 + 8 + 106 + 233 + + + diff --git a/train_annot_folder/person_without_helmet (32).xml b/train_annot_folder/person_without_helmet (32).xml new file mode 100644 index 000000000..7011e5138 --- /dev/null +++ b/train_annot_folder/person_without_helmet (32).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (32).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (32).jpg + + Unknown + + + 356 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 181 + 8 + 240 + 155 + + + diff --git a/train_annot_folder/person_without_helmet (33).xml b/train_annot_folder/person_without_helmet (33).xml new file mode 100644 index 000000000..c9c89f37d --- /dev/null +++ b/train_annot_folder/person_without_helmet (33).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (33).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (33).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 58 + 1 + 103 + 168 + + + diff --git a/train_annot_folder/person_without_helmet (34).xml b/train_annot_folder/person_without_helmet (34).xml new file mode 100644 index 000000000..5e9df3e52 --- /dev/null +++ b/train_annot_folder/person_without_helmet (34).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (34).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (34).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 122 + 46 + 167 + 188 + + + diff --git a/train_annot_folder/person_without_helmet (35).xml b/train_annot_folder/person_without_helmet (35).xml new file mode 100644 index 000000000..0d509cb5d --- /dev/null +++ b/train_annot_folder/person_without_helmet (35).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (35).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (35).jpg + + Unknown + + + 200 + 298 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 51 + 5 + 191 + 298 + + + diff --git a/train_annot_folder/person_without_helmet (36).xml b/train_annot_folder/person_without_helmet (36).xml new file mode 100644 index 000000000..c73b3fffe --- /dev/null +++ b/train_annot_folder/person_without_helmet (36).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (36).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (36).jpg + + Unknown + + + 300 + 354 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 23 + 80 + 112 + 289 + + + diff --git a/train_annot_folder/person_without_helmet (37).xml b/train_annot_folder/person_without_helmet (37).xml new file mode 100644 index 000000000..32edfe0cd --- /dev/null +++ b/train_annot_folder/person_without_helmet (37).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (37).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (37).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 161 + 37 + 209 + 164 + + + diff --git a/train_annot_folder/person_without_helmet (38).xml b/train_annot_folder/person_without_helmet (38).xml new file mode 100644 index 000000000..f428a5f42 --- /dev/null +++ b/train_annot_folder/person_without_helmet (38).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (38).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (38).jpg + + Unknown + + + 450 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 121 + 69 + 325 + 259 + + + diff --git a/train_annot_folder/person_without_helmet (39).xml b/train_annot_folder/person_without_helmet (39).xml new file mode 100644 index 000000000..f916477fb --- /dev/null +++ b/train_annot_folder/person_without_helmet (39).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (39).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (39).jpg + + Unknown + + + 200 + 256 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 39 + 1 + 136 + 222 + + + diff --git a/train_annot_folder/person_without_helmet (4).xml b/train_annot_folder/person_without_helmet (4).xml new file mode 100644 index 000000000..2132dbed1 --- /dev/null +++ b/train_annot_folder/person_without_helmet (4).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (4).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (4).jpg + + Unknown + + + 268 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 58 + 7 + 162 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (40).xml b/train_annot_folder/person_without_helmet (40).xml new file mode 100644 index 000000000..1afc5f248 --- /dev/null +++ b/train_annot_folder/person_without_helmet (40).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (40).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (40).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 11 + 6 + 82 + 190 + + + diff --git a/train_annot_folder/person_without_helmet (41).xml b/train_annot_folder/person_without_helmet (41).xml new file mode 100644 index 000000000..50b7e7168 --- /dev/null +++ b/train_annot_folder/person_without_helmet (41).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (41).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (41).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 110 + 23 + 151 + 166 + + + diff --git a/train_annot_folder/person_without_helmet (42).xml b/train_annot_folder/person_without_helmet (42).xml new file mode 100644 index 000000000..8ba94ea27 --- /dev/null +++ b/train_annot_folder/person_without_helmet (42).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (42).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (42).jpg + + Unknown + + + 200 + 264 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 105 + 76 + 192 + 233 + + + diff --git a/train_annot_folder/person_without_helmet (43).xml b/train_annot_folder/person_without_helmet (43).xml new file mode 100644 index 000000000..d66b781df --- /dev/null +++ b/train_annot_folder/person_without_helmet (43).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (43).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (43).jpg + + Unknown + + + 200 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 46 + 10 + 138 + 205 + + + diff --git a/train_annot_folder/person_without_helmet (44).xml b/train_annot_folder/person_without_helmet (44).xml new file mode 100644 index 000000000..de61e0f4d --- /dev/null +++ b/train_annot_folder/person_without_helmet (44).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (44).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (44).jpg + + Unknown + + + 200 + 233 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 59 + 54 + 114 + 229 + + + diff --git a/train_annot_folder/person_without_helmet (45).xml b/train_annot_folder/person_without_helmet (45).xml new file mode 100644 index 000000000..9ec43e5dc --- /dev/null +++ b/train_annot_folder/person_without_helmet (45).xml @@ -0,0 +1,38 @@ + + non_workers + person_without_helmet (45).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (45).jpg + + Unknown + + + 284 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 158 + 76 + 199 + 162 + + + + person without helmet + Unspecified + 0 + 0 + + 102 + 79 + 138 + 155 + + + diff --git a/train_annot_folder/person_without_helmet (46).xml b/train_annot_folder/person_without_helmet (46).xml new file mode 100644 index 000000000..a9b26727f --- /dev/null +++ b/train_annot_folder/person_without_helmet (46).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (46).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (46).jpg + + Unknown + + + 200 + 224 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 57 + 47 + 132 + 221 + + + diff --git a/train_annot_folder/person_without_helmet (47).xml b/train_annot_folder/person_without_helmet (47).xml new file mode 100644 index 000000000..a5d39147d --- /dev/null +++ b/train_annot_folder/person_without_helmet (47).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (47).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (47).jpg + + Unknown + + + 200 + 251 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 112 + 16 + 179 + 226 + + + diff --git a/train_annot_folder/person_without_helmet (48).xml b/train_annot_folder/person_without_helmet (48).xml new file mode 100644 index 000000000..b30b7d6ae --- /dev/null +++ b/train_annot_folder/person_without_helmet (48).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (48).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (48).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 44 + 31 + 128 + 176 + + + diff --git a/train_annot_folder/person_without_helmet (49).xml b/train_annot_folder/person_without_helmet (49).xml new file mode 100644 index 000000000..6c3fa2687 --- /dev/null +++ b/train_annot_folder/person_without_helmet (49).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (49).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (49).jpg + + Unknown + + + 200 + 305 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 104 + 36 + 178 + 251 + + + diff --git a/train_annot_folder/person_without_helmet (5).xml b/train_annot_folder/person_without_helmet (5).xml new file mode 100644 index 000000000..9376d25c5 --- /dev/null +++ b/train_annot_folder/person_without_helmet (5).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (5).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (5).jpg + + Unknown + + + 200 + 290 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 16 + 37 + 200 + 245 + + + diff --git a/train_annot_folder/person_without_helmet (50).xml b/train_annot_folder/person_without_helmet (50).xml new file mode 100644 index 000000000..3c9639394 --- /dev/null +++ b/train_annot_folder/person_without_helmet (50).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (50).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (50).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 79 + 32 + 222 + 191 + + + diff --git a/train_annot_folder/person_without_helmet (51).xml b/train_annot_folder/person_without_helmet (51).xml new file mode 100644 index 000000000..c86f7cf64 --- /dev/null +++ b/train_annot_folder/person_without_helmet (51).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (51).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (51).jpg + + Unknown + + + 200 + 301 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 68 + 5 + 159 + 241 + + + diff --git a/train_annot_folder/person_without_helmet (52).xml b/train_annot_folder/person_without_helmet (52).xml new file mode 100644 index 000000000..767ffa4bc --- /dev/null +++ b/train_annot_folder/person_without_helmet (52).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (52).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (52).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 48 + 23 + 150 + 227 + + + diff --git a/train_annot_folder/person_without_helmet (53).xml b/train_annot_folder/person_without_helmet (53).xml new file mode 100644 index 000000000..8416e2da2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (53).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (53).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (53).jpg + + Unknown + + + 200 + 281 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 32 + 15 + 95 + 211 + + + diff --git a/train_annot_folder/person_without_helmet (54).xml b/train_annot_folder/person_without_helmet (54).xml new file mode 100644 index 000000000..9ae3c9b03 --- /dev/null +++ b/train_annot_folder/person_without_helmet (54).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (54).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (54).jpg + + Unknown + + + 200 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 62 + 9 + 141 + 263 + + + diff --git a/train_annot_folder/person_without_helmet (55).xml b/train_annot_folder/person_without_helmet (55).xml new file mode 100644 index 000000000..210e51970 --- /dev/null +++ b/train_annot_folder/person_without_helmet (55).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (55).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (55).jpg + + Unknown + + + 200 + 249 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 69 + 99 + 135 + 219 + + + diff --git a/train_annot_folder/person_without_helmet (56).xml b/train_annot_folder/person_without_helmet (56).xml new file mode 100644 index 000000000..19db755d8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (56).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (56).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (56).jpg + + Unknown + + + 226 + 201 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 54 + 45 + 149 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (57).xml b/train_annot_folder/person_without_helmet (57).xml new file mode 100644 index 000000000..7e7ce7770 --- /dev/null +++ b/train_annot_folder/person_without_helmet (57).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (57).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (57).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 173 + 32 + 252 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (58).xml b/train_annot_folder/person_without_helmet (58).xml new file mode 100644 index 000000000..6b1adccc7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (58).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (58).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (58).jpg + + Unknown + + + 217 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 43 + 1 + 137 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (59).xml b/train_annot_folder/person_without_helmet (59).xml new file mode 100644 index 000000000..505cd9f66 --- /dev/null +++ b/train_annot_folder/person_without_helmet (59).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (59).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (59).jpg + + Unknown + + + 200 + 253 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 96 + 14 + 200 + 197 + + + diff --git a/train_annot_folder/person_without_helmet (6).xml b/train_annot_folder/person_without_helmet (6).xml new file mode 100644 index 000000000..423afa44c --- /dev/null +++ b/train_annot_folder/person_without_helmet (6).xml @@ -0,0 +1,50 @@ + + non_workers + person_without_helmet (6).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (6).jpg + + Unknown + + + 259 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 11 + 64 + 79 + 199 + + + + person without helmet + Unspecified + 1 + 0 + + 94 + 13 + 186 + 200 + + + + person without helmet + Unspecified + 0 + 0 + + 180 + 52 + 235 + 182 + + + diff --git a/train_annot_folder/person_without_helmet (60).xml b/train_annot_folder/person_without_helmet (60).xml new file mode 100644 index 000000000..248997813 --- /dev/null +++ b/train_annot_folder/person_without_helmet (60).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (60).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (60).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 183 + 1 + 267 + 166 + + + diff --git a/train_annot_folder/person_without_helmet (61).xml b/train_annot_folder/person_without_helmet (61).xml new file mode 100644 index 000000000..02e01e251 --- /dev/null +++ b/train_annot_folder/person_without_helmet (61).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (61).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (61).jpg + + Unknown + + + 200 + 273 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 16 + 1 + 179 + 223 + + + diff --git a/train_annot_folder/person_without_helmet (62).xml b/train_annot_folder/person_without_helmet (62).xml new file mode 100644 index 000000000..d648dbdae --- /dev/null +++ b/train_annot_folder/person_without_helmet (62).xml @@ -0,0 +1,38 @@ + + non_workers + person_without_helmet (62).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (62).jpg + + Unknown + + + 356 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 110 + 28 + 193 + 148 + + + + person without helmet + Unspecified + 0 + 0 + + 210 + 21 + 292 + 162 + + + diff --git a/train_annot_folder/person_without_helmet (63).xml b/train_annot_folder/person_without_helmet (63).xml new file mode 100644 index 000000000..cc0ada26e --- /dev/null +++ b/train_annot_folder/person_without_helmet (63).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (63).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (63).jpg + + Unknown + + + 200 + 255 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 90 + 10 + 191 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (64).xml b/train_annot_folder/person_without_helmet (64).xml new file mode 100644 index 000000000..2f454adc3 --- /dev/null +++ b/train_annot_folder/person_without_helmet (64).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (64).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (64).jpg + + Unknown + + + 303 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 64 + 7 + 248 + 169 + + + diff --git a/train_annot_folder/person_without_helmet (65).xml b/train_annot_folder/person_without_helmet (65).xml new file mode 100644 index 000000000..d16807076 --- /dev/null +++ b/train_annot_folder/person_without_helmet (65).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (65).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (65).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 38 + 11 + 195 + 177 + + + diff --git a/train_annot_folder/person_without_helmet (66).xml b/train_annot_folder/person_without_helmet (66).xml new file mode 100644 index 000000000..40e98ca99 --- /dev/null +++ b/train_annot_folder/person_without_helmet (66).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (66).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (66).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 85 + 14 + 182 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (67).xml b/train_annot_folder/person_without_helmet (67).xml new file mode 100644 index 000000000..f52bbc0ca --- /dev/null +++ b/train_annot_folder/person_without_helmet (67).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (67).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (67).jpg + + Unknown + + + 304 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 34 + 44 + 146 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (68).xml b/train_annot_folder/person_without_helmet (68).xml new file mode 100644 index 000000000..99876a5f7 --- /dev/null +++ b/train_annot_folder/person_without_helmet (68).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (68).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (68).jpg + + Unknown + + + 269 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 39 + 8 + 170 + 170 + + + diff --git a/train_annot_folder/person_without_helmet (69).xml b/train_annot_folder/person_without_helmet (69).xml new file mode 100644 index 000000000..ac52bde06 --- /dev/null +++ b/train_annot_folder/person_without_helmet (69).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (69).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (69).jpg + + Unknown + + + 200 + 205 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 51 + 12 + 138 + 195 + + + diff --git a/train_annot_folder/person_without_helmet (7).xml b/train_annot_folder/person_without_helmet (7).xml new file mode 100644 index 000000000..4c56a259f --- /dev/null +++ b/train_annot_folder/person_without_helmet (7).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (7).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (7).jpg + + Unknown + + + 280 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 32 + 17 + 198 + 198 + + + diff --git a/train_annot_folder/person_without_helmet (70).xml b/train_annot_folder/person_without_helmet (70).xml new file mode 100644 index 000000000..c166b6bbe --- /dev/null +++ b/train_annot_folder/person_without_helmet (70).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (70).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (70).jpg + + Unknown + + + 320 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 116 + 1 + 299 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (71).xml b/train_annot_folder/person_without_helmet (71).xml new file mode 100644 index 000000000..692247ff6 --- /dev/null +++ b/train_annot_folder/person_without_helmet (71).xml @@ -0,0 +1,38 @@ + + non_workers + person_without_helmet (71).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (71).jpg + + Unknown + + + 350 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 232 + 99 + 287 + 200 + + + + person without helmet + Unspecified + 1 + 0 + + 283 + 78 + 325 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (72).xml b/train_annot_folder/person_without_helmet (72).xml new file mode 100644 index 000000000..83b22e21f --- /dev/null +++ b/train_annot_folder/person_without_helmet (72).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (72).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (72).jpg + + Unknown + + + 237 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 142 + 54 + 231 + 165 + + + diff --git a/train_annot_folder/person_without_helmet (73).xml b/train_annot_folder/person_without_helmet (73).xml new file mode 100644 index 000000000..175fa90a8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (73).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (73).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (73).jpg + + Unknown + + + 201 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 56 + 114 + 96 + 181 + + + diff --git a/train_annot_folder/person_without_helmet (74).xml b/train_annot_folder/person_without_helmet (74).xml new file mode 100644 index 000000000..8d44c9bf3 --- /dev/null +++ b/train_annot_folder/person_without_helmet (74).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (74).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (74).jpg + + Unknown + + + 393 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 35 + 39 + 120 + 294 + + + diff --git a/train_annot_folder/person_without_helmet (75).xml b/train_annot_folder/person_without_helmet (75).xml new file mode 100644 index 000000000..0721691d9 --- /dev/null +++ b/train_annot_folder/person_without_helmet (75).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (75).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (75).jpg + + Unknown + + + 251 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 153 + 77 + 199 + 172 + + + diff --git a/train_annot_folder/person_without_helmet (76).xml b/train_annot_folder/person_without_helmet (76).xml new file mode 100644 index 000000000..ebd557225 --- /dev/null +++ b/train_annot_folder/person_without_helmet (76).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (76).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (76).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 157 + 29 + 225 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (77).xml b/train_annot_folder/person_without_helmet (77).xml new file mode 100644 index 000000000..94efa5d3f --- /dev/null +++ b/train_annot_folder/person_without_helmet (77).xml @@ -0,0 +1,38 @@ + + non_workers + person_without_helmet (77).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (77).jpg + + Unknown + + + 215 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 55 + 100 + 72 + 151 + + + + person without helmet + Unspecified + 0 + 0 + + 42 + 75 + 64 + 143 + + + diff --git a/train_annot_folder/person_without_helmet (78).xml b/train_annot_folder/person_without_helmet (78).xml new file mode 100644 index 000000000..9051cf110 --- /dev/null +++ b/train_annot_folder/person_without_helmet (78).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (78).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (78).jpg + + Unknown + + + 336 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 222 + 57 + 301 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (79).xml b/train_annot_folder/person_without_helmet (79).xml new file mode 100644 index 000000000..91b5a8f9d --- /dev/null +++ b/train_annot_folder/person_without_helmet (79).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (79).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (79).jpg + + Unknown + + + 200 + 301 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 45 + 120 + 97 + 196 + + + diff --git a/train_annot_folder/person_without_helmet (8).xml b/train_annot_folder/person_without_helmet (8).xml new file mode 100644 index 000000000..53980084a --- /dev/null +++ b/train_annot_folder/person_without_helmet (8).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (8).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (8).jpg + + Unknown + + + 300 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 10 + 2 + 131 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (80).xml b/train_annot_folder/person_without_helmet (80).xml new file mode 100644 index 000000000..44c4e1eb8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (80).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (80).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (80).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 164 + 40 + 224 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (81).xml b/train_annot_folder/person_without_helmet (81).xml new file mode 100644 index 000000000..da4fd041b --- /dev/null +++ b/train_annot_folder/person_without_helmet (81).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (81).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (81).jpg + + Unknown + + + 245 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 6 + 21 + 107 + 193 + + + diff --git a/train_annot_folder/person_without_helmet (82).xml b/train_annot_folder/person_without_helmet (82).xml new file mode 100644 index 000000000..4be1bb1c8 --- /dev/null +++ b/train_annot_folder/person_without_helmet (82).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (82).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (82).jpg + + Unknown + + + 200 + 233 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 18 + 1 + 93 + 145 + + + diff --git a/train_annot_folder/person_without_helmet (83).xml b/train_annot_folder/person_without_helmet (83).xml new file mode 100644 index 000000000..e3f47b6ab --- /dev/null +++ b/train_annot_folder/person_without_helmet (83).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (83).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (83).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 3 + 25 + 101 + 166 + + + diff --git a/train_annot_folder/person_without_helmet (84).xml b/train_annot_folder/person_without_helmet (84).xml new file mode 100644 index 000000000..e658c5f70 --- /dev/null +++ b/train_annot_folder/person_without_helmet (84).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (84).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (84).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 58 + 17 + 181 + 161 + + + diff --git a/train_annot_folder/person_without_helmet (85).xml b/train_annot_folder/person_without_helmet (85).xml new file mode 100644 index 000000000..fd6ad47ca --- /dev/null +++ b/train_annot_folder/person_without_helmet (85).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (85).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (85).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 71 + 38 + 160 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (86).xml b/train_annot_folder/person_without_helmet (86).xml new file mode 100644 index 000000000..e37489fce --- /dev/null +++ b/train_annot_folder/person_without_helmet (86).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (86).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (86).jpg + + Unknown + + + 200 + 253 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 76 + 75 + 166 + 174 + + + diff --git a/train_annot_folder/person_without_helmet (87).xml b/train_annot_folder/person_without_helmet (87).xml new file mode 100644 index 000000000..4f457560b --- /dev/null +++ b/train_annot_folder/person_without_helmet (87).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (87).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (87).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 48 + 31 + 158 + 188 + + + diff --git a/train_annot_folder/person_without_helmet (88).xml b/train_annot_folder/person_without_helmet (88).xml new file mode 100644 index 000000000..b362a1206 --- /dev/null +++ b/train_annot_folder/person_without_helmet (88).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (88).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (88).jpg + + Unknown + + + 200 + 268 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 17 + 27 + 113 + 251 + + + diff --git a/train_annot_folder/person_without_helmet (89).xml b/train_annot_folder/person_without_helmet (89).xml new file mode 100644 index 000000000..9f601fc97 --- /dev/null +++ b/train_annot_folder/person_without_helmet (89).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (89).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (89).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 88 + 1 + 200 + 148 + + + diff --git a/train_annot_folder/person_without_helmet (9).xml b/train_annot_folder/person_without_helmet (9).xml new file mode 100644 index 000000000..0b9db04e0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (9).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (9).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (9).jpg + + Unknown + + + 346 + 201 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 155 + 13 + 283 + 201 + + + diff --git a/train_annot_folder/person_without_helmet (90).xml b/train_annot_folder/person_without_helmet (90).xml new file mode 100644 index 000000000..13ac83b3a --- /dev/null +++ b/train_annot_folder/person_without_helmet (90).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (90).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (90).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 7 + 56 + 162 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (91).xml b/train_annot_folder/person_without_helmet (91).xml new file mode 100644 index 000000000..f723251f2 --- /dev/null +++ b/train_annot_folder/person_without_helmet (91).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (91).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (91).jpg + + Unknown + + + 212 + 200 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 113 + 19 + 207 + 200 + + + diff --git a/train_annot_folder/person_without_helmet (92).xml b/train_annot_folder/person_without_helmet (92).xml new file mode 100644 index 000000000..db27beb00 --- /dev/null +++ b/train_annot_folder/person_without_helmet (92).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (92).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (92).jpg + + Unknown + + + 200 + 216 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 7 + 46 + 119 + 166 + + + diff --git a/train_annot_folder/person_without_helmet (93).xml b/train_annot_folder/person_without_helmet (93).xml new file mode 100644 index 000000000..dae6b6ffb --- /dev/null +++ b/train_annot_folder/person_without_helmet (93).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (93).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (93).jpg + + Unknown + + + 200 + 235 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 95 + 17 + 166 + 235 + + + diff --git a/train_annot_folder/person_without_helmet (94).xml b/train_annot_folder/person_without_helmet (94).xml new file mode 100644 index 000000000..4ff1e1533 --- /dev/null +++ b/train_annot_folder/person_without_helmet (94).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (94).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (94).jpg + + Unknown + + + 200 + 221 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 21 + 11 + 132 + 220 + + + diff --git a/train_annot_folder/person_without_helmet (96).xml b/train_annot_folder/person_without_helmet (96).xml new file mode 100644 index 000000000..0298d12e0 --- /dev/null +++ b/train_annot_folder/person_without_helmet (96).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (96).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (96).jpg + + Unknown + + + 267 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 118 + 34 + 187 + 191 + + + diff --git a/train_annot_folder/person_without_helmet (97).xml b/train_annot_folder/person_without_helmet (97).xml new file mode 100644 index 000000000..3559edb6a --- /dev/null +++ b/train_annot_folder/person_without_helmet (97).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (97).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (97).jpg + + Unknown + + + 200 + 200 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 106 + 26 + 175 + 173 + + + diff --git a/train_annot_folder/person_without_helmet (98).xml b/train_annot_folder/person_without_helmet (98).xml new file mode 100644 index 000000000..3a7e1bf32 --- /dev/null +++ b/train_annot_folder/person_without_helmet (98).xml @@ -0,0 +1,26 @@ + + non_workers + person_without_helmet (98).jpg + D:\Workspace\YOLO_annotation\dataset_images\non_workers\person_without_helmet (98).jpg + + Unknown + + + 400 + 300 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 165 + 7 + 277 + 198 + + + diff --git a/train_annot_folder/worker (1).xml b/train_annot_folder/worker (1).xml new file mode 100644 index 000000000..25a2818fc --- /dev/null +++ b/train_annot_folder/worker (1).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (1).jpg + D:\dataset\all_images_folder\worker (1).jpg + + Unknown + + + 257 + 196 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 125 + 12 + 162 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 100 + 11 + 185 + 181 + + + diff --git a/train_annot_folder/worker (10).xml b/train_annot_folder/worker (10).xml new file mode 100644 index 000000000..dffbb9b50 --- /dev/null +++ b/train_annot_folder/worker (10).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (10).jpg + D:\dataset\all_images_folder\worker (10).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 33 + 144 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 73 + 32 + 158 + 175 + + + diff --git a/train_annot_folder/worker (100).xml b/train_annot_folder/worker (100).xml new file mode 100644 index 000000000..768449cfb --- /dev/null +++ b/train_annot_folder/worker (100).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (100).jpg + D:\dataset\all_images_folder\worker (100).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 69 + 131 + 102 + + + + person with helmet + Unspecified + 1 + 0 + + 38 + 67 + 179 + 192 + + + diff --git a/train_annot_folder/worker (101).xml b/train_annot_folder/worker (101).xml new file mode 100644 index 000000000..70483136d --- /dev/null +++ b/train_annot_folder/worker (101).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (101).jpg + D:\dataset\all_images_folder\worker (101).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 66 + 1 + 140 + 32 + + + + person with helmet + Unspecified + 1 + 0 + + 18 + 1 + 138 + 164 + + + diff --git a/train_annot_folder/worker (102).xml b/train_annot_folder/worker (102).xml new file mode 100644 index 000000000..dfbeae966 --- /dev/null +++ b/train_annot_folder/worker (102).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (102).jpg + D:\dataset\all_images_folder\worker (102).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 21 + 1 + 160 + 73 + + + + person with helmet + Unspecified + 1 + 0 + + 5 + 1 + 174 + 285 + + + diff --git a/train_annot_folder/worker (103).xml b/train_annot_folder/worker (103).xml new file mode 100644 index 000000000..af88bdf84 --- /dev/null +++ b/train_annot_folder/worker (103).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (103).jpg + D:\dataset\all_images_folder\worker (103).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 166 + 1 + 242 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 163 + 1 + 273 + 166 + + + diff --git a/train_annot_folder/worker (104).xml b/train_annot_folder/worker (104).xml new file mode 100644 index 000000000..27c82c4b7 --- /dev/null +++ b/train_annot_folder/worker (104).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (104).jpg + D:\dataset\all_images_folder\worker (104).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 141 + 24 + 224 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 138 + 22 + 259 + 174 + + + diff --git a/train_annot_folder/worker (105).xml b/train_annot_folder/worker (105).xml new file mode 100644 index 000000000..6164a8e79 --- /dev/null +++ b/train_annot_folder/worker (105).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (105).jpg + D:\dataset\all_images_folder\worker (105).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 104 + 11 + 163 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 79 + 12 + 159 + 182 + + + diff --git a/train_annot_folder/worker (106).xml b/train_annot_folder/worker (106).xml new file mode 100644 index 000000000..c492356a1 --- /dev/null +++ b/train_annot_folder/worker (106).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (106).jpg + D:\dataset\all_images_folder\worker (106).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 34 + 1 + 88 + 32 + + + + person with helmet + Unspecified + 1 + 0 + + 14 + 1 + 100 + 177 + + + + helmet + Unspecified + 0 + 0 + + 138 + 18 + 172 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 17 + 192 + 132 + + + diff --git a/train_annot_folder/worker (107).xml b/train_annot_folder/worker (107).xml new file mode 100644 index 000000000..0c2c82552 --- /dev/null +++ b/train_annot_folder/worker (107).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (107).jpg + D:\dataset\all_images_folder\worker (107).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 36 + 23 + 122 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 23 + 125 + 173 + + + diff --git a/train_annot_folder/worker (108).xml b/train_annot_folder/worker (108).xml new file mode 100644 index 000000000..7add5fb40 --- /dev/null +++ b/train_annot_folder/worker (108).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (108).jpg + D:\dataset\all_images_folder\worker (108).jpg + + Unknown + + + 283 + 178 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 12 + 1 + 118 + 42 + + + + person with helmet + Unspecified + 1 + 0 + + 2 + 1 + 132 + 159 + + + diff --git a/train_annot_folder/worker (109).xml b/train_annot_folder/worker (109).xml new file mode 100644 index 000000000..c52a170aa --- /dev/null +++ b/train_annot_folder/worker (109).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (109).jpg + D:\dataset\all_images_folder\worker (109).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 86 + 8 + 125 + 33 + + + + person with helmet + Unspecified + 1 + 0 + + 67 + 6 + 152 + 183 + + + diff --git a/train_annot_folder/worker (11).xml b/train_annot_folder/worker (11).xml new file mode 100644 index 000000000..9f053a3aa --- /dev/null +++ b/train_annot_folder/worker (11).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (11).jpg + D:\dataset\all_images_folder\worker (11).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 30 + 185 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 28 + 187 + 184 + + + diff --git a/train_annot_folder/worker (110).xml b/train_annot_folder/worker (110).xml new file mode 100644 index 000000000..ab9359771 --- /dev/null +++ b/train_annot_folder/worker (110).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (110).jpg + D:\dataset\all_images_folder\worker (110).jpg + + Unknown + + + 280 + 180 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 18 + 88 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 28 + 18 + 108 + 168 + + + diff --git a/train_annot_folder/worker (111).xml b/train_annot_folder/worker (111).xml new file mode 100644 index 000000000..329cc6666 --- /dev/null +++ b/train_annot_folder/worker (111).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (111).jpg + D:\dataset\all_images_folder\worker (111).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 162 + 1 + 251 + 71 + + + + person with helmet + Unspecified + 1 + 0 + + 152 + 1 + 265 + 176 + + + diff --git a/train_annot_folder/worker (112).xml b/train_annot_folder/worker (112).xml new file mode 100644 index 000000000..44eae68e1 --- /dev/null +++ b/train_annot_folder/worker (112).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (112).jpg + D:\dataset\all_images_folder\worker (112).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 20 + 74 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 13 + 19 + 79 + 193 + + + diff --git a/train_annot_folder/worker (113).xml b/train_annot_folder/worker (113).xml new file mode 100644 index 000000000..4b6474321 --- /dev/null +++ b/train_annot_folder/worker (113).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (113).jpg + D:\dataset\all_images_folder\worker (113).jpg + + Unknown + + + 314 + 160 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 133 + 1 + 276 + 88 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 281 + 160 + + + diff --git a/train_annot_folder/worker (114).xml b/train_annot_folder/worker (114).xml new file mode 100644 index 000000000..eb5349543 --- /dev/null +++ b/train_annot_folder/worker (114).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (114).jpg + D:\dataset\all_images_folder\worker (114).jpg + + Unknown + + + 271 + 186 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 167 + 1 + 263 + 55 + + + + person with helmet + Unspecified + 1 + 0 + + 105 + 1 + 271 + 184 + + + diff --git a/train_annot_folder/worker (115).xml b/train_annot_folder/worker (115).xml new file mode 100644 index 000000000..e1da9b705 --- /dev/null +++ b/train_annot_folder/worker (115).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (115).jpg + D:\dataset\all_images_folder\worker (115).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 3 + 120 + 33 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 2 + 134 + 177 + + + diff --git a/train_annot_folder/worker (116).xml b/train_annot_folder/worker (116).xml new file mode 100644 index 000000000..444761902 --- /dev/null +++ b/train_annot_folder/worker (116).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (116).jpg + D:\dataset\all_images_folder\worker (116).jpg + + Unknown + + + 255 + 197 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 114 + 46 + 167 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 96 + 47 + 209 + 180 + + + diff --git a/train_annot_folder/worker (117).xml b/train_annot_folder/worker (117).xml new file mode 100644 index 000000000..82fa76ba7 --- /dev/null +++ b/train_annot_folder/worker (117).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (117).jpg + D:\dataset\all_images_folder\worker (117).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 131 + 8 + 188 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 4 + 239 + 175 + + + diff --git a/train_annot_folder/worker (118).xml b/train_annot_folder/worker (118).xml new file mode 100644 index 000000000..d8e71219f --- /dev/null +++ b/train_annot_folder/worker (118).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (118).jpg + D:\dataset\all_images_folder\worker (118).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 128 + 40 + 165 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 40 + 191 + 174 + + + diff --git a/train_annot_folder/worker (119).xml b/train_annot_folder/worker (119).xml new file mode 100644 index 000000000..6b030294e --- /dev/null +++ b/train_annot_folder/worker (119).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (119).jpg + D:\dataset\all_images_folder\worker (119).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 124 + 4 + 171 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 91 + 4 + 194 + 166 + + + diff --git a/train_annot_folder/worker (12).xml b/train_annot_folder/worker (12).xml new file mode 100644 index 000000000..1bda7c849 --- /dev/null +++ b/train_annot_folder/worker (12).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (12).jpg + D:\dataset\all_images_folder\worker (12).jpg + + Unknown + + + 255 + 198 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 36 + 25 + 135 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 23 + 157 + 180 + + + diff --git a/train_annot_folder/worker (120).xml b/train_annot_folder/worker (120).xml new file mode 100644 index 000000000..4016c6ed8 --- /dev/null +++ b/train_annot_folder/worker (120).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (120).jpg + D:\dataset\all_images_folder\worker (120).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 134 + 12 + 174 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 11 + 211 + 167 + + + diff --git a/train_annot_folder/worker (121).xml b/train_annot_folder/worker (121).xml new file mode 100644 index 000000000..ead3f950c --- /dev/null +++ b/train_annot_folder/worker (121).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (121).jpg + D:\dataset\all_images_folder\worker (121).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 147 + 1 + 222 + 51 + + + + person with helmet + Unspecified + 1 + 0 + + 145 + 1 + 264 + 178 + + + diff --git a/train_annot_folder/worker (122).xml b/train_annot_folder/worker (122).xml new file mode 100644 index 000000000..d19bbc6f7 --- /dev/null +++ b/train_annot_folder/worker (122).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (122).jpg + D:\dataset\all_images_folder\worker (122).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 47 + 3 + 97 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 19 + 1 + 124 + 176 + + + diff --git a/train_annot_folder/worker (123).xml b/train_annot_folder/worker (123).xml new file mode 100644 index 000000000..9b4239c6d --- /dev/null +++ b/train_annot_folder/worker (123).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (123).jpg + D:\dataset\all_images_folder\worker (123).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 78 + 1 + 145 + 48 + + + + person with helmet + Unspecified + 1 + 0 + + 43 + 1 + 152 + 177 + + + diff --git a/train_annot_folder/worker (124).xml b/train_annot_folder/worker (124).xml new file mode 100644 index 000000000..c66952ab4 --- /dev/null +++ b/train_annot_folder/worker (124).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (124).jpg + D:\dataset\all_images_folder\worker (124).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 44 + 15 + 89 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 14 + 117 + 181 + + + + helmet + Unspecified + 0 + 0 + + 138 + 46 + 152 + 56 + + + + helmet + Unspecified + 0 + 0 + + 166 + 47 + 179 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 132 + 48 + 155 + 138 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 46 + 186 + 140 + + + diff --git a/train_annot_folder/worker (125).xml b/train_annot_folder/worker (125).xml new file mode 100644 index 000000000..aa533dae2 --- /dev/null +++ b/train_annot_folder/worker (125).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (125).jpg + D:\dataset\all_images_folder\worker (125).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 118 + 92 + 137 + + + + person with helmet + Unspecified + 1 + 0 + + 29 + 117 + 104 + 275 + + + diff --git a/train_annot_folder/worker (126).xml b/train_annot_folder/worker (126).xml new file mode 100644 index 000000000..5dbbb4f76 --- /dev/null +++ b/train_annot_folder/worker (126).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (126).jpg + D:\dataset\all_images_folder\worker (126).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 14 + 200 + 87 + + + + person with helmet + Unspecified + 1 + 0 + + 92 + 12 + 215 + 183 + + + diff --git a/train_annot_folder/worker (127).xml b/train_annot_folder/worker (127).xml new file mode 100644 index 000000000..6b5a5ca83 --- /dev/null +++ b/train_annot_folder/worker (127).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (127).jpg + D:\dataset\all_images_folder\worker (127).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 141 + 1 + 265 + 52 + + + + person with helmet + Unspecified + 1 + 0 + + 141 + 1 + 295 + 168 + + + diff --git a/train_annot_folder/worker (128).xml b/train_annot_folder/worker (128).xml new file mode 100644 index 000000000..2f4298218 --- /dev/null +++ b/train_annot_folder/worker (128).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (128).jpg + D:\dataset\all_images_folder\worker (128).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 63 + 23 + 185 + 193 + + + + person without helmet + Unspecified + 1 + 0 + + 217 + 49 + 259 + 104 + + + diff --git a/train_annot_folder/worker (129).xml b/train_annot_folder/worker (129).xml new file mode 100644 index 000000000..d5d131587 --- /dev/null +++ b/train_annot_folder/worker (129).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (129).jpg + D:\dataset\all_images_folder\worker (129).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 81 + 162 + 106 + + + + helmet + Unspecified + 0 + 0 + + 184 + 95 + 207 + 120 + + + + person with helmet + Unspecified + 0 + 0 + + 104 + 80 + 173 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 175 + 93 + 225 + 174 + + + diff --git a/train_annot_folder/worker (13).xml b/train_annot_folder/worker (13).xml new file mode 100644 index 000000000..789bc5c34 --- /dev/null +++ b/train_annot_folder/worker (13).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (13).jpg + D:\dataset\all_images_folder\worker (13).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 156 + 26 + 190 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 25 + 216 + 177 + + + diff --git a/train_annot_folder/worker (130).xml b/train_annot_folder/worker (130).xml new file mode 100644 index 000000000..bf3bbedfe --- /dev/null +++ b/train_annot_folder/worker (130).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (130).jpg + D:\dataset\all_images_folder\worker (130).jpg + + Unknown + + + 259 + 195 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 26 + 28 + 94 + 74 + + + + helmet + Unspecified + 1 + 0 + + 143 + 1 + 258 + 44 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 28 + 90 + 193 + + + + person with helmet + Unspecified + 1 + 0 + + 140 + 1 + 259 + 193 + + + diff --git a/train_annot_folder/worker (131).xml b/train_annot_folder/worker (131).xml new file mode 100644 index 000000000..9240b8087 --- /dev/null +++ b/train_annot_folder/worker (131).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (131).jpg + D:\dataset\all_images_folder\worker (131).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 215 + 1 + 275 + 27 + + + + person with helmet + Unspecified + 1 + 0 + + 193 + 1 + 275 + 174 + + + diff --git a/train_annot_folder/worker (132).xml b/train_annot_folder/worker (132).xml new file mode 100644 index 000000000..33f8f4cb4 --- /dev/null +++ b/train_annot_folder/worker (132).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (132).jpg + D:\dataset\all_images_folder\worker (132).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 67 + 1 + 123 + 34 + + + + person with helmet + Unspecified + 1 + 0 + + 33 + 1 + 153 + 178 + + + diff --git a/train_annot_folder/worker (133).xml b/train_annot_folder/worker (133).xml new file mode 100644 index 000000000..2f5f02c30 --- /dev/null +++ b/train_annot_folder/worker (133).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (133).jpg + D:\dataset\all_images_folder\worker (133).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 5 + 85 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 6 + 123 + 182 + + + + helmet + Unspecified + 0 + 0 + + 177 + 48 + 197 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 174 + 47 + 220 + 181 + + + diff --git a/train_annot_folder/worker (134).xml b/train_annot_folder/worker (134).xml new file mode 100644 index 000000000..bbe944332 --- /dev/null +++ b/train_annot_folder/worker (134).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (134).jpg + D:\dataset\all_images_folder\worker (134).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 87 + 1 + 151 + 35 + + + + person with helmet + Unspecified + 1 + 0 + + 32 + 1 + 156 + 176 + + + diff --git a/train_annot_folder/worker (135).xml b/train_annot_folder/worker (135).xml new file mode 100644 index 000000000..66face7e7 --- /dev/null +++ b/train_annot_folder/worker (135).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (135).jpg + D:\dataset\all_images_folder\worker (135).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 30 + 181 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 30 + 191 + 193 + + + diff --git a/train_annot_folder/worker (136).xml b/train_annot_folder/worker (136).xml new file mode 100644 index 000000000..5b02c2d01 --- /dev/null +++ b/train_annot_folder/worker (136).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (136).jpg + D:\dataset\all_images_folder\worker (136).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 45 + 91 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 34 + 44 + 107 + 177 + + + diff --git a/train_annot_folder/worker (137).xml b/train_annot_folder/worker (137).xml new file mode 100644 index 000000000..28f187c72 --- /dev/null +++ b/train_annot_folder/worker (137).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (137).jpg + D:\dataset\all_images_folder\worker (137).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 25 + 172 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 24 + 191 + 172 + + + diff --git a/train_annot_folder/worker (138).xml b/train_annot_folder/worker (138).xml new file mode 100644 index 000000000..d641d8c19 --- /dev/null +++ b/train_annot_folder/worker (138).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (138).jpg + D:\dataset\all_images_folder\worker (138).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 41 + 42 + 82 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 41 + 98 + 174 + + + diff --git a/train_annot_folder/worker (139).xml b/train_annot_folder/worker (139).xml new file mode 100644 index 000000000..b95704131 --- /dev/null +++ b/train_annot_folder/worker (139).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (139).jpg + D:\dataset\all_images_folder\worker (139).jpg + + Unknown + + + 251 + 201 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 59 + 30 + 101 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 30 + 124 + 190 + + + diff --git a/train_annot_folder/worker (14).xml b/train_annot_folder/worker (14).xml new file mode 100644 index 000000000..e9234626c --- /dev/null +++ b/train_annot_folder/worker (14).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (14).jpg + D:\dataset\all_images_folder\worker (14).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 32 + 1 + 79 + 25 + + + + helmet + Unspecified + 0 + 0 + + 102 + 13 + 136 + 48 + + + + helmet + Unspecified + 0 + 0 + + 144 + 14 + 169 + 35 + + + + helmet + Unspecified + 0 + 0 + + 210 + 9 + 250 + 43 + + + + person with helmet + Unspecified + 1 + 0 + + 15 + 1 + 76 + 148 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 12 + 138 + 145 + + + + person with helmet + Unspecified + 0 + 0 + + 139 + 13 + 182 + 141 + + + + person with helmet + Unspecified + 0 + 0 + + 195 + 7 + 262 + 147 + + + diff --git a/train_annot_folder/worker (140).xml b/train_annot_folder/worker (140).xml new file mode 100644 index 000000000..9bec5125a --- /dev/null +++ b/train_annot_folder/worker (140).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (140).jpg + D:\dataset\all_images_folder\worker (140).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 71 + 162 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 70 + 169 + 181 + + + diff --git a/train_annot_folder/worker (141).xml b/train_annot_folder/worker (141).xml new file mode 100644 index 000000000..8e25b5eb3 --- /dev/null +++ b/train_annot_folder/worker (141).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (141).jpg + D:\dataset\all_images_folder\worker (141).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 53 + 1 + 104 + 30 + + + + person with helmet + Unspecified + 1 + 0 + + 27 + 1 + 129 + 183 + + + diff --git a/train_annot_folder/worker (142).xml b/train_annot_folder/worker (142).xml new file mode 100644 index 000000000..4a97851a6 --- /dev/null +++ b/train_annot_folder/worker (142).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (142).jpg + D:\dataset\all_images_folder\worker (142).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 121 + 19 + 176 + 59 + + + + person with helmet + Unspecified + 1 + 0 + + 90 + 17 + 194 + 183 + + + diff --git a/train_annot_folder/worker (143).xml b/train_annot_folder/worker (143).xml new file mode 100644 index 000000000..08a87e996 --- /dev/null +++ b/train_annot_folder/worker (143).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (143).jpg + D:\dataset\all_images_folder\worker (143).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 164 + 5 + 203 + 34 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 4 + 237 + 177 + + + diff --git a/train_annot_folder/worker (144).xml b/train_annot_folder/worker (144).xml new file mode 100644 index 000000000..5662650a5 --- /dev/null +++ b/train_annot_folder/worker (144).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (144).jpg + D:\dataset\all_images_folder\worker (144).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 35 + 40 + 87 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 39 + 105 + 271 + + + + helmet + Unspecified + 0 + 0 + + 142 + 72 + 160 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 138 + 69 + 176 + 231 + + + diff --git a/train_annot_folder/worker (145).xml b/train_annot_folder/worker (145).xml new file mode 100644 index 000000000..2c3f0c6b0 --- /dev/null +++ b/train_annot_folder/worker (145).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (145).jpg + D:\dataset\all_images_folder\worker (145).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 41 + 175 + 63 + + + + helmet + Unspecified + 0 + 0 + + 174 + 25 + 213 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 143 + 39 + 178 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 23 + 240 + 178 + + + diff --git a/train_annot_folder/worker (146).xml b/train_annot_folder/worker (146).xml new file mode 100644 index 000000000..9a5c81053 --- /dev/null +++ b/train_annot_folder/worker (146).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (146).jpg + D:\dataset\all_images_folder\worker (146).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 117 + 1 + 181 + 37 + + + + person with helmet + Unspecified + 1 + 0 + + 74 + 1 + 213 + 162 + + + diff --git a/train_annot_folder/worker (147).xml b/train_annot_folder/worker (147).xml new file mode 100644 index 000000000..ac8a4a920 --- /dev/null +++ b/train_annot_folder/worker (147).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (147).jpg + D:\dataset\all_images_folder\worker (147).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 75 + 1 + 121 + 27 + + + + person with helmet + Unspecified + 1 + 0 + + 7 + 1 + 129 + 178 + + + diff --git a/train_annot_folder/worker (148).xml b/train_annot_folder/worker (148).xml new file mode 100644 index 000000000..7ffedb1cd --- /dev/null +++ b/train_annot_folder/worker (148).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (148).jpg + D:\dataset\all_images_folder\worker (148).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 43 + 41 + 112 + 92 + + + + helmet + Unspecified + 0 + 0 + + 129 + 11 + 203 + 75 + + + + person with helmet + Unspecified + 1 + 0 + + 10 + 40 + 112 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 113 + 9 + 267 + 182 + + + diff --git a/train_annot_folder/worker (149).xml b/train_annot_folder/worker (149).xml new file mode 100644 index 000000000..67c04796a --- /dev/null +++ b/train_annot_folder/worker (149).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (149).jpg + D:\dataset\all_images_folder\worker (149).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 143 + 1 + 189 + 26 + + + + person with helmet + Unspecified + 1 + 0 + + 124 + 1 + 237 + 180 + + + diff --git a/train_annot_folder/worker (15).xml b/train_annot_folder/worker (15).xml new file mode 100644 index 000000000..7a41983be --- /dev/null +++ b/train_annot_folder/worker (15).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (15).jpg + D:\dataset\all_images_folder\worker (15).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 30 + 68 + 70 + 95 + + + + helmet + Unspecified + 0 + 0 + + 93 + 69 + 131 + 94 + + + + helmet + Unspecified + 0 + 0 + + 155 + 67 + 196 + 94 + + + diff --git a/train_annot_folder/worker (150).xml b/train_annot_folder/worker (150).xml new file mode 100644 index 000000000..30d7dbdfb --- /dev/null +++ b/train_annot_folder/worker (150).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (150).jpg + D:\dataset\all_images_folder\worker (150).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 83 + 79 + 110 + 93 + + + + helmet + Unspecified + 0 + 0 + + 103 + 75 + 124 + 90 + + + + helmet + Unspecified + 0 + 0 + + 139 + 62 + 164 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 75 + 79 + 110 + 180 + + + + person with helmet + Unspecified + 0 + 0 + + 101 + 74 + 141 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 61 + 193 + 182 + + + diff --git a/train_annot_folder/worker (151).xml b/train_annot_folder/worker (151).xml new file mode 100644 index 000000000..12155898c --- /dev/null +++ b/train_annot_folder/worker (151).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (151).jpg + D:\dataset\all_images_folder\worker (151).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 151 + 72 + 166 + 81 + + + + helmet + Unspecified + 0 + 0 + + 190 + 47 + 206 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 145 + 71 + 181 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 183 + 47 + 215 + 150 + + + diff --git a/train_annot_folder/worker (152).xml b/train_annot_folder/worker (152).xml new file mode 100644 index 000000000..07b5436be --- /dev/null +++ b/train_annot_folder/worker (152).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (152).jpg + D:\dataset\all_images_folder\worker (152).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 47 + 61 + 68 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 24 + 64 + 102 + 142 + + + + helmet + Unspecified + 0 + 0 + + 178 + 61 + 199 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 174 + 61 + 229 + 145 + + + diff --git a/train_annot_folder/worker (153).xml b/train_annot_folder/worker (153).xml new file mode 100644 index 000000000..891cf4f17 --- /dev/null +++ b/train_annot_folder/worker (153).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (153).jpg + D:\dataset\all_images_folder\worker (153).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 10 + 1 + 151 + 181 + + + diff --git a/train_annot_folder/worker (154).xml b/train_annot_folder/worker (154).xml new file mode 100644 index 000000000..d697b6811 --- /dev/null +++ b/train_annot_folder/worker (154).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (154).jpg + D:\dataset\all_images_folder\worker (154).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 25 + 52 + 159 + 273 + + + diff --git a/train_annot_folder/worker (155).xml b/train_annot_folder/worker (155).xml new file mode 100644 index 000000000..112bd2dad --- /dev/null +++ b/train_annot_folder/worker (155).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (155).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (155).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 18 + 30 + 158 + 126 + + + diff --git a/train_annot_folder/worker (156).xml b/train_annot_folder/worker (156).xml new file mode 100644 index 000000000..3d6d9b347 --- /dev/null +++ b/train_annot_folder/worker (156).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (156).jpg + D:\dataset\all_images_folder\worker (156).jpg + + Unknown + + + 256 + 197 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 57 + 5 + 169 + 71 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 175 + 195 + + + + person without helmet + Unspecified + 0 + 0 + + 160 + 26 + 254 + 195 + + + diff --git a/train_annot_folder/worker (158).xml b/train_annot_folder/worker (158).xml new file mode 100644 index 000000000..263718241 --- /dev/null +++ b/train_annot_folder/worker (158).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (158).jpg + D:\dataset\all_images_folder\worker (158).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 56 + 54 + 126 + 104 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 54 + 167 + 274 + + + diff --git a/train_annot_folder/worker (159).xml b/train_annot_folder/worker (159).xml new file mode 100644 index 000000000..db8815eee --- /dev/null +++ b/train_annot_folder/worker (159).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (159).jpg + D:\dataset\all_images_folder\worker (159).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 58 + 1 + 156 + 26 + + + + person with helmet + Unspecified + 1 + 0 + + 3 + 1 + 150 + 167 + + + diff --git a/train_annot_folder/worker (16).xml b/train_annot_folder/worker (16).xml new file mode 100644 index 000000000..4d564f09b --- /dev/null +++ b/train_annot_folder/worker (16).xml @@ -0,0 +1,122 @@ + + all_images_folder + worker (16).jpg + D:\dataset\all_images_folder\worker (16).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 39 + 19 + 75 + 47 + + + + helmet + Unspecified + 0 + 0 + + 37 + 19 + 73 + 47 + + + + helmet + Unspecified + 0 + 0 + + 91 + 22 + 118 + 45 + + + + helmet + Unspecified + 0 + 0 + + 136 + 15 + 161 + 34 + + + + helmet + Unspecified + 0 + 0 + + 186 + 17 + 215 + 36 + + + + person with helmet + Unspecified + 0 + 0 + + 24 + 17 + 71 + 129 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 22 + 120 + 126 + + + + person with helmet + Unspecified + 0 + 0 + + 122 + 15 + 169 + 120 + + + + person with helmet + Unspecified + 0 + 0 + + 179 + 16 + 229 + 124 + + + diff --git a/train_annot_folder/worker (160).xml b/train_annot_folder/worker (160).xml new file mode 100644 index 000000000..3fc59e05b --- /dev/null +++ b/train_annot_folder/worker (160).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (160).jpg + D:\dataset\all_images_folder\worker (160).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 181 + 34 + 243 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 179 + 33 + 248 + 175 + + + diff --git a/train_annot_folder/worker (161).xml b/train_annot_folder/worker (161).xml new file mode 100644 index 000000000..3630105c8 --- /dev/null +++ b/train_annot_folder/worker (161).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (161).jpg + D:\dataset\all_images_folder\worker (161).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 83 + 1 + 218 + 157 + + + diff --git a/train_annot_folder/worker (162).xml b/train_annot_folder/worker (162).xml new file mode 100644 index 000000000..fe6c5699c --- /dev/null +++ b/train_annot_folder/worker (162).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (162).jpg + D:\dataset\all_images_folder\worker (162).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 51 + 29 + 111 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 28 + 135 + 180 + + + diff --git a/train_annot_folder/worker (163).xml b/train_annot_folder/worker (163).xml new file mode 100644 index 000000000..fb7849913 --- /dev/null +++ b/train_annot_folder/worker (163).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (163).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (163).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 28 + 114 + 46 + 149 + + + + person + Unspecified + 1 + 0 + + 1 + 122 + 16 + 147 + + + + person + Unspecified + 0 + 0 + + 60 + 126 + 78 + 145 + + + + person + Unspecified + 0 + 0 + + 77 + 127 + 91 + 143 + + + diff --git a/train_annot_folder/worker (164).xml b/train_annot_folder/worker (164).xml new file mode 100644 index 000000000..6fe026b79 --- /dev/null +++ b/train_annot_folder/worker (164).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (164).jpg + D:\dataset\all_images_folder\worker (164).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 142 + 39 + 184 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 39 + 206 + 177 + + + diff --git a/train_annot_folder/worker (165).xml b/train_annot_folder/worker (165).xml new file mode 100644 index 000000000..2d1d4e92d --- /dev/null +++ b/train_annot_folder/worker (165).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (165).jpg + D:\dataset\all_images_folder\worker (165).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 193 + 27 + 232 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 179 + 27 + 237 + 176 + + + diff --git a/train_annot_folder/worker (166).xml b/train_annot_folder/worker (166).xml new file mode 100644 index 000000000..c561666e0 --- /dev/null +++ b/train_annot_folder/worker (166).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (166).jpg + D:\dataset\all_images_folder\worker (166).jpg + + Unknown + + + 345 + 146 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 103 + 13 + 139 + 36 + + + + person with helmet + Unspecified + 1 + 0 + + 79 + 10 + 154 + 146 + + + diff --git a/train_annot_folder/worker (167).xml b/train_annot_folder/worker (167).xml new file mode 100644 index 000000000..77dcb9d30 --- /dev/null +++ b/train_annot_folder/worker (167).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (167).jpg + D:\dataset\all_images_folder\worker (167).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 37 + 46 + 100 + 175 + + + + person without helmet + Unspecified + 0 + 0 + + 142 + 53 + 186 + 168 + + + + helmet + Unspecified + 0 + 0 + + 102 + 42 + 137 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 43 + 143 + 172 + + + diff --git a/train_annot_folder/worker (168).xml b/train_annot_folder/worker (168).xml new file mode 100644 index 000000000..339d66c40 --- /dev/null +++ b/train_annot_folder/worker (168).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (168).jpg + D:\dataset\all_images_folder\worker (168).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 71 + 3 + 114 + 36 + + + + helmet + Unspecified + 0 + 0 + + 148 + 15 + 190 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 24 + 2 + 125 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 145 + 15 + 216 + 136 + + + diff --git a/train_annot_folder/worker (169).xml b/train_annot_folder/worker (169).xml new file mode 100644 index 000000000..7392b5cde --- /dev/null +++ b/train_annot_folder/worker (169).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (169).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (169).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 173 + 57 + 214 + 150 + + + + helmet + Unspecified + 0 + 0 + + 178 + 57 + 195 + 69 + + + diff --git a/train_annot_folder/worker (17).xml b/train_annot_folder/worker (17).xml new file mode 100644 index 000000000..8db11f7d1 --- /dev/null +++ b/train_annot_folder/worker (17).xml @@ -0,0 +1,170 @@ + + all_images_folder + worker (17).jpg + D:\dataset\all_images_folder\worker (17).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 44 + 86 + 70 + + + + helmet + Unspecified + 0 + 0 + + 83 + 40 + 109 + 63 + + + + helmet + Unspecified + 0 + 0 + + 105 + 38 + 138 + 61 + + + + helmet + Unspecified + 0 + 0 + + 134 + 36 + 171 + 66 + + + + helmet + Unspecified + 0 + 0 + + 169 + 29 + 216 + 66 + + + + helmet + Unspecified + 0 + 0 + + 213 + 18 + 259 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 42 + 93 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 37 + 107 + 119 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 34 + 140 + 122 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 32 + 168 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 166 + 28 + 213 + 160 + + + + person with helmet + Unspecified + 0 + 0 + + 205 + 16 + 257 + 152 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 29 + 57 + 182 + + + diff --git a/train_annot_folder/worker (170).xml b/train_annot_folder/worker (170).xml new file mode 100644 index 000000000..0a4a3d497 --- /dev/null +++ b/train_annot_folder/worker (170).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (170).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (170).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 36 + 30 + 164 + 178 + + + diff --git a/train_annot_folder/worker (171).xml b/train_annot_folder/worker (171).xml new file mode 100644 index 000000000..bea8bc866 --- /dev/null +++ b/train_annot_folder/worker (171).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (171).jpg + D:\dataset\all_images_folder\worker (171).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 79 + 37 + 102 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 36 + 132 + 164 + + + diff --git a/train_annot_folder/worker (172).xml b/train_annot_folder/worker (172).xml new file mode 100644 index 000000000..304c7596b --- /dev/null +++ b/train_annot_folder/worker (172).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (172).jpg + D:\dataset\all_images_folder\worker (172).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 160 + 37 + 199 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 144 + 36 + 230 + 177 + + + diff --git a/train_annot_folder/worker (173).xml b/train_annot_folder/worker (173).xml new file mode 100644 index 000000000..1f15bc10a --- /dev/null +++ b/train_annot_folder/worker (173).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (173).jpg + D:\dataset\all_images_folder\worker (173).jpg + + Unknown + + + 270 + 186 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 14 + 5 + 152 + 75 + + + + person with helmet + Unspecified + 0 + 0 + + 7 + 3 + 156 + 185 + + + diff --git a/train_annot_folder/worker (175).xml b/train_annot_folder/worker (175).xml new file mode 100644 index 000000000..1e97b229d --- /dev/null +++ b/train_annot_folder/worker (175).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (175).jpg + D:\dataset\all_images_folder\worker (175).jpg + + Unknown + + + 249 + 202 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 160 + 37 + 223 + 96 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 34 + 232 + 188 + + + diff --git a/train_annot_folder/worker (176).xml b/train_annot_folder/worker (176).xml new file mode 100644 index 000000000..fa8971b40 --- /dev/null +++ b/train_annot_folder/worker (176).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (176).jpg + D:\dataset\all_images_folder\worker (176).jpg + + Unknown + + + 250 + 202 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 141 + 16 + 204 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 15 + 212 + 185 + + + diff --git a/train_annot_folder/worker (177).xml b/train_annot_folder/worker (177).xml new file mode 100644 index 000000000..a51909418 --- /dev/null +++ b/train_annot_folder/worker (177).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (177).jpg + D:\dataset\all_images_folder\worker (177).jpg + + Unknown + + + 279 + 181 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 2 + 170 + 63 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 162 + 180 + + + diff --git a/train_annot_folder/worker (178).xml b/train_annot_folder/worker (178).xml new file mode 100644 index 000000000..63376e808 --- /dev/null +++ b/train_annot_folder/worker (178).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (178).jpg + D:\dataset\all_images_folder\worker (178).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 3 + 219 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 131 + 2 + 265 + 187 + + + diff --git a/train_annot_folder/worker (179).xml b/train_annot_folder/worker (179).xml new file mode 100644 index 000000000..aa4d690d7 --- /dev/null +++ b/train_annot_folder/worker (179).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (179).jpg + D:\dataset\all_images_folder\worker (179).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 131 + 5 + 233 + 59 + + + + person with helmet + Unspecified + 1 + 0 + + 118 + 3 + 256 + 183 + + + diff --git a/train_annot_folder/worker (18).xml b/train_annot_folder/worker (18).xml new file mode 100644 index 000000000..9023e70d8 --- /dev/null +++ b/train_annot_folder/worker (18).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (18).jpg + D:\dataset\all_images_folder\worker (18).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 89 + 3 + 144 + 42 + + + + person with helmet + Unspecified + 1 + 0 + + 60 + 1 + 182 + 168 + + + diff --git a/train_annot_folder/worker (180).xml b/train_annot_folder/worker (180).xml new file mode 100644 index 000000000..3d0a2cd4e --- /dev/null +++ b/train_annot_folder/worker (180).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (180).jpg + D:\dataset\all_images_folder\worker (180).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 60 + 179 + 76 + + + + person with helmet + Unspecified + 1 + 0 + + 138 + 59 + 194 + 183 + + + diff --git a/train_annot_folder/worker (181).xml b/train_annot_folder/worker (181).xml new file mode 100644 index 000000000..791e6dda7 --- /dev/null +++ b/train_annot_folder/worker (181).xml @@ -0,0 +1,302 @@ + + dataset_images + worker (181).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (181).jpg + + Unknown + + + 194 + 260 + 1 + + 0 + + helmet + Unspecified + 0 + 0 + + 80 + 26 + 101 + 47 + + + + helmet + Unspecified + 0 + 0 + + 52 + 60 + 71 + 75 + + + + helmet + Unspecified + 0 + 0 + + 112 + 63 + 133 + 81 + + + + helmet + Unspecified + 0 + 0 + + 92 + 102 + 112 + 118 + + + + helmet + Unspecified + 0 + 0 + + 124 + 121 + 145 + 137 + + + + helmet + Unspecified + 0 + 0 + + 153 + 117 + 171 + 137 + + + + helmet + Unspecified + 0 + 0 + + 141 + 121 + 158 + 134 + + + + helmet + Unspecified + 0 + 0 + + 140 + 161 + 159 + 179 + + + + helmet + Unspecified + 0 + 0 + + 158 + 165 + 181 + 187 + + + + helmet + Unspecified + 0 + 0 + + 88 + 167 + 112 + 186 + + + + helmet + Unspecified + 0 + 0 + + 54 + 157 + 75 + 175 + + + + helmet + Unspecified + 0 + 0 + + 53 + 137 + 76 + 155 + + + + helmet + Unspecified + 0 + 0 + + 27 + 158 + 46 + 178 + + + + helmet + Unspecified + 0 + 0 + + 42 + 118 + 61 + 139 + + + + helmet + Unspecified + 0 + 0 + + 15 + 114 + 36 + 130 + + + + helmet + Unspecified + 1 + 0 + + 1 + 104 + 22 + 124 + + + + person + Unspecified + 0 + 0 + + 152 + 166 + 184 + 235 + + + + person + Unspecified + 0 + 0 + + 127 + 161 + 163 + 231 + + + + person + Unspecified + 0 + 0 + + 80 + 163 + 128 + 243 + + + + person + Unspecified + 0 + 0 + + 50 + 157 + 84 + 241 + + + + person + Unspecified + 0 + 0 + + 8 + 156 + 56 + 239 + + + + person + Unspecified + 0 + 0 + + 81 + 98 + 121 + 191 + + + + person + Unspecified + 0 + 0 + + 68 + 25 + 114 + 86 + + + + person + Unspecified + 0 + 0 + + 123 + 119 + 149 + 184 + + + diff --git a/train_annot_folder/worker (182).xml b/train_annot_folder/worker (182).xml new file mode 100644 index 000000000..a624ea81b --- /dev/null +++ b/train_annot_folder/worker (182).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (182).jpg + D:\dataset\all_images_folder\worker (182).jpg + + Unknown + + + 250 + 202 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 22 + 37 + 50 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 3 + 37 + 77 + 199 + + + diff --git a/train_annot_folder/worker (183).xml b/train_annot_folder/worker (183).xml new file mode 100644 index 000000000..036fa456d --- /dev/null +++ b/train_annot_folder/worker (183).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (183).jpg + D:\dataset\all_images_folder\worker (183).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 13 + 185 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 139 + 10 + 191 + 125 + + + + person without helmet + Unspecified + 0 + 0 + + 186 + 11 + 268 + 178 + + + diff --git a/train_annot_folder/worker (184).xml b/train_annot_folder/worker (184).xml new file mode 100644 index 000000000..d070fb037 --- /dev/null +++ b/train_annot_folder/worker (184).xml @@ -0,0 +1,14 @@ + + dataset_images + worker (184).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (184).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + diff --git a/train_annot_folder/worker (185).xml b/train_annot_folder/worker (185).xml new file mode 100644 index 000000000..070aab794 --- /dev/null +++ b/train_annot_folder/worker (185).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (185).jpg + D:\dataset\all_images_folder\worker (185).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 166 + 11 + 222 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 10 + 231 + 177 + + + diff --git a/train_annot_folder/worker (186).xml b/train_annot_folder/worker (186).xml new file mode 100644 index 000000000..35f1e5c4d --- /dev/null +++ b/train_annot_folder/worker (186).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (186).jpg + D:\dataset\all_images_folder\worker (186).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 174 + 22 + 215 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 20 + 227 + 172 + + + diff --git a/train_annot_folder/worker (187).xml b/train_annot_folder/worker (187).xml new file mode 100644 index 000000000..a90415d07 --- /dev/null +++ b/train_annot_folder/worker (187).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (187).jpg + D:\dataset\all_images_folder\worker (187).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 15 + 144 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 79 + 15 + 159 + 163 + + + diff --git a/train_annot_folder/worker (188).xml b/train_annot_folder/worker (188).xml new file mode 100644 index 000000000..c43c81cb9 --- /dev/null +++ b/train_annot_folder/worker (188).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (188).jpg + D:\dataset\all_images_folder\worker (188).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 142 + 57 + 172 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 56 + 188 + 173 + + + diff --git a/train_annot_folder/worker (189).xml b/train_annot_folder/worker (189).xml new file mode 100644 index 000000000..3d4a2041e --- /dev/null +++ b/train_annot_folder/worker (189).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (189).jpg + D:\dataset\all_images_folder\worker (189).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 6 + 67 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 2 + 4 + 116 + 180 + + + diff --git a/train_annot_folder/worker (19).xml b/train_annot_folder/worker (19).xml new file mode 100644 index 000000000..428354536 --- /dev/null +++ b/train_annot_folder/worker (19).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (19).jpg + D:\dataset\all_images_folder\worker (19).jpg + + Unknown + + + 182 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 19 + 16 + 130 + 94 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 14 + 156 + 257 + + + diff --git a/train_annot_folder/worker (190).xml b/train_annot_folder/worker (190).xml new file mode 100644 index 000000000..1dc6f426b --- /dev/null +++ b/train_annot_folder/worker (190).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (190).jpg + D:\dataset\all_images_folder\worker (190).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 114 + 23 + 152 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 22 + 183 + 174 + + + diff --git a/train_annot_folder/worker (191).xml b/train_annot_folder/worker (191).xml new file mode 100644 index 000000000..cedb2e54e --- /dev/null +++ b/train_annot_folder/worker (191).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (191).jpg + D:\dataset\all_images_folder\worker (191).jpg + + Unknown + + + 270 + 187 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 58 + 45 + 106 + 76 + + + + helmet + Unspecified + 0 + 0 + + 92 + 18 + 124 + 49 + + + + helmet + Unspecified + 0 + 0 + + 147 + 30 + 177 + 51 + + + + helmet + Unspecified + 0 + 0 + + 178 + 41 + 217 + 65 + + + + helmet + Unspecified + 0 + 0 + + 212 + 28 + 242 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 45 + 106 + 186 + + + + person with helmet + Unspecified + 1 + 0 + + 90 + 17 + 129 + 187 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 28 + 187 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 174 + 40 + 223 + 180 + + + + person with helmet + Unspecified + 0 + 0 + + 210 + 27 + 252 + 91 + + + diff --git a/train_annot_folder/worker (192).xml b/train_annot_folder/worker (192).xml new file mode 100644 index 000000000..e3940a5ad --- /dev/null +++ b/train_annot_folder/worker (192).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (192).jpg + D:\dataset\all_images_folder\worker (192).jpg + + Unknown + + + 289 + 174 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 144 + 76 + 169 + 101 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 71 + 189 + 161 + + + diff --git a/train_annot_folder/worker (193).xml b/train_annot_folder/worker (193).xml new file mode 100644 index 000000000..08a947ab2 --- /dev/null +++ b/train_annot_folder/worker (193).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (193).jpg + D:\dataset\all_images_folder\worker (193).jpg + + Unknown + + + 240 + 160 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 101 + 1 + 134 + 22 + + + + helmet + Unspecified + 1 + 0 + + 137 + 1 + 189 + 26 + + + + person with helmet + Unspecified + 1 + 0 + + 86 + 1 + 152 + 107 + + + + person with helmet + Unspecified + 1 + 0 + + 135 + 1 + 208 + 139 + + + diff --git a/train_annot_folder/worker (194).xml b/train_annot_folder/worker (194).xml new file mode 100644 index 000000000..57a91a1a0 --- /dev/null +++ b/train_annot_folder/worker (194).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (194).jpg + D:\dataset\all_images_folder\worker (194).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 195 + 80 + 217 + 96 + + + + person with helmet + Unspecified + 0 + 0 + + 183 + 78 + 231 + 177 + + + diff --git a/train_annot_folder/worker (195).xml b/train_annot_folder/worker (195).xml new file mode 100644 index 000000000..022b983ed --- /dev/null +++ b/train_annot_folder/worker (195).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (195).jpg + D:\dataset\all_images_folder\worker (195).jpg + + Unknown + + + 186 + 272 + 1 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 51 + 31 + 157 + 268 + + + diff --git a/train_annot_folder/worker (196).xml b/train_annot_folder/worker (196).xml new file mode 100644 index 000000000..af39dea9d --- /dev/null +++ b/train_annot_folder/worker (196).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (196).jpg + D:\dataset\all_images_folder\worker (196).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 59 + 1 + 192 + 81 + + + + person with helmet + Unspecified + 1 + 0 + + 24 + 1 + 218 + 223 + + + diff --git a/train_annot_folder/worker (197).xml b/train_annot_folder/worker (197).xml new file mode 100644 index 000000000..128c4686d --- /dev/null +++ b/train_annot_folder/worker (197).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (197).jpg + D:\dataset\all_images_folder\worker (197).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 108 + 25 + 121 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 25 + 141 + 162 + + + diff --git a/train_annot_folder/worker (198).xml b/train_annot_folder/worker (198).xml new file mode 100644 index 000000000..2919b7a18 --- /dev/null +++ b/train_annot_folder/worker (198).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (198).jpg + D:\dataset\all_images_folder\worker (198).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 178 + 12 + 216 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 10 + 250 + 171 + + + + helmet + Unspecified + 0 + 0 + + 94 + 73 + 116 + 94 + + + + helmet + Unspecified + 0 + 0 + + 138 + 67 + 160 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 71 + 124 + 134 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 64 + 157 + 127 + + + diff --git a/train_annot_folder/worker (199).xml b/train_annot_folder/worker (199).xml new file mode 100644 index 000000000..e5155dc45 --- /dev/null +++ b/train_annot_folder/worker (199).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (199).jpg + D:\dataset\all_images_folder\worker (199).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 80 + 41 + 151 + 141 + + + + person without helmet + Unspecified + 0 + 0 + + 166 + 2 + 244 + 120 + + + diff --git a/train_annot_folder/worker (2).xml b/train_annot_folder/worker (2).xml new file mode 100644 index 000000000..526b9d679 --- /dev/null +++ b/train_annot_folder/worker (2).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (2).jpg + D:\dataset\all_images_folder\worker (2).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 131 + 1 + 218 + 48 + + + + person with helmet + Unspecified + 1 + 0 + + 118 + 1 + 248 + 183 + + + diff --git a/train_annot_folder/worker (20).xml b/train_annot_folder/worker (20).xml new file mode 100644 index 000000000..9b3e5222b --- /dev/null +++ b/train_annot_folder/worker (20).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (20).jpg + D:\dataset\all_images_folder\worker (20).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 27 + 94 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 26 + 117 + 176 + + + diff --git a/train_annot_folder/worker (200).xml b/train_annot_folder/worker (200).xml new file mode 100644 index 000000000..7ca933736 --- /dev/null +++ b/train_annot_folder/worker (200).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (200).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (200).jpg + + Unknown + + + 189 + 267 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 48 + 57 + 140 + 251 + + + diff --git a/train_annot_folder/worker (201).xml b/train_annot_folder/worker (201).xml new file mode 100644 index 000000000..8b7ff45e3 --- /dev/null +++ b/train_annot_folder/worker (201).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (201).jpg + D:\dataset\all_images_folder\worker (201).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 59 + 17 + 100 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 39 + 16 + 109 + 172 + + + diff --git a/train_annot_folder/worker (203).xml b/train_annot_folder/worker (203).xml new file mode 100644 index 000000000..6873cb86b --- /dev/null +++ b/train_annot_folder/worker (203).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (203).jpg + D:\dataset\all_images_folder\worker (203).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 119 + 82 + 139 + 98 + + + + helmet + Unspecified + 0 + 0 + + 163 + 81 + 180 + 97 + + + + helmet + Unspecified + 0 + 0 + + 182 + 88 + 204 + 101 + + + + helmet + Unspecified + 0 + 0 + + 216 + 76 + 236 + 92 + + + + helmet + Unspecified + 0 + 0 + + 239 + 84 + 262 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 81 + 143 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 147 + 79 + 182 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 180 + 86 + 215 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 213 + 76 + 244 + 171 + + + + person with helmet + Unspecified + 0 + 0 + + 236 + 80 + 265 + 180 + + + diff --git a/train_annot_folder/worker (204).xml b/train_annot_folder/worker (204).xml new file mode 100644 index 000000000..ced8eaaa9 --- /dev/null +++ b/train_annot_folder/worker (204).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (204).jpg + D:\dataset\all_images_folder\worker (204).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 185 + 85 + 231 + 131 + + + + person with helmet + Unspecified + 1 + 0 + + 170 + 85 + 254 + 168 + + + diff --git a/train_annot_folder/worker (205).xml b/train_annot_folder/worker (205).xml new file mode 100644 index 000000000..0bb83438e --- /dev/null +++ b/train_annot_folder/worker (205).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (205).jpg + D:\dataset\all_images_folder\worker (205).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 22 + 189 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 20 + 212 + 106 + + + diff --git a/train_annot_folder/worker (206).xml b/train_annot_folder/worker (206).xml new file mode 100644 index 000000000..74a1ff8a1 --- /dev/null +++ b/train_annot_folder/worker (206).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (206).jpg + D:\dataset\all_images_folder\worker (206).jpg + + Unknown + + + 289 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 127 + 32 + 146 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 113 + 33 + 152 + 158 + + + diff --git a/train_annot_folder/worker (207).xml b/train_annot_folder/worker (207).xml new file mode 100644 index 000000000..9682a5a79 --- /dev/null +++ b/train_annot_folder/worker (207).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (207).jpg + D:\dataset\all_images_folder\worker (207).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 167 + 1 + 233 + 61 + + + + person with helmet + Unspecified + 1 + 0 + + 160 + 2 + 275 + 166 + + + diff --git a/train_annot_folder/worker (208).xml b/train_annot_folder/worker (208).xml new file mode 100644 index 000000000..a90ae7b8f --- /dev/null +++ b/train_annot_folder/worker (208).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (208).jpg + D:\dataset\all_images_folder\worker (208).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 74 + 68 + 92 + 80 + + + + helmet + Unspecified + 0 + 0 + + 112 + 69 + 130 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 66 + 98 + 200 + + + + person with helmet + Unspecified + 0 + 0 + + 102 + 68 + 139 + 202 + + + diff --git a/train_annot_folder/worker (209).xml b/train_annot_folder/worker (209).xml new file mode 100644 index 000000000..7cb9da48b --- /dev/null +++ b/train_annot_folder/worker (209).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (209).jpg + D:\dataset\all_images_folder\worker (209).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 134 + 38 + 160 + 60 + + + + helmet + Unspecified + 0 + 0 + + 155 + 26 + 199 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 124 + 38 + 166 + 109 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 25 + 230 + 112 + + + diff --git a/train_annot_folder/worker (21).xml b/train_annot_folder/worker (21).xml new file mode 100644 index 000000000..435271b45 --- /dev/null +++ b/train_annot_folder/worker (21).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (21).jpg + D:\dataset\all_images_folder\worker (21).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 8 + 192 + 35 + + + + person with helmet + Unspecified + 1 + 0 + + 115 + 8 + 226 + 183 + + + diff --git a/train_annot_folder/worker (211).xml b/train_annot_folder/worker (211).xml new file mode 100644 index 000000000..b10f774bd --- /dev/null +++ b/train_annot_folder/worker (211).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (211).jpg + D:\dataset\all_images_folder\worker (211).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 69 + 12 + 123 + 45 + + + + person with helmet + Unspecified + 1 + 0 + + 51 + 9 + 141 + 183 + + + diff --git a/train_annot_folder/worker (212).xml b/train_annot_folder/worker (212).xml new file mode 100644 index 000000000..92932d9e2 --- /dev/null +++ b/train_annot_folder/worker (212).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (212).jpg + D:\dataset\all_images_folder\worker (212).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 115 + 47 + 160 + 74 + + + + helmet + Unspecified + 0 + 0 + + 172 + 16 + 232 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 97 + 47 + 162 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 166 + 12 + 240 + 182 + + + diff --git a/train_annot_folder/worker (213).xml b/train_annot_folder/worker (213).xml new file mode 100644 index 000000000..eba290c78 --- /dev/null +++ b/train_annot_folder/worker (213).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (213).jpg + D:\dataset\all_images_folder\worker (213).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 31 + 19 + 144 + 96 + + + + person with helmet + Unspecified + 1 + 0 + + 11 + 17 + 178 + 275 + + + diff --git a/train_annot_folder/worker (214).xml b/train_annot_folder/worker (214).xml new file mode 100644 index 000000000..5f3890c23 --- /dev/null +++ b/train_annot_folder/worker (214).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (214).jpg + D:\dataset\all_images_folder\worker (214).jpg + + Unknown + + + 250 + 202 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 115 + 12 + 196 + 66 + + + + helmet + Unspecified + 0 + 0 + + 91 + 10 + 211 + 184 + + + diff --git a/train_annot_folder/worker (215).xml b/train_annot_folder/worker (215).xml new file mode 100644 index 000000000..6f14b3f7b --- /dev/null +++ b/train_annot_folder/worker (215).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (215).jpg + D:\dataset\all_images_folder\worker (215).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 22 + 17 + 57 + 36 + + + + helmet + Unspecified + 0 + 0 + + 77 + 14 + 129 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 16 + 86 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 12 + 143 + 178 + + + diff --git a/train_annot_folder/worker (216).xml b/train_annot_folder/worker (216).xml new file mode 100644 index 000000000..5804b762c --- /dev/null +++ b/train_annot_folder/worker (216).xml @@ -0,0 +1,98 @@ + + all_images_folder + worker (216).jpg + D:\dataset\all_images_folder\worker (216).jpg + + Unknown + + + 283 + 178 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 81 + 110 + 102 + + + + helmet + Unspecified + 0 + 0 + + 138 + 87 + 162 + 104 + + + + helmet + Unspecified + 0 + 0 + + 189 + 96 + 215 + 112 + + + + helmet + Unspecified + 0 + 0 + + 58 + 80 + 117 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 78 + 119 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 83 + 175 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 175 + 91 + 234 + 176 + + + diff --git a/train_annot_folder/worker (217).xml b/train_annot_folder/worker (217).xml new file mode 100644 index 000000000..3753fd359 --- /dev/null +++ b/train_annot_folder/worker (217).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (217).jpg + D:\dataset\all_images_folder\worker (217).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 155 + 77 + 177 + 98 + + + + helmet + Unspecified + 0 + 0 + + 173 + 75 + 194 + 94 + + + + helmet + Unspecified + 0 + 0 + + 199 + 83 + 234 + 105 + + + + helmet + Unspecified + 0 + 0 + + 223 + 71 + 247 + 89 + + + + helmet + Unspecified + 0 + 0 + + 243 + 81 + 267 + 100 + + + + person with helmet + Unspecified + 1 + 0 + + 130 + 77 + 176 + 184 + + + + person with helmet + Unspecified + 1 + 0 + + 197 + 82 + 237 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 240 + 82 + 273 + 181 + + + diff --git a/train_annot_folder/worker (218).xml b/train_annot_folder/worker (218).xml new file mode 100644 index 000000000..1cb84af84 --- /dev/null +++ b/train_annot_folder/worker (218).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (218).jpg + D:\dataset\all_images_folder\worker (218).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 92 + 5 + 153 + 44 + + + + helmet + Unspecified + 1 + 0 + + 196 + 1 + 269 + 24 + + + + person with helmet + Unspecified + 0 + 0 + + 80 + 3 + 155 + 162 + + + + person with helmet + Unspecified + 1 + 0 + + 192 + 1 + 283 + 159 + + + diff --git a/train_annot_folder/worker (219).xml b/train_annot_folder/worker (219).xml new file mode 100644 index 000000000..d71ef9896 --- /dev/null +++ b/train_annot_folder/worker (219).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (219).jpg + D:\dataset\all_images_folder\worker (219).jpg + + Unknown + + + 232 + 217 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 112 + 29 + 162 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 27 + 205 + 201 + + + diff --git a/train_annot_folder/worker (220).xml b/train_annot_folder/worker (220).xml new file mode 100644 index 000000000..77857ea7a --- /dev/null +++ b/train_annot_folder/worker (220).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (220).jpg + D:\dataset\all_images_folder\worker (220).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 129 + 1 + 186 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 87 + 1 + 218 + 168 + + + diff --git a/train_annot_folder/worker (221).xml b/train_annot_folder/worker (221).xml new file mode 100644 index 000000000..670d69780 --- /dev/null +++ b/train_annot_folder/worker (221).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (221).jpg + D:\dataset\all_images_folder\worker (221).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 153 + 1 + 258 + 52 + + + + helmet + Unspecified + 1 + 0 + + 1 + 66 + 44 + 107 + + + + helmet + Unspecified + 0 + 0 + + 81 + 54 + 105 + 72 + + + + helmet + Unspecified + 0 + 0 + + 130 + 65 + 147 + 76 + + + + person with helmet + Unspecified + 1 + 0 + + 146 + 1 + 264 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 65 + 65 + 182 + + + + person with helmet + Unspecified + 1 + 0 + + 78 + 53 + 120 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 126 + 63 + 153 + 136 + + + diff --git a/train_annot_folder/worker (222).xml b/train_annot_folder/worker (222).xml new file mode 100644 index 000000000..613b858fb --- /dev/null +++ b/train_annot_folder/worker (222).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (222).jpg + D:\dataset\all_images_folder\worker (222).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 75 + 1 + 166 + 44 + + + + person with helmet + Unspecified + 1 + 0 + + 55 + 1 + 188 + 168 + + + diff --git a/train_annot_folder/worker (223).xml b/train_annot_folder/worker (223).xml new file mode 100644 index 000000000..03e3f9536 --- /dev/null +++ b/train_annot_folder/worker (223).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (223).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (223).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 99 + 9 + 212 + 183 + + + diff --git a/train_annot_folder/worker (224).xml b/train_annot_folder/worker (224).xml new file mode 100644 index 000000000..a998dd958 --- /dev/null +++ b/train_annot_folder/worker (224).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (224).jpg + D:\dataset\all_images_folder\worker (224).jpg + + Unknown + + + 240 + 160 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 9 + 186 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 9 + 203 + 159 + + + diff --git a/train_annot_folder/worker (225).xml b/train_annot_folder/worker (225).xml new file mode 100644 index 000000000..ed1f63b82 --- /dev/null +++ b/train_annot_folder/worker (225).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (225).jpg + D:\dataset\all_images_folder\worker (225).jpg + + Unknown + + + 304 + 166 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 167 + 1 + 215 + 33 + + + + person with helmet + Unspecified + 1 + 0 + + 130 + 1 + 230 + 121 + + + diff --git a/train_annot_folder/worker (226).xml b/train_annot_folder/worker (226).xml new file mode 100644 index 000000000..78a65b60a --- /dev/null +++ b/train_annot_folder/worker (226).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (226).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (226).jpg + + Unknown + + + 274 + 184 + 1 + + 0 + + helmet + Unspecified + 0 + 0 + + 116 + 7 + 151 + 33 + + + + person + Unspecified + 0 + 0 + + 102 + 7 + 181 + 119 + + + diff --git a/train_annot_folder/worker (227).xml b/train_annot_folder/worker (227).xml new file mode 100644 index 000000000..57a655c3e --- /dev/null +++ b/train_annot_folder/worker (227).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (227).jpg + D:\dataset\all_images_folder\worker (227).jpg + + Unknown + + + 258 + 195 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 150 + 1 + 205 + 32 + + + + person with helmet + Unspecified + 1 + 0 + + 131 + 1 + 236 + 175 + + + diff --git a/train_annot_folder/worker (228).xml b/train_annot_folder/worker (228).xml new file mode 100644 index 000000000..2c76a185a --- /dev/null +++ b/train_annot_folder/worker (228).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (228).jpg + D:\dataset\all_images_folder\worker (228).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 151 + 4 + 197 + 32 + + + + person with helmet + Unspecified + 1 + 0 + + 143 + 2 + 214 + 183 + + + diff --git a/train_annot_folder/worker (229).xml b/train_annot_folder/worker (229).xml new file mode 100644 index 000000000..f1ede041f --- /dev/null +++ b/train_annot_folder/worker (229).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (229).jpg + D:\dataset\all_images_folder\worker (229).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 20 + 49 + 122 + 144 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 50 + 177 + 272 + + + diff --git a/train_annot_folder/worker (23).xml b/train_annot_folder/worker (23).xml new file mode 100644 index 000000000..824576223 --- /dev/null +++ b/train_annot_folder/worker (23).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (23).jpg + D:\dataset\all_images_folder\worker (23).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 52 + 33 + 97 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 41 + 32 + 114 + 173 + + + diff --git a/train_annot_folder/worker (230).xml b/train_annot_folder/worker (230).xml new file mode 100644 index 000000000..728e24fd6 --- /dev/null +++ b/train_annot_folder/worker (230).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (230).jpg + D:\dataset\all_images_folder\worker (230).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 111 + 34 + 144 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 97 + 33 + 161 + 182 + + + diff --git a/train_annot_folder/worker (231).xml b/train_annot_folder/worker (231).xml new file mode 100644 index 000000000..5884fd667 --- /dev/null +++ b/train_annot_folder/worker (231).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (231).jpg + D:\dataset\all_images_folder\worker (231).jpg + + Unknown + + + 289 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 180 + 18 + 220 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 164 + 17 + 236 + 161 + + + diff --git a/train_annot_folder/worker (232).xml b/train_annot_folder/worker (232).xml new file mode 100644 index 000000000..9a0bc1638 --- /dev/null +++ b/train_annot_folder/worker (232).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (232).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (232).jpg + + Unknown + + + 269 + 188 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 113 + 4 + 251 + 179 + + + diff --git a/train_annot_folder/worker (233).xml b/train_annot_folder/worker (233).xml new file mode 100644 index 000000000..c9dd5e68a --- /dev/null +++ b/train_annot_folder/worker (233).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (233).jpg + D:\dataset\all_images_folder\worker (233).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 24 + 142 + 49 + + + + person with helmet + Unspecified + 1 + 0 + + 84 + 23 + 145 + 183 + + + diff --git a/train_annot_folder/worker (234).xml b/train_annot_folder/worker (234).xml new file mode 100644 index 000000000..36e5932e7 --- /dev/null +++ b/train_annot_folder/worker (234).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (234).jpg + D:\dataset\all_images_folder\worker (234).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 14 + 218 + 69 + + + + helmet + Unspecified + 0 + 0 + + 83 + 63 + 142 + 106 + + + + helmet + Unspecified + 0 + 0 + + 25 + 33 + 72 + 76 + + + + person with helmet + Unspecified + 1 + 0 + + 17 + 34 + 80 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 62 + 165 + 177 + + + + person with helmet + Unspecified + 1 + 0 + + 139 + 12 + 244 + 183 + + + diff --git a/train_annot_folder/worker (235).xml b/train_annot_folder/worker (235).xml new file mode 100644 index 000000000..704ed17d1 --- /dev/null +++ b/train_annot_folder/worker (235).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (235).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (235).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 9 + 55 + 176 + 267 + + + diff --git a/train_annot_folder/worker (236).xml b/train_annot_folder/worker (236).xml new file mode 100644 index 000000000..87115532e --- /dev/null +++ b/train_annot_folder/worker (236).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (236).jpg + D:\dataset\all_images_folder\worker (236).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 121 + 47 + 147 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 45 + 151 + 175 + + + diff --git a/train_annot_folder/worker (237).xml b/train_annot_folder/worker (237).xml new file mode 100644 index 000000000..cf7a41577 --- /dev/null +++ b/train_annot_folder/worker (237).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (237).jpg + D:\dataset\all_images_folder\worker (237).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 96 + 1 + 245 + 173 + + + + helmet + Unspecified + 0 + 0 + + 112 + 2 + 213 + 64 + + + diff --git a/train_annot_folder/worker (238).xml b/train_annot_folder/worker (238).xml new file mode 100644 index 000000000..0404e4152 --- /dev/null +++ b/train_annot_folder/worker (238).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (238).jpg + D:\dataset\all_images_folder\worker (238).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 92 + 16 + 120 + 35 + + + + helmet + Unspecified + 0 + 0 + + 158 + 24 + 193 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 14 + 140 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 20 + 227 + 161 + + + diff --git a/train_annot_folder/worker (239).xml b/train_annot_folder/worker (239).xml new file mode 100644 index 000000000..30f3309c9 --- /dev/null +++ b/train_annot_folder/worker (239).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (239).jpg + D:\dataset\all_images_folder\worker (239).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 115 + 31 + 167 + 160 + + + + helmet + Unspecified + 0 + 0 + + 127 + 30 + 144 + 43 + + + diff --git a/train_annot_folder/worker (24).xml b/train_annot_folder/worker (24).xml new file mode 100644 index 000000000..f8d53c0d9 --- /dev/null +++ b/train_annot_folder/worker (24).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (24).jpg + D:\dataset\all_images_folder\worker (24).jpg + + Unknown + + + 248 + 203 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 73 + 36 + 155 + 80 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 35 + 222 + 186 + + + diff --git a/train_annot_folder/worker (240).xml b/train_annot_folder/worker (240).xml new file mode 100644 index 000000000..15776ad35 --- /dev/null +++ b/train_annot_folder/worker (240).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (240).jpg + D:\dataset\all_images_folder\worker (240).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 43 + 76 + 126 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 102 + 193 + 178 + + + + helmet + Unspecified + 0 + 0 + + 79 + 76 + 117 + 110 + + + + helmet + Unspecified + 0 + 0 + + 150 + 103 + 185 + 139 + + + diff --git a/train_annot_folder/worker (241).xml b/train_annot_folder/worker (241).xml new file mode 100644 index 000000000..a29fe0388 --- /dev/null +++ b/train_annot_folder/worker (241).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (241).jpg + D:\dataset\all_images_folder\worker (241).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 25 + 58 + 44 + 74 + + + + helmet + Unspecified + 0 + 0 + + 149 + 63 + 164 + 76 + + + + helmet + Unspecified + 0 + 0 + + 214 + 48 + 240 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 57 + 66 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 147 + 62 + 171 + 116 + + + + person with helmet + Unspecified + 0 + 0 + + 205 + 48 + 252 + 182 + + + + person without helmet + Unspecified + 1 + 0 + + 104 + 60 + 146 + 189 + + + + person without helmet + Unspecified + 0 + 0 + + 55 + 75 + 88 + 139 + + + diff --git a/train_annot_folder/worker (242).xml b/train_annot_folder/worker (242).xml new file mode 100644 index 000000000..3b31ebf37 --- /dev/null +++ b/train_annot_folder/worker (242).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (242).jpg + D:\dataset\all_images_folder\worker (242).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 135 + 36 + 162 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 34 + 186 + 163 + + + diff --git a/train_annot_folder/worker (243).xml b/train_annot_folder/worker (243).xml new file mode 100644 index 000000000..3a3afc15e --- /dev/null +++ b/train_annot_folder/worker (243).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (243).jpg + D:\dataset\all_images_folder\worker (243).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 23 + 67 + 124 + 275 + + + + helmet + Unspecified + 0 + 0 + + 39 + 68 + 107 + 110 + + + diff --git a/train_annot_folder/worker (244).xml b/train_annot_folder/worker (244).xml new file mode 100644 index 000000000..77472c1d3 --- /dev/null +++ b/train_annot_folder/worker (244).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (244).jpg + D:\dataset\all_images_folder\worker (244).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 92 + 243 + 155 + + + diff --git a/train_annot_folder/worker (245).xml b/train_annot_folder/worker (245).xml new file mode 100644 index 000000000..6e2fafafb --- /dev/null +++ b/train_annot_folder/worker (245).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (245).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (245).jpg + + Unknown + + + 275 + 184 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 56 + 19 + 162 + 184 + + + diff --git a/train_annot_folder/worker (247).xml b/train_annot_folder/worker (247).xml new file mode 100644 index 000000000..b20db7b08 --- /dev/null +++ b/train_annot_folder/worker (247).xml @@ -0,0 +1,194 @@ + + all_images_folder + worker (247).jpg + D:\dataset\all_images_folder\worker (247).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 38 + 28 + 55 + 39 + + + + helmet + Unspecified + 0 + 0 + + 65 + 43 + 80 + 55 + + + + helmet + Unspecified + 0 + 0 + + 101 + 44 + 117 + 54 + + + + helmet + Unspecified + 0 + 0 + + 131 + 47 + 148 + 57 + + + + helmet + Unspecified + 0 + 0 + + 152 + 50 + 161 + 57 + + + + helmet + Unspecified + 0 + 0 + + 180 + 42 + 200 + 54 + + + + helmet + Unspecified + 0 + 0 + + 202 + 46 + 213 + 55 + + + + helmet + Unspecified + 0 + 0 + + 217 + 46 + 232 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 26 + 63 + 162 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 42 + 88 + 147 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 42 + 123 + 149 + + + + person with helmet + Unspecified + 0 + 0 + + 126 + 44 + 162 + 151 + + + + person with helmet + Unspecified + 0 + 0 + + 151 + 49 + 175 + 141 + + + + person with helmet + Unspecified + 0 + 0 + + 178 + 40 + 207 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 216 + 45 + 241 + 147 + + + diff --git a/train_annot_folder/worker (248).xml b/train_annot_folder/worker (248).xml new file mode 100644 index 000000000..b5fbcfaf5 --- /dev/null +++ b/train_annot_folder/worker (248).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (248).jpg + D:\dataset\all_images_folder\worker (248).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 104 + 1 + 176 + 50 + + + + person with helmet + Unspecified + 1 + 0 + + 101 + 1 + 227 + 171 + + + diff --git a/train_annot_folder/worker (249).xml b/train_annot_folder/worker (249).xml new file mode 100644 index 000000000..66c777062 --- /dev/null +++ b/train_annot_folder/worker (249).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (249).jpg + D:\dataset\all_images_folder\worker (249).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 81 + 178 + 109 + + + + helmet + Unspecified + 0 + 0 + + 199 + 95 + 235 + 120 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 78 + 193 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 192 + 94 + 264 + 179 + + + diff --git a/train_annot_folder/worker (25).xml b/train_annot_folder/worker (25).xml new file mode 100644 index 000000000..7e29285d3 --- /dev/null +++ b/train_annot_folder/worker (25).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (25).jpg + D:\dataset\all_images_folder\worker (25).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 139 + 23 + 209 + 183 + + + + helmet + Unspecified + 0 + 0 + + 156 + 23 + 211 + 61 + + + diff --git a/train_annot_folder/worker (250).xml b/train_annot_folder/worker (250).xml new file mode 100644 index 000000000..f3339a649 --- /dev/null +++ b/train_annot_folder/worker (250).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (250).jpg + D:\dataset\all_images_folder\worker (250).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 55 + 68 + 114 + + + + helmet + Unspecified + 0 + 0 + + 66 + 55 + 114 + 113 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 52 + 67 + 263 + + + + person with helmet + Unspecified + 0 + 0 + + 63 + 56 + 139 + 249 + + + diff --git a/train_annot_folder/worker (251).xml b/train_annot_folder/worker (251).xml new file mode 100644 index 000000000..007e6eda8 --- /dev/null +++ b/train_annot_folder/worker (251).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (251).jpg + D:\dataset\all_images_folder\worker (251).jpg + + Unknown + + + 271 + 186 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 97 + 17 + 193 + 84 + + + diff --git a/train_annot_folder/worker (252).xml b/train_annot_folder/worker (252).xml new file mode 100644 index 000000000..4b1697735 --- /dev/null +++ b/train_annot_folder/worker (252).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (252).jpg + D:\dataset\all_images_folder\worker (252).jpg + + Unknown + + + 286 + 176 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 165 + 53 + 216 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 52 + 255 + 173 + + + diff --git a/train_annot_folder/worker (253).xml b/train_annot_folder/worker (253).xml new file mode 100644 index 000000000..740d84c75 --- /dev/null +++ b/train_annot_folder/worker (253).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (253).jpg + D:\dataset\all_images_folder\worker (253).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 102 + 56 + 162 + 182 + + + + helmet + Unspecified + 0 + 0 + + 120 + 57 + 149 + 78 + + + diff --git a/train_annot_folder/worker (254).xml b/train_annot_folder/worker (254).xml new file mode 100644 index 000000000..013fa77b8 --- /dev/null +++ b/train_annot_folder/worker (254).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (254).jpg + D:\dataset\all_images_folder\worker (254).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 67 + 34 + 102 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 33 + 115 + 179 + + + diff --git a/train_annot_folder/worker (255).xml b/train_annot_folder/worker (255).xml new file mode 100644 index 000000000..5150f9eb7 --- /dev/null +++ b/train_annot_folder/worker (255).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (255).jpg + D:\dataset\all_images_folder\worker (255).jpg + + Unknown + + + 263 + 191 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 62 + 49 + 126 + 179 + + + + helmet + Unspecified + 0 + 0 + + 79 + 50 + 109 + 71 + + + diff --git a/train_annot_folder/worker (256).xml b/train_annot_folder/worker (256).xml new file mode 100644 index 000000000..762e26df2 --- /dev/null +++ b/train_annot_folder/worker (256).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (256).jpg + D:\dataset\all_images_folder\worker (256).jpg + + Unknown + + + 284 + 160 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 94 + 65 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 112 + 160 + + + diff --git a/train_annot_folder/worker (257).xml b/train_annot_folder/worker (257).xml new file mode 100644 index 000000000..1562baca1 --- /dev/null +++ b/train_annot_folder/worker (257).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (257).jpg + D:\dataset\all_images_folder\worker (257).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 151 + 24 + 217 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 122 + 20 + 159 + 114 + + + + helmet + Unspecified + 0 + 0 + + 125 + 22 + 152 + 50 + + + + helmet + Unspecified + 0 + 0 + + 154 + 25 + 192 + 50 + + + diff --git a/train_annot_folder/worker (258).xml b/train_annot_folder/worker (258).xml new file mode 100644 index 000000000..12e7c1281 --- /dev/null +++ b/train_annot_folder/worker (258).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (258).jpg + D:\dataset\all_images_folder\worker (258).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 108 + 6 + 147 + 30 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 5 + 151 + 171 + + + diff --git a/train_annot_folder/worker (259).xml b/train_annot_folder/worker (259).xml new file mode 100644 index 000000000..9fd34a0df --- /dev/null +++ b/train_annot_folder/worker (259).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (259).jpg + D:\dataset\all_images_folder\worker (259).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 125 + 48 + 173 + 175 + + + + helmet + Unspecified + 0 + 0 + + 141 + 50 + 166 + 71 + + + diff --git a/train_annot_folder/worker (26).xml b/train_annot_folder/worker (26).xml new file mode 100644 index 000000000..b4bc8c38e --- /dev/null +++ b/train_annot_folder/worker (26).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (26).jpg + D:\dataset\all_images_folder\worker (26).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 42 + 3 + 96 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 5 + 113 + 176 + + + diff --git a/train_annot_folder/worker (260).xml b/train_annot_folder/worker (260).xml new file mode 100644 index 000000000..054265191 --- /dev/null +++ b/train_annot_folder/worker (260).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (260).jpg + D:\dataset\all_images_folder\worker (260).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 107 + 1 + 272 + 180 + + + + helmet + Unspecified + 1 + 0 + + 110 + 1 + 274 + 63 + + + diff --git a/train_annot_folder/worker (261).xml b/train_annot_folder/worker (261).xml new file mode 100644 index 000000000..594968044 --- /dev/null +++ b/train_annot_folder/worker (261).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (261).jpg + D:\dataset\all_images_folder\worker (261).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 57 + 166 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 144 + 55 + 180 + 143 + + + diff --git a/train_annot_folder/worker (262).xml b/train_annot_folder/worker (262).xml new file mode 100644 index 000000000..1240eed51 --- /dev/null +++ b/train_annot_folder/worker (262).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (262).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (262).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 139 + 111 + 160 + 157 + + + diff --git a/train_annot_folder/worker (263).xml b/train_annot_folder/worker (263).xml new file mode 100644 index 000000000..75c4b6d7b --- /dev/null +++ b/train_annot_folder/worker (263).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (263).jpg + D:\dataset\all_images_folder\worker (263).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 123 + 61 + 153 + 166 + + + + helmet + Unspecified + 0 + 0 + + 125 + 61 + 140 + 71 + + + diff --git a/train_annot_folder/worker (264).xml b/train_annot_folder/worker (264).xml new file mode 100644 index 000000000..a9a1b7135 --- /dev/null +++ b/train_annot_folder/worker (264).xml @@ -0,0 +1,74 @@ + + dataset_images + worker (264).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (264).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 124 + 16 + 149 + 39 + + + + helmet + Unspecified + 0 + 0 + + 107 + 14 + 131 + 31 + + + + helmet + Unspecified + 0 + 0 + + 179 + 4 + 205 + 25 + + + + person + Unspecified + 1 + 0 + + 23 + 1 + 159 + 168 + + + + person + Unspecified + 1 + 0 + + 152 + 1 + 285 + 167 + + + diff --git a/train_annot_folder/worker (265).xml b/train_annot_folder/worker (265).xml new file mode 100644 index 000000000..e68d651ae --- /dev/null +++ b/train_annot_folder/worker (265).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (265).jpg + D:\dataset\all_images_folder\worker (265).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 201 + 36 + 249 + 72 + + + + person with helmet + Unspecified + 1 + 0 + + 194 + 37 + 253 + 183 + + + diff --git a/train_annot_folder/worker (266).xml b/train_annot_folder/worker (266).xml new file mode 100644 index 000000000..901ecbbed --- /dev/null +++ b/train_annot_folder/worker (266).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (266).jpg + D:\dataset\all_images_folder\worker (266).jpg + + Unknown + + + 251 + 201 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 29 + 7 + 140 + 196 + + + + helmet + Unspecified + 0 + 0 + + 52 + 7 + 125 + 53 + + + diff --git a/train_annot_folder/worker (267).xml b/train_annot_folder/worker (267).xml new file mode 100644 index 000000000..8a13d966e --- /dev/null +++ b/train_annot_folder/worker (267).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (267).jpg + D:\dataset\all_images_folder\worker (267).jpg + + Unknown + + + 240 + 160 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 119 + 1 + 230 + 66 + + + + person with helmet + Unspecified + 1 + 0 + + 83 + 1 + 234 + 156 + + + diff --git a/train_annot_folder/worker (268).xml b/train_annot_folder/worker (268).xml new file mode 100644 index 000000000..4eae23be7 --- /dev/null +++ b/train_annot_folder/worker (268).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (268).jpg + D:\dataset\all_images_folder\worker (268).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 118 + 23 + 213 + 193 + + + + helmet + Unspecified + 0 + 0 + + 152 + 23 + 210 + 72 + + + diff --git a/train_annot_folder/worker (269).xml b/train_annot_folder/worker (269).xml new file mode 100644 index 000000000..e956a9e9b --- /dev/null +++ b/train_annot_folder/worker (269).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (269).jpg + D:\dataset\all_images_folder\worker (269).jpg + + Unknown + + + 311 + 162 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 130 + 1 + 246 + 71 + + + + person with helmet + Unspecified + 1 + 0 + + 120 + 1 + 282 + 162 + + + diff --git a/train_annot_folder/worker (27).xml b/train_annot_folder/worker (27).xml new file mode 100644 index 000000000..3c1590d7c --- /dev/null +++ b/train_annot_folder/worker (27).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (27).jpg + D:\dataset\all_images_folder\worker (27).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 40 + 44 + 113 + 173 + + + + helmet + Unspecified + 0 + 0 + + 64 + 44 + 89 + 63 + + + diff --git a/train_annot_folder/worker (270).xml b/train_annot_folder/worker (270).xml new file mode 100644 index 000000000..85e64089e --- /dev/null +++ b/train_annot_folder/worker (270).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (270).jpg + D:\dataset\all_images_folder\worker (270).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 2 + 136 + 32 + + + + helmet + Unspecified + 1 + 0 + + 166 + 1 + 189 + 26 + + + + helmet + Unspecified + 0 + 0 + + 222 + 2 + 251 + 33 + + + + helmet + Unspecified + 1 + 0 + + 253 + 70 + 266 + 91 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 2 + 144 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 2 + 193 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 196 + 4 + 247 + 75 + + + + person with helmet + Unspecified + 1 + 0 + + 212 + 66 + 266 + 121 + + + diff --git a/train_annot_folder/worker (271).xml b/train_annot_folder/worker (271).xml new file mode 100644 index 000000000..71882b7d5 --- /dev/null +++ b/train_annot_folder/worker (271).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (271).jpg + D:\dataset\all_images_folder\worker (271).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 46 + 75 + 152 + 274 + + + + helmet + Unspecified + 0 + 0 + + 67 + 73 + 121 + 102 + + + diff --git a/train_annot_folder/worker (272).xml b/train_annot_folder/worker (272).xml new file mode 100644 index 000000000..3e924688b --- /dev/null +++ b/train_annot_folder/worker (272).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (272).jpg + D:\dataset\all_images_folder\worker (272).jpg + + Unknown + + + 325 + 155 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 130 + 1 + 313 + 144 + + + diff --git a/train_annot_folder/worker (273).xml b/train_annot_folder/worker (273).xml new file mode 100644 index 000000000..730a6498c --- /dev/null +++ b/train_annot_folder/worker (273).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (273).jpg + D:\dataset\all_images_folder\worker (273).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 63 + 93 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 52 + 60 + 101 + 168 + + + diff --git a/train_annot_folder/worker (275).xml b/train_annot_folder/worker (275).xml new file mode 100644 index 000000000..b30a0a921 --- /dev/null +++ b/train_annot_folder/worker (275).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (275).jpg + D:\dataset\all_images_folder\worker (275).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 174 + 4 + 238 + 176 + + + + helmet + Unspecified + 0 + 0 + + 175 + 5 + 222 + 29 + + + diff --git a/train_annot_folder/worker (276).xml b/train_annot_folder/worker (276).xml new file mode 100644 index 000000000..09ee78e03 --- /dev/null +++ b/train_annot_folder/worker (276).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (276).jpg + D:\dataset\all_images_folder\worker (276).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 100 + 67 + 117 + 81 + + + + helmet + Unspecified + 0 + 0 + + 126 + 59 + 141 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 87 + 68 + 123 + 155 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 57 + 164 + 142 + + + diff --git a/train_annot_folder/worker (278).xml b/train_annot_folder/worker (278).xml new file mode 100644 index 000000000..7d49663ed --- /dev/null +++ b/train_annot_folder/worker (278).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (278).jpg + D:\dataset\all_images_folder\worker (278).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 4 + 233 + 182 + + + diff --git a/train_annot_folder/worker (279).xml b/train_annot_folder/worker (279).xml new file mode 100644 index 000000000..9b270d13d --- /dev/null +++ b/train_annot_folder/worker (279).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (279).jpg + D:\dataset\all_images_folder\worker (279).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 109 + 22 + 140 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 70 + 20 + 144 + 104 + + + diff --git a/train_annot_folder/worker (28).xml b/train_annot_folder/worker (28).xml new file mode 100644 index 000000000..46dfa59ae --- /dev/null +++ b/train_annot_folder/worker (28).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (28).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (28).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 2 + 55 + 223 + 225 + + + diff --git a/train_annot_folder/worker (280).xml b/train_annot_folder/worker (280).xml new file mode 100644 index 000000000..523b6e120 --- /dev/null +++ b/train_annot_folder/worker (280).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (280).jpg + D:\dataset\all_images_folder\worker (280).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 26 + 7 + 114 + 182 + + + + helmet + Unspecified + 0 + 0 + + 59 + 8 + 114 + 49 + + + diff --git a/train_annot_folder/worker (281).xml b/train_annot_folder/worker (281).xml new file mode 100644 index 000000000..0d72b6288 --- /dev/null +++ b/train_annot_folder/worker (281).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (281).jpg + D:\dataset\all_images_folder\worker (281).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 116 + 8 + 246 + 176 + + + diff --git a/train_annot_folder/worker (282).xml b/train_annot_folder/worker (282).xml new file mode 100644 index 000000000..1fcf19f04 --- /dev/null +++ b/train_annot_folder/worker (282).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (282).jpg + D:\dataset\all_images_folder\worker (282).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 70 + 55 + 103 + 75 + + + + helmet + Unspecified + 0 + 0 + + 151 + 49 + 180 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 51 + 114 + 175 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 46 + 199 + 174 + + + diff --git a/train_annot_folder/worker (283).xml b/train_annot_folder/worker (283).xml new file mode 100644 index 000000000..85ae53efe --- /dev/null +++ b/train_annot_folder/worker (283).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (283).jpg + D:\dataset\all_images_folder\worker (283).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 82 + 30 + 158 + 172 + + + + helmet + Unspecified + 0 + 0 + + 102 + 30 + 137 + 52 + + + diff --git a/train_annot_folder/worker (284).xml b/train_annot_folder/worker (284).xml new file mode 100644 index 000000000..b452f5505 --- /dev/null +++ b/train_annot_folder/worker (284).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (284).jpg + D:\dataset\all_images_folder\worker (284).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 57 + 2 + 139 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 35 + 3 + 151 + 175 + + + diff --git a/train_annot_folder/worker (285).xml b/train_annot_folder/worker (285).xml new file mode 100644 index 000000000..3b7ab7529 --- /dev/null +++ b/train_annot_folder/worker (285).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (285).jpg + D:\dataset\all_images_folder\worker (285).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 79 + 78 + 107 + 175 + + + + person with helmet + Unspecified + 0 + 0 + + 132 + 61 + 185 + 178 + + + + helmet + Unspecified + 0 + 0 + + 81 + 77 + 104 + 91 + + + + helmet + Unspecified + 0 + 0 + + 137 + 59 + 159 + 76 + + + diff --git a/train_annot_folder/worker (289).xml b/train_annot_folder/worker (289).xml new file mode 100644 index 000000000..dd56c3093 --- /dev/null +++ b/train_annot_folder/worker (289).xml @@ -0,0 +1,134 @@ + + dataset_images + worker (289).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (289).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 140 + 42 + 156 + 53 + + + + helmet + Unspecified + 0 + 0 + + 70 + 38 + 91 + 51 + + + + helmet + Unspecified + 0 + 0 + + 221 + 58 + 231 + 65 + + + + person + Unspecified + 0 + 0 + + 215 + 55 + 240 + 112 + + + + person + Unspecified + 0 + 0 + + 129 + 42 + 158 + 137 + + + + person + Unspecified + 0 + 0 + + 62 + 37 + 108 + 83 + + + + person + Unspecified + 0 + 0 + + 166 + 55 + 180 + 97 + + + + person + Unspecified + 0 + 0 + + 245 + 52 + 263 + 103 + + + + person + Unspecified + 1 + 0 + + 1 + 40 + 13 + 118 + + + + person + Unspecified + 0 + 0 + + 3 + 40 + 66 + 177 + + + diff --git a/train_annot_folder/worker (29).xml b/train_annot_folder/worker (29).xml new file mode 100644 index 000000000..25914ff10 --- /dev/null +++ b/train_annot_folder/worker (29).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (29).jpg + D:\dataset\all_images_folder\worker (29).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 100 + 19 + 138 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 58 + 15 + 139 + 183 + + + diff --git a/train_annot_folder/worker (290).xml b/train_annot_folder/worker (290).xml new file mode 100644 index 000000000..f27e43179 --- /dev/null +++ b/train_annot_folder/worker (290).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (290).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (290).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 91 + 1 + 263 + 42 + + + + person + Unspecified + 1 + 0 + + 63 + 1 + 294 + 167 + + + diff --git a/train_annot_folder/worker (291).xml b/train_annot_folder/worker (291).xml new file mode 100644 index 000000000..f03cb2234 --- /dev/null +++ b/train_annot_folder/worker (291).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (291).jpg + D:\dataset\all_images_folder\worker (291).jpg + + Unknown + + + 255 + 197 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 34 + 45 + 90 + 75 + + + + helmet + Unspecified + 0 + 0 + + 155 + 4 + 209 + 38 + + + + person with helmet + Unspecified + 1 + 0 + + 8 + 41 + 114 + 197 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 3 + 245 + 183 + + + diff --git a/train_annot_folder/worker (293).xml b/train_annot_folder/worker (293).xml new file mode 100644 index 000000000..d40e29fb6 --- /dev/null +++ b/train_annot_folder/worker (293).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (293).jpg + D:\dataset\all_images_folder\worker (293).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 182 + 71 + 214 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 159 + 67 + 229 + 174 + + + diff --git a/train_annot_folder/worker (295).xml b/train_annot_folder/worker (295).xml new file mode 100644 index 000000000..0df70aaa2 --- /dev/null +++ b/train_annot_folder/worker (295).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (295).jpg + D:\dataset\all_images_folder\worker (295).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 136 + 10 + 229 + 185 + + + + helmet + Unspecified + 0 + 0 + + 151 + 10 + 221 + 52 + + + diff --git a/train_annot_folder/worker (296).xml b/train_annot_folder/worker (296).xml new file mode 100644 index 000000000..32655315d --- /dev/null +++ b/train_annot_folder/worker (296).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (296).jpg + D:\dataset\all_images_folder\worker (296).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 46 + 18 + 225 + 164 + + + diff --git a/train_annot_folder/worker (298).xml b/train_annot_folder/worker (298).xml new file mode 100644 index 000000000..3ba7f06ac --- /dev/null +++ b/train_annot_folder/worker (298).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (298).jpg + D:\dataset\all_images_folder\worker (298).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 79 + 9 + 126 + 49 + + + + helmet + Unspecified + 0 + 0 + + 136 + 5 + 198 + 56 + + + + person with helmet + Unspecified + 1 + 0 + + 48 + 1 + 136 + 222 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 6 + 223 + 221 + + + diff --git a/train_annot_folder/worker (299).xml b/train_annot_folder/worker (299).xml new file mode 100644 index 000000000..30c060844 --- /dev/null +++ b/train_annot_folder/worker (299).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (299).jpg + D:\dataset\all_images_folder\worker (299).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 61 + 1 + 235 + 174 + + + + helmet + Unspecified + 1 + 0 + + 65 + 1 + 173 + 56 + + + diff --git a/train_annot_folder/worker (3).xml b/train_annot_folder/worker (3).xml new file mode 100644 index 000000000..4d123bfa6 --- /dev/null +++ b/train_annot_folder/worker (3).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (3).jpg + D:\dataset\all_images_folder\worker (3).jpg + + Unknown + + + 182 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 20 + 142 + 92 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 20 + 178 + 259 + + + diff --git a/train_annot_folder/worker (30).xml b/train_annot_folder/worker (30).xml new file mode 100644 index 000000000..277c46670 --- /dev/null +++ b/train_annot_folder/worker (30).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (30).jpg + D:\dataset\all_images_folder\worker (30).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 124 + 6 + 235 + 166 + + + + helmet + Unspecified + 0 + 0 + + 146 + 8 + 200 + 41 + + + diff --git a/train_annot_folder/worker (300).xml b/train_annot_folder/worker (300).xml new file mode 100644 index 000000000..af8d5f27e --- /dev/null +++ b/train_annot_folder/worker (300).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (300).jpg + D:\dataset\all_images_folder\worker (300).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 2 + 182 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 62 + 3 + 226 + 164 + + + diff --git a/train_annot_folder/worker (301).xml b/train_annot_folder/worker (301).xml new file mode 100644 index 000000000..f90b6a8af --- /dev/null +++ b/train_annot_folder/worker (301).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (301).jpg + D:\dataset\all_images_folder\worker (301).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 173 + 9 + 255 + 181 + + + + helmet + Unspecified + 0 + 0 + + 175 + 12 + 234 + 60 + + + diff --git a/train_annot_folder/worker (302).xml b/train_annot_folder/worker (302).xml new file mode 100644 index 000000000..909e9cdf2 --- /dev/null +++ b/train_annot_folder/worker (302).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (302).jpg + D:\dataset\all_images_folder\worker (302).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 79 + 4 + 134 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 51 + 4 + 146 + 173 + + + diff --git a/train_annot_folder/worker (304).xml b/train_annot_folder/worker (304).xml new file mode 100644 index 000000000..e58ce5134 --- /dev/null +++ b/train_annot_folder/worker (304).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (304).jpg + D:\dataset\all_images_folder\worker (304).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 121 + 49 + 228 + 129 + + + diff --git a/train_annot_folder/worker (305).xml b/train_annot_folder/worker (305).xml new file mode 100644 index 000000000..e5511411e --- /dev/null +++ b/train_annot_folder/worker (305).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (305).jpg + D:\dataset\all_images_folder\worker (305).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 48 + 2 + 168 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 46 + 3 + 167 + 180 + + + diff --git a/train_annot_folder/worker (306).xml b/train_annot_folder/worker (306).xml new file mode 100644 index 000000000..7c7d0c772 --- /dev/null +++ b/train_annot_folder/worker (306).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (306).jpg + D:\dataset\all_images_folder\worker (306).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 188 + 20 + 255 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 177 + 17 + 267 + 178 + + + diff --git a/train_annot_folder/worker (307).xml b/train_annot_folder/worker (307).xml new file mode 100644 index 000000000..242d22b6f --- /dev/null +++ b/train_annot_folder/worker (307).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (307).jpg + D:\dataset\all_images_folder\worker (307).jpg + + Unknown + + + 240 + 160 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 85 + 6 + 116 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 7 + 135 + 154 + + + diff --git a/train_annot_folder/worker (308).xml b/train_annot_folder/worker (308).xml new file mode 100644 index 000000000..24138282d --- /dev/null +++ b/train_annot_folder/worker (308).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (308).jpg + D:\dataset\all_images_folder\worker (308).jpg + + Unknown + + + 179 + 282 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 7 + 16 + 179 + 273 + + + + helmet + Unspecified + 0 + 0 + + 30 + 15 + 148 + 90 + + + diff --git a/train_annot_folder/worker (309).xml b/train_annot_folder/worker (309).xml new file mode 100644 index 000000000..283cdbe41 --- /dev/null +++ b/train_annot_folder/worker (309).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (309).jpg + D:\dataset\all_images_folder\worker (309).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 18 + 181 + 48 + + + + helmet + Unspecified + 1 + 0 + + 25 + 1 + 88 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 12 + 1 + 101 + 175 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 16 + 195 + 180 + + + diff --git a/train_annot_folder/worker (310).xml b/train_annot_folder/worker (310).xml new file mode 100644 index 000000000..f61176883 --- /dev/null +++ b/train_annot_folder/worker (310).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (310).jpg + D:\dataset\all_images_folder\worker (310).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 135 + 1 + 222 + 183 + + + + helmet + Unspecified + 1 + 0 + + 138 + 1 + 205 + 37 + + + diff --git a/train_annot_folder/worker (312).xml b/train_annot_folder/worker (312).xml new file mode 100644 index 000000000..146d6d001 --- /dev/null +++ b/train_annot_folder/worker (312).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (312).jpg + D:\dataset\all_images_folder\worker (312).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 113 + 1 + 241 + 83 + + + + person with helmet + Unspecified + 1 + 0 + + 108 + 2 + 242 + 168 + + + diff --git a/train_annot_folder/worker (313).xml b/train_annot_folder/worker (313).xml new file mode 100644 index 000000000..9ddb6e4a0 --- /dev/null +++ b/train_annot_folder/worker (313).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (313).jpg + D:\dataset\all_images_folder\worker (313).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 138 + 22 + 225 + 167 + + + + helmet + Unspecified + 0 + 0 + + 144 + 22 + 210 + 67 + + + diff --git a/train_annot_folder/worker (314).xml b/train_annot_folder/worker (314).xml new file mode 100644 index 000000000..4454ee298 --- /dev/null +++ b/train_annot_folder/worker (314).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (314).jpg + D:\dataset\all_images_folder\worker (314).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 104 + 177 + + + diff --git a/train_annot_folder/worker (315).xml b/train_annot_folder/worker (315).xml new file mode 100644 index 000000000..b8063e1d3 --- /dev/null +++ b/train_annot_folder/worker (315).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (315).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (315).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 47 + 1 + 237 + 167 + + + diff --git a/train_annot_folder/worker (316).xml b/train_annot_folder/worker (316).xml new file mode 100644 index 000000000..e2a4ee884 --- /dev/null +++ b/train_annot_folder/worker (316).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (316).jpg + D:\dataset\all_images_folder\worker (316).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 90 + 7 + 162 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 6 + 212 + 170 + + + diff --git a/train_annot_folder/worker (317).xml b/train_annot_folder/worker (317).xml new file mode 100644 index 000000000..ddbf937d9 --- /dev/null +++ b/train_annot_folder/worker (317).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (317).jpg + D:\dataset\all_images_folder\worker (317).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 9 + 40 + 93 + 189 + + + + person with helmet + Unspecified + 1 + 0 + + 157 + 58 + 221 + 189 + + + + helmet + Unspecified + 0 + 0 + + 30 + 40 + 76 + 72 + + + + helmet + Unspecified + 0 + 0 + + 159 + 59 + 204 + 82 + + + diff --git a/train_annot_folder/worker (318).xml b/train_annot_folder/worker (318).xml new file mode 100644 index 000000000..20e1a5d68 --- /dev/null +++ b/train_annot_folder/worker (318).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (318).jpg + D:\dataset\all_images_folder\worker (318).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 180 + 1 + 206 + 18 + + + + person with helmet + Unspecified + 1 + 0 + + 153 + 1 + 224 + 183 + + + diff --git a/train_annot_folder/worker (319).xml b/train_annot_folder/worker (319).xml new file mode 100644 index 000000000..ef1a522f7 --- /dev/null +++ b/train_annot_folder/worker (319).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (319).jpg + D:\dataset\all_images_folder\worker (319).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 86 + 40 + 157 + 165 + + + + helmet + Unspecified + 0 + 0 + + 94 + 40 + 152 + 75 + + + diff --git a/train_annot_folder/worker (32).xml b/train_annot_folder/worker (32).xml new file mode 100644 index 000000000..701d5f2bc --- /dev/null +++ b/train_annot_folder/worker (32).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (32).jpg + D:\dataset\all_images_folder\worker (32).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 141 + 45 + 177 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 128 + 43 + 191 + 174 + + + diff --git a/train_annot_folder/worker (320).xml b/train_annot_folder/worker (320).xml new file mode 100644 index 000000000..cb3d75291 --- /dev/null +++ b/train_annot_folder/worker (320).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (320).jpg + D:\dataset\all_images_folder\worker (320).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 43 + 8 + 129 + 257 + + + + helmet + Unspecified + 0 + 0 + + 57 + 10 + 94 + 32 + + + diff --git a/train_annot_folder/worker (321).xml b/train_annot_folder/worker (321).xml new file mode 100644 index 000000000..feccd828f --- /dev/null +++ b/train_annot_folder/worker (321).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (321).jpg + D:\dataset\all_images_folder\worker (321).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 150 + 12 + 208 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 112 + 11 + 235 + 182 + + + diff --git a/train_annot_folder/worker (322).xml b/train_annot_folder/worker (322).xml new file mode 100644 index 000000000..9b425e2c3 --- /dev/null +++ b/train_annot_folder/worker (322).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (322).jpg + D:\dataset\all_images_folder\worker (322).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 20 + 140 + 78 + 272 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 147 + 130 + 274 + + + + helmet + Unspecified + 0 + 0 + + 28 + 138 + 63 + 167 + + + + helmet + Unspecified + 0 + 0 + + 78 + 147 + 112 + 166 + + + diff --git a/train_annot_folder/worker (323).xml b/train_annot_folder/worker (323).xml new file mode 100644 index 000000000..23bc53796 --- /dev/null +++ b/train_annot_folder/worker (323).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (323).jpg + D:\dataset\all_images_folder\worker (323).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 76 + 28 + 260 + 151 + + + diff --git a/train_annot_folder/worker (324).xml b/train_annot_folder/worker (324).xml new file mode 100644 index 000000000..fea35e96f --- /dev/null +++ b/train_annot_folder/worker (324).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (324).jpg + D:\dataset\all_images_folder\worker (324).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 55 + 10 + 147 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 46 + 7 + 187 + 193 + + + diff --git a/train_annot_folder/worker (327).xml b/train_annot_folder/worker (327).xml new file mode 100644 index 000000000..58d491d4c --- /dev/null +++ b/train_annot_folder/worker (327).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (327).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (327).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 92 + 45 + 231 + 176 + + + diff --git a/train_annot_folder/worker (328).xml b/train_annot_folder/worker (328).xml new file mode 100644 index 000000000..4032b572a --- /dev/null +++ b/train_annot_folder/worker (328).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (328).jpg + D:\dataset\all_images_folder\worker (328).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 114 + 2 + 174 + 167 + + + + helmet + Unspecified + 0 + 0 + + 139 + 2 + 158 + 17 + + + diff --git a/train_annot_folder/worker (33).xml b/train_annot_folder/worker (33).xml new file mode 100644 index 000000000..4d87c874c --- /dev/null +++ b/train_annot_folder/worker (33).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (33).jpg + D:\dataset\all_images_folder\worker (33).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 155 + 178 + + + diff --git a/train_annot_folder/worker (330).xml b/train_annot_folder/worker (330).xml new file mode 100644 index 000000000..ca33198fd --- /dev/null +++ b/train_annot_folder/worker (330).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (330).jpg + D:\dataset\all_images_folder\worker (330).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 69 + 168 + 137 + 213 + + + + person with helmet + Unspecified + 1 + 0 + + 54 + 166 + 167 + 275 + + + diff --git a/train_annot_folder/worker (331).xml b/train_annot_folder/worker (331).xml new file mode 100644 index 000000000..9339e9f6e --- /dev/null +++ b/train_annot_folder/worker (331).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (331).jpg + D:\dataset\all_images_folder\worker (331).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 53 + 62 + 82 + + + + helmet + Unspecified + 0 + 0 + + 70 + 41 + 100 + 64 + + + + helmet + Unspecified + 0 + 0 + + 127 + 27 + 166 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 53 + 78 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 39 + 116 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 119 + 27 + 178 + 176 + + + diff --git a/train_annot_folder/worker (332).xml b/train_annot_folder/worker (332).xml new file mode 100644 index 000000000..ac41c3cf0 --- /dev/null +++ b/train_annot_folder/worker (332).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (332).jpg + D:\dataset\all_images_folder\worker (332).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 41 + 136 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 42 + 146 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 158 + 67 + 185 + 103 + + + + helmet + Unspecified + 0 + 0 + + 162 + 66 + 178 + 79 + + + + person without helmet + Unspecified + 1 + 0 + + 186 + 64 + 267 + 183 + + + diff --git a/train_annot_folder/worker (333).xml b/train_annot_folder/worker (333).xml new file mode 100644 index 000000000..1c7cd20d4 --- /dev/null +++ b/train_annot_folder/worker (333).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (333).jpg + D:\dataset\all_images_folder\worker (333).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 74 + 58 + 131 + 159 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 142 + 183 + + + diff --git a/train_annot_folder/worker (334).xml b/train_annot_folder/worker (334).xml new file mode 100644 index 000000000..956c5d3bd --- /dev/null +++ b/train_annot_folder/worker (334).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (334).jpg + D:\dataset\all_images_folder\worker (334).jpg + + Unknown + + + 259 + 195 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 26 + 237 + 160 + + + diff --git a/train_annot_folder/worker (335).xml b/train_annot_folder/worker (335).xml new file mode 100644 index 000000000..6c2ba2f29 --- /dev/null +++ b/train_annot_folder/worker (335).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (335).jpg + D:\dataset\all_images_folder\worker (335).jpg + + Unknown + + + 277 + 182 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 5 + 14 + 85 + 113 + + + + person with helmet + Unspecified + 1 + 0 + + 116 + 1 + 257 + 182 + + + + helmet + Unspecified + 1 + 0 + + 118 + 1 + 258 + 102 + + + + helmet + Unspecified + 1 + 0 + + 82 + 1 + 148 + 49 + + + diff --git a/train_annot_folder/worker (337).xml b/train_annot_folder/worker (337).xml new file mode 100644 index 000000000..087818973 --- /dev/null +++ b/train_annot_folder/worker (337).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (337).jpg + D:\dataset\all_images_folder\worker (337).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 91 + 1 + 167 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 39 + 1 + 174 + 167 + + + diff --git a/train_annot_folder/worker (338).xml b/train_annot_folder/worker (338).xml new file mode 100644 index 000000000..2de12e246 --- /dev/null +++ b/train_annot_folder/worker (338).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (338).jpg + D:\dataset\all_images_folder\worker (338).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 35 + 1 + 155 + 168 + + + + helmet + Unspecified + 1 + 0 + + 51 + 1 + 150 + 31 + + + diff --git a/train_annot_folder/worker (339).xml b/train_annot_folder/worker (339).xml new file mode 100644 index 000000000..2a3350c62 --- /dev/null +++ b/train_annot_folder/worker (339).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (339).jpg + D:\dataset\all_images_folder\worker (339).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 17 + 13 + 202 + 125 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 11 + 212 + 222 + + + diff --git a/train_annot_folder/worker (34).xml b/train_annot_folder/worker (34).xml new file mode 100644 index 000000000..ade6a1e1c --- /dev/null +++ b/train_annot_folder/worker (34).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (34).jpg + D:\dataset\all_images_folder\worker (34).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 126 + 3 + 266 + 128 + + + diff --git a/train_annot_folder/worker (340).xml b/train_annot_folder/worker (340).xml new file mode 100644 index 000000000..62c9e987e --- /dev/null +++ b/train_annot_folder/worker (340).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (340).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (340).jpg + + Unknown + + + 309 + 163 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 3 + 3 + 235 + 162 + + + diff --git a/train_annot_folder/worker (341).xml b/train_annot_folder/worker (341).xml new file mode 100644 index 000000000..e69436df0 --- /dev/null +++ b/train_annot_folder/worker (341).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (341).jpg + D:\dataset\all_images_folder\worker (341).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 20 + 18 + 69 + 156 + + + diff --git a/train_annot_folder/worker (345).xml b/train_annot_folder/worker (345).xml new file mode 100644 index 000000000..3a5747e5c --- /dev/null +++ b/train_annot_folder/worker (345).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (345).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (345).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 39 + 5 + 262 + 168 + + + diff --git a/train_annot_folder/worker (346).xml b/train_annot_folder/worker (346).xml new file mode 100644 index 000000000..10fef72dc --- /dev/null +++ b/train_annot_folder/worker (346).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (346).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (346).jpg + + Unknown + + + 272 + 185 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 116 + 42 + 269 + 185 + + + + person + Unspecified + 0 + 0 + + 15 + 60 + 100 + 132 + + + diff --git a/train_annot_folder/worker (348).xml b/train_annot_folder/worker (348).xml new file mode 100644 index 000000000..0c4034558 --- /dev/null +++ b/train_annot_folder/worker (348).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (348).jpg + D:\dataset\all_images_folder\worker (348).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 75 + 1 + 152 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 72 + 3 + 206 + 129 + + + diff --git a/train_annot_folder/worker (349).xml b/train_annot_folder/worker (349).xml new file mode 100644 index 000000000..3a4bd23a2 --- /dev/null +++ b/train_annot_folder/worker (349).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (349).jpg + D:\dataset\all_images_folder\worker (349).jpg + + Unknown + + + 222 + 227 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 1 + 2 + 115 + 225 + + + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 111 + 62 + + + diff --git a/train_annot_folder/worker (35).xml b/train_annot_folder/worker (35).xml new file mode 100644 index 000000000..82877b13d --- /dev/null +++ b/train_annot_folder/worker (35).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (35).jpg + D:\dataset\all_images_folder\worker (35).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 23 + 13 + 103 + 61 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 13 + 104 + 188 + + + diff --git a/train_annot_folder/worker (350).xml b/train_annot_folder/worker (350).xml new file mode 100644 index 000000000..5643bd0f9 --- /dev/null +++ b/train_annot_folder/worker (350).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (350).jpg + D:\dataset\all_images_folder\worker (350).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 9 + 1 + 107 + 50 + + + + person with helmet + Unspecified + 1 + 0 + + 9 + 1 + 108 + 110 + + + + helmet + Unspecified + 1 + 0 + + 119 + 1 + 215 + 50 + + + + helmet + Unspecified + 0 + 0 + + 60 + 117 + 158 + 176 + + + + person with helmet + Unspecified + 1 + 0 + + 119 + 1 + 217 + 109 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 118 + 158 + 224 + + + diff --git a/train_annot_folder/worker (351).xml b/train_annot_folder/worker (351).xml new file mode 100644 index 000000000..09de510da --- /dev/null +++ b/train_annot_folder/worker (351).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (351).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (351).jpg + + Unknown + + + 196 + 257 + 1 + + 0 + + person + Unspecified + 1 + 0 + + 1 + 20 + 94 + 188 + + + diff --git a/train_annot_folder/worker (353).xml b/train_annot_folder/worker (353).xml new file mode 100644 index 000000000..a4922310f --- /dev/null +++ b/train_annot_folder/worker (353).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (353).jpg + D:\dataset\all_images_folder\worker (353).jpg + + Unknown + + + 197 + 256 + 1 + + 0 + + helmet + Unspecified + 0 + 0 + + 52 + 7 + 151 + 63 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 7 + 177 + 254 + + + diff --git a/train_annot_folder/worker (354).xml b/train_annot_folder/worker (354).xml new file mode 100644 index 000000000..49c7490de --- /dev/null +++ b/train_annot_folder/worker (354).xml @@ -0,0 +1,14 @@ + + all_images_folder + worker (354).jpg + D:\dataset\all_images_folder\worker (354).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + diff --git a/train_annot_folder/worker (355).xml b/train_annot_folder/worker (355).xml new file mode 100644 index 000000000..28bfbf6c5 --- /dev/null +++ b/train_annot_folder/worker (355).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (355).jpg + D:\dataset\all_images_folder\worker (355).jpg + + Unknown + + + 326 + 155 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 100 + 154 + + + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 90 + 52 + + + diff --git a/train_annot_folder/worker (357).xml b/train_annot_folder/worker (357).xml new file mode 100644 index 000000000..47c68f5a5 --- /dev/null +++ b/train_annot_folder/worker (357).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (357).jpg + D:\dataset\all_images_folder\worker (357).jpg + + Unknown + + + 250 + 202 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 11 + 133 + 86 + + + + helmet + Unspecified + 0 + 0 + + 35 + 79 + 137 + 140 + + + diff --git a/train_annot_folder/worker (359).xml b/train_annot_folder/worker (359).xml new file mode 100644 index 000000000..28a52a149 --- /dev/null +++ b/train_annot_folder/worker (359).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (359).jpg + D:\dataset\all_images_folder\worker (359).jpg + + Unknown + + + 263 + 191 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 15 + 35 + 142 + 174 + + + + person without helmet + Unspecified + 0 + 0 + + 133 + 40 + 237 + 175 + + + diff --git a/train_annot_folder/worker (36).xml b/train_annot_folder/worker (36).xml new file mode 100644 index 000000000..8b937b2e6 --- /dev/null +++ b/train_annot_folder/worker (36).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (36).jpg + D:\dataset\all_images_folder\worker (36).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 140 + 54 + 177 + 88 + + + + helmet + Unspecified + 0 + 0 + + 185 + 40 + 225 + 78 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 54 + 181 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 185 + 40 + 241 + 135 + + + diff --git a/train_annot_folder/worker (361).xml b/train_annot_folder/worker (361).xml new file mode 100644 index 000000000..641d1dc3c --- /dev/null +++ b/train_annot_folder/worker (361).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (361).jpg + D:\dataset\all_images_folder\worker (361).jpg + + Unknown + + + 251 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 66 + 156 + 82 + + + + helmet + Unspecified + 0 + 0 + + 46 + 41 + 71 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 40 + 86 + 198 + + + + person with helmet + Unspecified + 1 + 0 + + 135 + 66 + 184 + 200 + + + diff --git a/train_annot_folder/worker (362).xml b/train_annot_folder/worker (362).xml new file mode 100644 index 000000000..cc7e5cbe6 --- /dev/null +++ b/train_annot_folder/worker (362).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (362).jpg + D:\dataset\all_images_folder\worker (362).jpg + + Unknown + + + 194 + 260 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 107 + 104 + 194 + 202 + + + + person with helmet + Unspecified + 1 + 0 + + 68 + 105 + 194 + 258 + + + + helmet + Unspecified + 1 + 0 + + 81 + 1 + 129 + 27 + + + + person with helmet + Unspecified + 1 + 0 + + 56 + 1 + 154 + 107 + + + diff --git a/train_annot_folder/worker (363).xml b/train_annot_folder/worker (363).xml new file mode 100644 index 000000000..a0321cd41 --- /dev/null +++ b/train_annot_folder/worker (363).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (363).jpg + D:\dataset\all_images_folder\worker (363).jpg + + Unknown + + + 352 + 143 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 264 + 14 + 306 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 229 + 16 + 341 + 142 + + + + person without helmet + Unspecified + 0 + 0 + + 151 + 55 + 177 + 141 + + + diff --git a/train_annot_folder/worker (364).xml b/train_annot_folder/worker (364).xml new file mode 100644 index 000000000..acf7dd919 --- /dev/null +++ b/train_annot_folder/worker (364).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (364).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (364).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 138 + 21 + 206 + 111 + + + diff --git a/train_annot_folder/worker (365).xml b/train_annot_folder/worker (365).xml new file mode 100644 index 000000000..595364e92 --- /dev/null +++ b/train_annot_folder/worker (365).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (365).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (365).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 36 + 1 + 162 + 193 + + + diff --git a/train_annot_folder/worker (366).xml b/train_annot_folder/worker (366).xml new file mode 100644 index 000000000..a32e45c39 --- /dev/null +++ b/train_annot_folder/worker (366).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (366).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (366).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 93 + 1 + 225 + 125 + + + diff --git a/train_annot_folder/worker (368).xml b/train_annot_folder/worker (368).xml new file mode 100644 index 000000000..5da3e6a85 --- /dev/null +++ b/train_annot_folder/worker (368).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (368).jpg + D:\dataset\all_images_folder\worker (368).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 177 + 11 + 207 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 153 + 11 + 224 + 172 + + + + helmet + Unspecified + 0 + 0 + + 217 + 29 + 243 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 215 + 29 + 260 + 173 + + + + helmet + Unspecified + 0 + 0 + + 142 + 28 + 168 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 27 + 171 + 172 + + + diff --git a/train_annot_folder/worker (369).xml b/train_annot_folder/worker (369).xml new file mode 100644 index 000000000..b3a7cffb5 --- /dev/null +++ b/train_annot_folder/worker (369).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (369).jpg + D:\dataset\all_images_folder\worker (369).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 9 + 114 + 45 + + + + person with helmet + Unspecified + 0 + 0 + + 38 + 9 + 151 + 175 + + + + helmet + Unspecified + 0 + 0 + + 177 + 65 + 202 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 67 + 217 + 166 + + + diff --git a/train_annot_folder/worker (37).xml b/train_annot_folder/worker (37).xml new file mode 100644 index 000000000..256bfb32a --- /dev/null +++ b/train_annot_folder/worker (37).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (37).jpg + D:\dataset\all_images_folder\worker (37).jpg + + Unknown + + + 263 + 191 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 80 + 7 + 201 + 79 + + + + helmet + Unspecified + 0 + 0 + + 43 + 45 + 102 + 103 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 6 + 238 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 42 + 43 + 134 + 173 + + + diff --git a/train_annot_folder/worker (371).xml b/train_annot_folder/worker (371).xml new file mode 100644 index 000000000..9e5ffdeaa --- /dev/null +++ b/train_annot_folder/worker (371).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (371).jpg + D:\dataset\all_images_folder\worker (371).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 168 + 58 + 186 + 71 + + + + helmet + Unspecified + 0 + 0 + + 146 + 57 + 161 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 57 + 166 + 160 + + + + person with helmet + Unspecified + 0 + 0 + + 168 + 57 + 197 + 164 + + + diff --git a/train_annot_folder/worker (372).xml b/train_annot_folder/worker (372).xml new file mode 100644 index 000000000..cfae7bb84 --- /dev/null +++ b/train_annot_folder/worker (372).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (372).jpg + D:\dataset\all_images_folder\worker (372).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 38 + 17 + 127 + 79 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 19 + 178 + 268 + + + diff --git a/train_annot_folder/worker (373).xml b/train_annot_folder/worker (373).xml new file mode 100644 index 000000000..efb18c4ae --- /dev/null +++ b/train_annot_folder/worker (373).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (373).jpg + D:\dataset\all_images_folder\worker (373).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 146 + 1 + 257 + 52 + + + + person with helmet + Unspecified + 1 + 0 + + 122 + 1 + 264 + 179 + + + diff --git a/train_annot_folder/worker (374).xml b/train_annot_folder/worker (374).xml new file mode 100644 index 000000000..e6da294e4 --- /dev/null +++ b/train_annot_folder/worker (374).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (374).jpg + D:\dataset\all_images_folder\worker (374).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 5 + 144 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 39 + 5 + 183 + 167 + + + diff --git a/train_annot_folder/worker (375).xml b/train_annot_folder/worker (375).xml new file mode 100644 index 000000000..fab4d0897 --- /dev/null +++ b/train_annot_folder/worker (375).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (375).jpg + D:\dataset\all_images_folder\worker (375).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 3 + 5 + 145 + 211 + + + + helmet + Unspecified + 0 + 0 + + 61 + 6 + 130 + 60 + + + diff --git a/train_annot_folder/worker (376).xml b/train_annot_folder/worker (376).xml new file mode 100644 index 000000000..8fcaf1a81 --- /dev/null +++ b/train_annot_folder/worker (376).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (376).jpg + D:\dataset\all_images_folder\worker (376).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 141 + 5 + 220 + 55 + + + + person with helmet + Unspecified + 1 + 0 + + 142 + 5 + 248 + 168 + + + diff --git a/train_annot_folder/worker (377).xml b/train_annot_folder/worker (377).xml new file mode 100644 index 000000000..b8132f19d --- /dev/null +++ b/train_annot_folder/worker (377).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (377).jpg + D:\dataset\all_images_folder\worker (377).jpg + + Unknown + + + 184 + 275 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 52 + 27 + 148 + 273 + + + + helmet + Unspecified + 0 + 0 + + 67 + 25 + 128 + 71 + + + diff --git a/train_annot_folder/worker (378).xml b/train_annot_folder/worker (378).xml new file mode 100644 index 000000000..5d4f70dd7 --- /dev/null +++ b/train_annot_folder/worker (378).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (378).jpg + D:\dataset\all_images_folder\worker (378).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 97 + 1 + 221 + 65 + + + + person with helmet + Unspecified + 1 + 0 + + 74 + 1 + 263 + 177 + + + diff --git a/train_annot_folder/worker (379).xml b/train_annot_folder/worker (379).xml new file mode 100644 index 000000000..b790ea096 --- /dev/null +++ b/train_annot_folder/worker (379).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (379).jpg + D:\dataset\all_images_folder\worker (379).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 51 + 1 + 106 + 44 + + + + person with helmet + Unspecified + 1 + 0 + + 30 + 1 + 129 + 171 + + + diff --git a/train_annot_folder/worker (38).xml b/train_annot_folder/worker (38).xml new file mode 100644 index 000000000..e1842a632 --- /dev/null +++ b/train_annot_folder/worker (38).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (38).jpg + D:\dataset\all_images_folder\worker (38).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 45 + 95 + 68 + + + + person with helmet + Unspecified + 1 + 0 + + 43 + 47 + 118 + 183 + + + diff --git a/train_annot_folder/worker (380).xml b/train_annot_folder/worker (380).xml new file mode 100644 index 000000000..75f47dc7d --- /dev/null +++ b/train_annot_folder/worker (380).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (380).jpg + D:\dataset\all_images_folder\worker (380).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 95 + 6 + 169 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 5 + 219 + 171 + + + diff --git a/train_annot_folder/worker (381).xml b/train_annot_folder/worker (381).xml new file mode 100644 index 000000000..30e33167d --- /dev/null +++ b/train_annot_folder/worker (381).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (381).jpg + D:\dataset\all_images_folder\worker (381).jpg + + Unknown + + + 257 + 196 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 6 + 1 + 241 + 195 + + + + helmet + Unspecified + 1 + 0 + + 55 + 1 + 184 + 65 + + + diff --git a/train_annot_folder/worker (382).xml b/train_annot_folder/worker (382).xml new file mode 100644 index 000000000..e5d8722fc --- /dev/null +++ b/train_annot_folder/worker (382).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (382).jpg + D:\dataset\all_images_folder\worker (382).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 112 + 6 + 184 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 5 + 214 + 177 + + + diff --git a/train_annot_folder/worker (383).xml b/train_annot_folder/worker (383).xml new file mode 100644 index 000000000..5db19fd26 --- /dev/null +++ b/train_annot_folder/worker (383).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (383).jpg + D:\dataset\all_images_folder\worker (383).jpg + + Unknown + + + 264 + 191 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 161 + 6 + 236 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 6 + 258 + 174 + + + diff --git a/train_annot_folder/worker (384).xml b/train_annot_folder/worker (384).xml new file mode 100644 index 000000000..0963fe246 --- /dev/null +++ b/train_annot_folder/worker (384).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (384).jpg + D:\dataset\all_images_folder\worker (384).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 126 + 12 + 216 + 73 + + + + person with helmet + Unspecified + 1 + 0 + + 93 + 12 + 266 + 177 + + + diff --git a/train_annot_folder/worker (385).xml b/train_annot_folder/worker (385).xml new file mode 100644 index 000000000..b0d8c1988 --- /dev/null +++ b/train_annot_folder/worker (385).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (385).jpg + D:\dataset\all_images_folder\worker (385).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 23 + 39 + 80 + 77 + + + + helmet + Unspecified + 0 + 0 + + 69 + 17 + 123 + 55 + + + + helmet + Unspecified + 0 + 0 + + 126 + 12 + 186 + 55 + + + + helmet + Unspecified + 1 + 0 + + 183 + 1 + 251 + 41 + + + + helmet + Unspecified + 1 + 0 + + 217 + 35 + 275 + 80 + + + + person with helmet + Unspecified + 0 + 0 + + 6 + 39 + 98 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 70 + 17 + 130 + 120 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 13 + 190 + 178 + + + + person with helmet + Unspecified + 1 + 0 + + 176 + 1 + 251 + 176 + + + + person with helmet + Unspecified + 1 + 0 + + 203 + 40 + 275 + 181 + + + diff --git a/train_annot_folder/worker (386).xml b/train_annot_folder/worker (386).xml new file mode 100644 index 000000000..7fca23221 --- /dev/null +++ b/train_annot_folder/worker (386).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (386).jpg + D:\dataset\all_images_folder\worker (386).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 194 + 32 + 250 + 177 + + + + helmet + Unspecified + 0 + 0 + + 204 + 33 + 249 + 64 + + + diff --git a/train_annot_folder/worker (387).xml b/train_annot_folder/worker (387).xml new file mode 100644 index 000000000..fed98e2e9 --- /dev/null +++ b/train_annot_folder/worker (387).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (387).jpg + D:\dataset\all_images_folder\worker (387).jpg + + Unknown + + + 194 + 259 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 1 + 10 + 192 + 258 + + + + helmet + Unspecified + 0 + 0 + + 47 + 12 + 157 + 84 + + + diff --git a/train_annot_folder/worker (388).xml b/train_annot_folder/worker (388).xml new file mode 100644 index 000000000..f8e841221 --- /dev/null +++ b/train_annot_folder/worker (388).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (388).jpg + D:\dataset\all_images_folder\worker (388).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 109 + 28 + 173 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 27 + 195 + 182 + + + diff --git a/train_annot_folder/worker (389).xml b/train_annot_folder/worker (389).xml new file mode 100644 index 000000000..bf1c4c027 --- /dev/null +++ b/train_annot_folder/worker (389).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (389).jpg + D:\dataset\all_images_folder\worker (389).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 46 + 39 + 67 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 39 + 89 + 148 + + + diff --git a/train_annot_folder/worker (39).xml b/train_annot_folder/worker (39).xml new file mode 100644 index 000000000..20eb5d481 --- /dev/null +++ b/train_annot_folder/worker (39).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (39).jpg + D:\dataset\all_images_folder\worker (39).jpg + + Unknown + + + 177 + 284 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 73 + 7 + 138 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 54 + 5 + 160 + 264 + + + diff --git a/train_annot_folder/worker (390).xml b/train_annot_folder/worker (390).xml new file mode 100644 index 000000000..ec9515856 --- /dev/null +++ b/train_annot_folder/worker (390).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (390).jpg + D:\dataset\all_images_folder\worker (390).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 42 + 19 + 155 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 17 + 157 + 274 + + + diff --git a/train_annot_folder/worker (391).xml b/train_annot_folder/worker (391).xml new file mode 100644 index 000000000..aca64271c --- /dev/null +++ b/train_annot_folder/worker (391).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (391).jpg + D:\dataset\all_images_folder\worker (391).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 32 + 74 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 30 + 103 + 267 + + + diff --git a/train_annot_folder/worker (392).xml b/train_annot_folder/worker (392).xml new file mode 100644 index 000000000..1c9ae1f0b --- /dev/null +++ b/train_annot_folder/worker (392).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (392).jpg + D:\dataset\all_images_folder\worker (392).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 24 + 25 + 108 + 86 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 23 + 167 + 275 + + + diff --git a/train_annot_folder/worker (393).xml b/train_annot_folder/worker (393).xml new file mode 100644 index 000000000..6f6cfdc15 --- /dev/null +++ b/train_annot_folder/worker (393).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (393).jpg + D:\dataset\all_images_folder\worker (393).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 41 + 22 + 233 + 192 + + + + helmet + Unspecified + 0 + 0 + + 100 + 23 + 176 + 71 + + + diff --git a/train_annot_folder/worker (394).xml b/train_annot_folder/worker (394).xml new file mode 100644 index 000000000..4e3531edd --- /dev/null +++ b/train_annot_folder/worker (394).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (394).jpg + D:\dataset\all_images_folder\worker (394).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 83 + 26 + 123 + 64 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 24 + 145 + 270 + + + diff --git a/train_annot_folder/worker (395).xml b/train_annot_folder/worker (395).xml new file mode 100644 index 000000000..c5bbb69ef --- /dev/null +++ b/train_annot_folder/worker (395).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (395).jpg + D:\dataset\all_images_folder\worker (395).jpg + + Unknown + + + 193 + 262 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 43 + 17 + 113 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 5 + 16 + 150 + 260 + + + diff --git a/train_annot_folder/worker (396).xml b/train_annot_folder/worker (396).xml new file mode 100644 index 000000000..f7f8b2809 --- /dev/null +++ b/train_annot_folder/worker (396).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (396).jpg + D:\dataset\all_images_folder\worker (396).jpg + + Unknown + + + 331 + 152 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 78 + 24 + 102 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 64 + 23 + 121 + 151 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 63 + 66 + 150 + + + + person without helmet + Unspecified + 0 + 0 + + 150 + 38 + 179 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 204 + 21 + 270 + 107 + + + + helmet + Unspecified + 0 + 0 + + 244 + 21 + 270 + 41 + + + diff --git a/train_annot_folder/worker (397).xml b/train_annot_folder/worker (397).xml new file mode 100644 index 000000000..015ea7a3a --- /dev/null +++ b/train_annot_folder/worker (397).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (397).jpg + D:\dataset\all_images_folder\worker (397).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 23 + 209 + 72 + + + + person with helmet + Unspecified + 1 + 0 + + 79 + 21 + 275 + 182 + + + diff --git a/train_annot_folder/worker (398).xml b/train_annot_folder/worker (398).xml new file mode 100644 index 000000000..df82c0bc3 --- /dev/null +++ b/train_annot_folder/worker (398).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (398).jpg + D:\dataset\all_images_folder\worker (398).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 126 + 9 + 273 + 182 + + + + helmet + Unspecified + 0 + 0 + + 154 + 10 + 219 + 56 + + + diff --git a/train_annot_folder/worker (399).xml b/train_annot_folder/worker (399).xml new file mode 100644 index 000000000..761819056 --- /dev/null +++ b/train_annot_folder/worker (399).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (399).jpg + D:\dataset\all_images_folder\worker (399).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 152 + 21 + 205 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 20 + 210 + 182 + + + diff --git a/train_annot_folder/worker (4).xml b/train_annot_folder/worker (4).xml new file mode 100644 index 000000000..a77c7ecad --- /dev/null +++ b/train_annot_folder/worker (4).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (4).jpg + D:\dataset\all_images_folder\worker (4).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 41 + 40 + 112 + 78 + + + + person with helmet + Unspecified + 0 + 0 + + 28 + 38 + 137 + 176 + + + diff --git a/train_annot_folder/worker (40).xml b/train_annot_folder/worker (40).xml new file mode 100644 index 000000000..98ab1bc19 --- /dev/null +++ b/train_annot_folder/worker (40).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (40).jpg + D:\dataset\all_images_folder\worker (40).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 31 + 66 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 28 + 30 + 106 + 165 + + + diff --git a/train_annot_folder/worker (400).xml b/train_annot_folder/worker (400).xml new file mode 100644 index 000000000..eff62e55f --- /dev/null +++ b/train_annot_folder/worker (400).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (400).jpg + D:\dataset\all_images_folder\worker (400).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 123 + 1 + 213 + 54 + + + + person with helmet + Unspecified + 1 + 0 + + 94 + 1 + 259 + 177 + + + diff --git a/train_annot_folder/worker (401).xml b/train_annot_folder/worker (401).xml new file mode 100644 index 000000000..a426f6c15 --- /dev/null +++ b/train_annot_folder/worker (401).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (401).jpg + D:\dataset\all_images_folder\worker (401).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 30 + 11 + 141 + 181 + + + + helmet + Unspecified + 0 + 0 + + 70 + 12 + 123 + 46 + + + diff --git a/train_annot_folder/worker (402).xml b/train_annot_folder/worker (402).xml new file mode 100644 index 000000000..ab6501c10 --- /dev/null +++ b/train_annot_folder/worker (402).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (402).jpg + D:\dataset\all_images_folder\worker (402).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 143 + 29 + 184 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 28 + 191 + 179 + + + diff --git a/train_annot_folder/worker (403).xml b/train_annot_folder/worker (403).xml new file mode 100644 index 000000000..4ee1d7f51 --- /dev/null +++ b/train_annot_folder/worker (403).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (403).jpg + D:\dataset\all_images_folder\worker (403).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 135 + 6 + 185 + 48 + + + + person with helmet + Unspecified + 1 + 0 + + 135 + 4 + 266 + 168 + + + diff --git a/train_annot_folder/worker (404).xml b/train_annot_folder/worker (404).xml new file mode 100644 index 000000000..1872c1de6 --- /dev/null +++ b/train_annot_folder/worker (404).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (404).jpg + D:\dataset\all_images_folder\worker (404).jpg + + Unknown + + + 197 + 255 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 1 + 16 + 196 + 254 + + + + helmet + Unspecified + 0 + 0 + + 28 + 18 + 165 + 117 + + + diff --git a/train_annot_folder/worker (405).xml b/train_annot_folder/worker (405).xml new file mode 100644 index 000000000..f4788c4d8 --- /dev/null +++ b/train_annot_folder/worker (405).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (405).jpg + D:\dataset\all_images_folder\worker (405).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 146 + 8 + 200 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 8 + 247 + 166 + + + diff --git a/train_annot_folder/worker (406).xml b/train_annot_folder/worker (406).xml new file mode 100644 index 000000000..2fb05edb3 --- /dev/null +++ b/train_annot_folder/worker (406).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (406).jpg + D:\dataset\all_images_folder\worker (406).jpg + + Unknown + + + 318 + 159 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 113 + 15 + 182 + 157 + + + + helmet + Unspecified + 0 + 0 + + 136 + 17 + 163 + 36 + + + diff --git a/train_annot_folder/worker (407).xml b/train_annot_folder/worker (407).xml new file mode 100644 index 000000000..45c1b3f95 --- /dev/null +++ b/train_annot_folder/worker (407).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (407).jpg + D:\dataset\all_images_folder\worker (407).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 73 + 29 + 118 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 28 + 133 + 176 + + + diff --git a/train_annot_folder/worker (408).xml b/train_annot_folder/worker (408).xml new file mode 100644 index 000000000..7c1113d3b --- /dev/null +++ b/train_annot_folder/worker (408).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (408).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (408).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 143 + 35 + 195 + 71 + + + + person + Unspecified + 0 + 0 + + 118 + 35 + 234 + 182 + + + diff --git a/train_annot_folder/worker (409).xml b/train_annot_folder/worker (409).xml new file mode 100644 index 000000000..8b9845e08 --- /dev/null +++ b/train_annot_folder/worker (409).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (409).jpg + D:\dataset\all_images_folder\worker (409).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 41 + 117 + 80 + + + + person with helmet + Unspecified + 0 + 0 + + 32 + 40 + 137 + 182 + + + diff --git a/train_annot_folder/worker (41).xml b/train_annot_folder/worker (41).xml new file mode 100644 index 000000000..1be976b7e --- /dev/null +++ b/train_annot_folder/worker (41).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (41).jpg + D:\dataset\all_images_folder\worker (41).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 160 + 51 + 224 + 110 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 49 + 234 + 177 + + + diff --git a/train_annot_folder/worker (410).xml b/train_annot_folder/worker (410).xml new file mode 100644 index 000000000..fd81ab8b9 --- /dev/null +++ b/train_annot_folder/worker (410).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (410).jpg + D:\dataset\all_images_folder\worker (410).jpg + + Unknown + + + 245 + 205 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 39 + 220 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 39 + 225 + 188 + + + diff --git a/train_annot_folder/worker (411).xml b/train_annot_folder/worker (411).xml new file mode 100644 index 000000000..0dd597287 --- /dev/null +++ b/train_annot_folder/worker (411).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (411).jpg + D:\dataset\all_images_folder\worker (411).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 149 + 51 + 177 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 143 + 50 + 200 + 167 + + + diff --git a/train_annot_folder/worker (412).xml b/train_annot_folder/worker (412).xml new file mode 100644 index 000000000..a3a77ef49 --- /dev/null +++ b/train_annot_folder/worker (412).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (412).jpg + D:\dataset\all_images_folder\worker (412).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 108 + 24 + 141 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 23 + 148 + 174 + + + diff --git a/train_annot_folder/worker (413).xml b/train_annot_folder/worker (413).xml new file mode 100644 index 000000000..88b74d58b --- /dev/null +++ b/train_annot_folder/worker (413).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (413).jpg + D:\dataset\all_images_folder\worker (413).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 38 + 8 + 89 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 6 + 111 + 182 + + + diff --git a/train_annot_folder/worker (414).xml b/train_annot_folder/worker (414).xml new file mode 100644 index 000000000..6e3f6d046 --- /dev/null +++ b/train_annot_folder/worker (414).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (414).jpg + D:\dataset\all_images_folder\worker (414).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 113 + 1 + 267 + 183 + + + + helmet + Unspecified + 1 + 0 + + 124 + 1 + 218 + 58 + + + diff --git a/train_annot_folder/worker (415).xml b/train_annot_folder/worker (415).xml new file mode 100644 index 000000000..f3e80fb61 --- /dev/null +++ b/train_annot_folder/worker (415).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (415).jpg + D:\dataset\all_images_folder\worker (415).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 114 + 3 + 176 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 63 + 1 + 214 + 162 + + + diff --git a/train_annot_folder/worker (416).xml b/train_annot_folder/worker (416).xml new file mode 100644 index 000000000..2bcd5f60c --- /dev/null +++ b/train_annot_folder/worker (416).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (416).jpg + D:\dataset\all_images_folder\worker (416).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 31 + 17 + 106 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 10 + 15 + 147 + 179 + + + diff --git a/train_annot_folder/worker (417).xml b/train_annot_folder/worker (417).xml new file mode 100644 index 000000000..64f6e5614 --- /dev/null +++ b/train_annot_folder/worker (417).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (417).jpg + D:\dataset\all_images_folder\worker (417).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 168 + 15 + 213 + 41 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 14 + 231 + 193 + + + diff --git a/train_annot_folder/worker (418).xml b/train_annot_folder/worker (418).xml new file mode 100644 index 000000000..84a8fd8c6 --- /dev/null +++ b/train_annot_folder/worker (418).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (418).jpg + D:\dataset\all_images_folder\worker (418).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 161 + 34 + 188 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 144 + 33 + 194 + 160 + + + diff --git a/train_annot_folder/worker (419).xml b/train_annot_folder/worker (419).xml new file mode 100644 index 000000000..221117485 --- /dev/null +++ b/train_annot_folder/worker (419).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (419).jpg + D:\dataset\all_images_folder\worker (419).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 75 + 24 + 262 + 173 + + + + helmet + Unspecified + 0 + 0 + + 136 + 24 + 214 + 74 + + + diff --git a/train_annot_folder/worker (42).xml b/train_annot_folder/worker (42).xml new file mode 100644 index 000000000..e3fdfa89b --- /dev/null +++ b/train_annot_folder/worker (42).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (42).jpg + D:\dataset\all_images_folder\worker (42).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 132 + 6 + 177 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 104 + 5 + 222 + 134 + + + diff --git a/train_annot_folder/worker (420).xml b/train_annot_folder/worker (420).xml new file mode 100644 index 000000000..509e5e761 --- /dev/null +++ b/train_annot_folder/worker (420).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (420).jpg + D:\dataset\all_images_folder\worker (420).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 116 + 52 + 149 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 51 + 167 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 61 + 104 + 176 + + + + helmet + Unspecified + 0 + 0 + + 69 + 61 + 105 + 89 + + + + helmet + Unspecified + 0 + 0 + + 169 + 56 + 200 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 168 + 54 + 225 + 174 + + + diff --git a/train_annot_folder/worker (421).xml b/train_annot_folder/worker (421).xml new file mode 100644 index 000000000..56a88a403 --- /dev/null +++ b/train_annot_folder/worker (421).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (421).jpg + D:\dataset\all_images_folder\worker (421).jpg + + Unknown + + + 280 + 180 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 17 + 88 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 16 + 122 + 167 + + + diff --git a/train_annot_folder/worker (422).xml b/train_annot_folder/worker (422).xml new file mode 100644 index 000000000..d277f67b4 --- /dev/null +++ b/train_annot_folder/worker (422).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (422).jpg + D:\dataset\all_images_folder\worker (422).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 115 + 1 + 238 + 55 + + + + person with helmet + Unspecified + 1 + 0 + + 90 + 1 + 275 + 182 + + + diff --git a/train_annot_folder/worker (423).xml b/train_annot_folder/worker (423).xml new file mode 100644 index 000000000..3634c9c22 --- /dev/null +++ b/train_annot_folder/worker (423).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (423).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (423).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 128 + 6 + 179 + 46 + + + + person + Unspecified + 0 + 0 + + 65 + 5 + 270 + 149 + + + diff --git a/train_annot_folder/worker (424).xml b/train_annot_folder/worker (424).xml new file mode 100644 index 000000000..85bfef65a --- /dev/null +++ b/train_annot_folder/worker (424).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (424).jpg + D:\dataset\all_images_folder\worker (424).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 35 + 8 + 85 + 36 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 7 + 97 + 172 + + + diff --git a/train_annot_folder/worker (425).xml b/train_annot_folder/worker (425).xml new file mode 100644 index 000000000..e44494471 --- /dev/null +++ b/train_annot_folder/worker (425).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (425).jpg + D:\dataset\all_images_folder\worker (425).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 75 + 31 + 105 + 52 + + + + helmet + Unspecified + 0 + 0 + + 122 + 32 + 151 + 54 + + + + helmet + Unspecified + 0 + 0 + + 173 + 27 + 204 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 26 + 234 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 32 + 167 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 55 + 30 + 111 + 182 + + + diff --git a/train_annot_folder/worker (426).xml b/train_annot_folder/worker (426).xml new file mode 100644 index 000000000..f8ca7de5c --- /dev/null +++ b/train_annot_folder/worker (426).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (426).jpg + D:\dataset\all_images_folder\worker (426).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 55 + 19 + 165 + 96 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 17 + 190 + 224 + + + diff --git a/train_annot_folder/worker (427).xml b/train_annot_folder/worker (427).xml new file mode 100644 index 000000000..0d8214e73 --- /dev/null +++ b/train_annot_folder/worker (427).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (427).jpg + D:\dataset\all_images_folder\worker (427).jpg + + Unknown + + + 264 + 191 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 143 + 5 + 186 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 3 + 241 + 176 + + + diff --git a/train_annot_folder/worker (428).xml b/train_annot_folder/worker (428).xml new file mode 100644 index 000000000..226a44988 --- /dev/null +++ b/train_annot_folder/worker (428).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (428).jpg + D:\dataset\all_images_folder\worker (428).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 81 + 21 + 145 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 43 + 20 + 186 + 224 + + + diff --git a/train_annot_folder/worker (429).xml b/train_annot_folder/worker (429).xml new file mode 100644 index 000000000..d7163a9da --- /dev/null +++ b/train_annot_folder/worker (429).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (429).jpg + D:\dataset\all_images_folder\worker (429).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 48 + 20 + 123 + 183 + + + + helmet + Unspecified + 0 + 0 + + 58 + 22 + 103 + 51 + + + diff --git a/train_annot_folder/worker (43).xml b/train_annot_folder/worker (43).xml new file mode 100644 index 000000000..231a99b36 --- /dev/null +++ b/train_annot_folder/worker (43).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (43).jpg + D:\dataset\all_images_folder\worker (43).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 117 + 33 + 180 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 30 + 211 + 177 + + + diff --git a/train_annot_folder/worker (430).xml b/train_annot_folder/worker (430).xml new file mode 100644 index 000000000..5cff0d628 --- /dev/null +++ b/train_annot_folder/worker (430).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (430).jpg + D:\dataset\all_images_folder\worker (430).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 40 + 21 + 143 + 178 + + + + helmet + Unspecified + 0 + 0 + + 100 + 22 + 142 + 54 + + + diff --git a/train_annot_folder/worker (431).xml b/train_annot_folder/worker (431).xml new file mode 100644 index 000000000..b504d865c --- /dev/null +++ b/train_annot_folder/worker (431).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (431).jpg + D:\dataset\all_images_folder\worker (431).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 167 + 20 + 226 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 146 + 18 + 256 + 182 + + + diff --git a/train_annot_folder/worker (432).xml b/train_annot_folder/worker (432).xml new file mode 100644 index 000000000..82d795498 --- /dev/null +++ b/train_annot_folder/worker (432).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (432).jpg + D:\dataset\all_images_folder\worker (432).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 192 + 33 + 252 + 80 + + + + person with helmet + Unspecified + 0 + 0 + + 187 + 32 + 255 + 182 + + + diff --git a/train_annot_folder/worker (433).xml b/train_annot_folder/worker (433).xml new file mode 100644 index 000000000..ad0ab549d --- /dev/null +++ b/train_annot_folder/worker (433).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (433).jpg + D:\dataset\all_images_folder\worker (433).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 192 + 26 + 251 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 177 + 26 + 288 + 161 + + + diff --git a/train_annot_folder/worker (434).xml b/train_annot_folder/worker (434).xml new file mode 100644 index 000000000..eb56fbb3e --- /dev/null +++ b/train_annot_folder/worker (434).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (434).jpg + D:\dataset\all_images_folder\worker (434).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 30 + 3 + 150 + 182 + + + + helmet + Unspecified + 0 + 0 + + 54 + 5 + 128 + 48 + + + diff --git a/train_annot_folder/worker (435).xml b/train_annot_folder/worker (435).xml new file mode 100644 index 000000000..49addddaa --- /dev/null +++ b/train_annot_folder/worker (435).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (435).jpg + D:\dataset\all_images_folder\worker (435).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 142 + 12 + 197 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 10 + 221 + 182 + + + diff --git a/train_annot_folder/worker (436).xml b/train_annot_folder/worker (436).xml new file mode 100644 index 000000000..f176ca94d --- /dev/null +++ b/train_annot_folder/worker (436).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (436).jpg + D:\dataset\all_images_folder\worker (436).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 126 + 50 + 160 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 49 + 185 + 182 + + + diff --git a/train_annot_folder/worker (437).xml b/train_annot_folder/worker (437).xml new file mode 100644 index 000000000..33adb1a38 --- /dev/null +++ b/train_annot_folder/worker (437).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (437).jpg + D:\dataset\all_images_folder\worker (437).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 9 + 27 + 145 + 181 + + + + helmet + Unspecified + 0 + 0 + + 28 + 28 + 108 + 76 + + + diff --git a/train_annot_folder/worker (438).xml b/train_annot_folder/worker (438).xml new file mode 100644 index 000000000..85b4a0fb7 --- /dev/null +++ b/train_annot_folder/worker (438).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (438).jpg + D:\dataset\all_images_folder\worker (438).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 3 + 117 + 183 + 276 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 118 + 140 + 199 + + + diff --git a/train_annot_folder/worker (439).xml b/train_annot_folder/worker (439).xml new file mode 100644 index 000000000..8bbf1f644 --- /dev/null +++ b/train_annot_folder/worker (439).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (439).jpg + D:\dataset\all_images_folder\worker (439).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 188 + 87 + 234 + 134 + + + + person with helmet + Unspecified + 0 + 0 + + 166 + 85 + 255 + 167 + + + diff --git a/train_annot_folder/worker (44).xml b/train_annot_folder/worker (44).xml new file mode 100644 index 000000000..319f1f71b --- /dev/null +++ b/train_annot_folder/worker (44).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (44).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (44).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 113 + 37 + 262 + 174 + + + diff --git a/train_annot_folder/worker (440).xml b/train_annot_folder/worker (440).xml new file mode 100644 index 000000000..ef53e2c04 --- /dev/null +++ b/train_annot_folder/worker (440).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (440).jpg + D:\dataset\all_images_folder\worker (440).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 113 + 6 + 161 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 93 + 2 + 183 + 183 + + + diff --git a/train_annot_folder/worker (441).xml b/train_annot_folder/worker (441).xml new file mode 100644 index 000000000..6ee2efdc2 --- /dev/null +++ b/train_annot_folder/worker (441).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (441).jpg + D:\dataset\all_images_folder\worker (441).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 128 + 6 + 234 + 181 + + + + helmet + Unspecified + 0 + 0 + + 160 + 7 + 215 + 48 + + + diff --git a/train_annot_folder/worker (442).xml b/train_annot_folder/worker (442).xml new file mode 100644 index 000000000..3af4884bd --- /dev/null +++ b/train_annot_folder/worker (442).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (442).jpg + D:\dataset\all_images_folder\worker (442).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 19 + 130 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 18 + 158 + 176 + + + diff --git a/train_annot_folder/worker (443).xml b/train_annot_folder/worker (443).xml new file mode 100644 index 000000000..264f4be70 --- /dev/null +++ b/train_annot_folder/worker (443).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (443).jpg + D:\dataset\all_images_folder\worker (443).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 4 + 122 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 3 + 150 + 181 + + + + person without helmet + Unspecified + 0 + 0 + + 159 + 46 + 192 + 117 + + + + person without helmet + Unspecified + 0 + 0 + + 198 + 40 + 237 + 107 + + + + person without helmet + Unspecified + 0 + 0 + + 245 + 51 + 272 + 107 + + + diff --git a/train_annot_folder/worker (444).xml b/train_annot_folder/worker (444).xml new file mode 100644 index 000000000..b1a3737ca --- /dev/null +++ b/train_annot_folder/worker (444).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (444).jpg + D:\dataset\all_images_folder\worker (444).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 94 + 71 + 113 + 93 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 70 + 133 + 191 + + + diff --git a/train_annot_folder/worker (445).xml b/train_annot_folder/worker (445).xml new file mode 100644 index 000000000..654979a60 --- /dev/null +++ b/train_annot_folder/worker (445).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (445).jpg + D:\dataset\all_images_folder\worker (445).jpg + + Unknown + + + 238 + 212 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 84 + 12 + 154 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 58 + 12 + 172 + 210 + + + diff --git a/train_annot_folder/worker (446).xml b/train_annot_folder/worker (446).xml new file mode 100644 index 000000000..b5725e0c7 --- /dev/null +++ b/train_annot_folder/worker (446).xml @@ -0,0 +1,122 @@ + + dataset_images + worker (446).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (446).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 9 + 32 + 46 + 66 + + + + helmet + Unspecified + 0 + 0 + + 68 + 39 + 107 + 72 + + + + helmet + Unspecified + 0 + 0 + + 113 + 27 + 160 + 59 + + + + helmet + Unspecified + 0 + 0 + + 230 + 40 + 263 + 67 + + + + helmet + Unspecified + 0 + 0 + + 190 + 52 + 219 + 76 + + + + person + Unspecified + 1 + 0 + + 79 + 28 + 193 + 183 + + + + person + Unspecified + 1 + 0 + + 203 + 39 + 275 + 178 + + + + person + Unspecified + 1 + 0 + + 39 + 41 + 107 + 183 + + + + person + Unspecified + 1 + 0 + + 1 + 32 + 66 + 182 + + + diff --git a/train_annot_folder/worker (447).xml b/train_annot_folder/worker (447).xml new file mode 100644 index 000000000..5c48f86bb --- /dev/null +++ b/train_annot_folder/worker (447).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (447).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (447).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 79 + 32 + 131 + 64 + + + + person + Unspecified + 0 + 0 + + 38 + 31 + 153 + 176 + + + diff --git a/train_annot_folder/worker (448).xml b/train_annot_folder/worker (448).xml new file mode 100644 index 000000000..b68adf102 --- /dev/null +++ b/train_annot_folder/worker (448).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (448).jpg + D:\dataset\all_images_folder\worker (448).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 54 + 37 + 102 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 28 + 36 + 111 + 180 + + + diff --git a/train_annot_folder/worker (449).xml b/train_annot_folder/worker (449).xml new file mode 100644 index 000000000..861afb460 --- /dev/null +++ b/train_annot_folder/worker (449).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (449).jpg + D:\dataset\all_images_folder\worker (449).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 99 + 57 + 141 + 85 + + + + person with helmet + Unspecified + 0 + 0 + + 87 + 56 + 159 + 175 + + + + helmet + Unspecified + 0 + 0 + + 45 + 112 + 88 + 148 + + + + person with helmet + Unspecified + 0 + 0 + + 14 + 111 + 142 + 259 + + + diff --git a/train_annot_folder/worker (45).xml b/train_annot_folder/worker (45).xml new file mode 100644 index 000000000..bcb9ce892 --- /dev/null +++ b/train_annot_folder/worker (45).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (45).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (45).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 176 + 11 + 232 + 43 + + + + helmet + Unspecified + 0 + 0 + + 117 + 32 + 166 + 67 + + + + person + Unspecified + 0 + 0 + + 90 + 33 + 178 + 167 + + + + person + Unspecified + 0 + 0 + + 168 + 7 + 259 + 167 + + + diff --git a/train_annot_folder/worker (450).xml b/train_annot_folder/worker (450).xml new file mode 100644 index 000000000..38612bac0 --- /dev/null +++ b/train_annot_folder/worker (450).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (450).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (450).jpg + + Unknown + + + 280 + 180 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 36 + 109 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 37 + 140 + 179 + + + diff --git a/train_annot_folder/worker (451).xml b/train_annot_folder/worker (451).xml new file mode 100644 index 000000000..2163bf365 --- /dev/null +++ b/train_annot_folder/worker (451).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (451).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (451).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 56 + 73 + 148 + 136 + + + + person with helmet + Unspecified + 1 + 0 + + 26 + 73 + 183 + 274 + + + diff --git a/train_annot_folder/worker (452).xml b/train_annot_folder/worker (452).xml new file mode 100644 index 000000000..80fee1f74 --- /dev/null +++ b/train_annot_folder/worker (452).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (452).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (452).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 85 + 17 + 135 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 18 + 135 + 193 + + + diff --git a/train_annot_folder/worker (453).xml b/train_annot_folder/worker (453).xml new file mode 100644 index 000000000..e70df0fbd --- /dev/null +++ b/train_annot_folder/worker (453).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (453).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (453).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 129 + 16 + 178 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 109 + 17 + 219 + 167 + + + diff --git a/train_annot_folder/worker (454).xml b/train_annot_folder/worker (454).xml new file mode 100644 index 000000000..c1e86f567 --- /dev/null +++ b/train_annot_folder/worker (454).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (454).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (454).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 119 + 1 + 192 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 89 + 2 + 247 + 176 + + + diff --git a/train_annot_folder/worker (455).xml b/train_annot_folder/worker (455).xml new file mode 100644 index 000000000..f4e98f8cd --- /dev/null +++ b/train_annot_folder/worker (455).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (455).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (455).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 14 + 201 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 14 + 201 + 176 + + + diff --git a/train_annot_folder/worker (456).xml b/train_annot_folder/worker (456).xml new file mode 100644 index 000000000..c7fd1652f --- /dev/null +++ b/train_annot_folder/worker (456).xml @@ -0,0 +1,110 @@ + + train_image_folder + worker (456).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (456).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 151 + 21 + 214 + 59 + + + + helmet + Unspecified + 1 + 0 + + 219 + 39 + 275 + 78 + + + + helmet + Unspecified + 0 + 0 + + 100 + 53 + 153 + 90 + + + + helmet + Unspecified + 0 + 0 + + 22 + 68 + 71 + 105 + + + + person with helmet + Unspecified + 1 + 0 + + 220 + 39 + 275 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 151 + 20 + 232 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 53 + 169 + 135 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 68 + 71 + 150 + + + diff --git a/train_annot_folder/worker (457).xml b/train_annot_folder/worker (457).xml new file mode 100644 index 000000000..b0fb1a7b5 --- /dev/null +++ b/train_annot_folder/worker (457).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (457).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (457).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 153 + 35 + 215 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 36 + 240 + 181 + + + diff --git a/train_annot_folder/worker (458).xml b/train_annot_folder/worker (458).xml new file mode 100644 index 000000000..1fef29765 --- /dev/null +++ b/train_annot_folder/worker (458).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (458).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (458).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 168 + 16 + 252 + 84 + + + + person with helmet + Unspecified + 1 + 0 + + 129 + 17 + 275 + 182 + + + diff --git a/train_annot_folder/worker (459).xml b/train_annot_folder/worker (459).xml new file mode 100644 index 000000000..7aaa04edf --- /dev/null +++ b/train_annot_folder/worker (459).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (459).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (459).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 62 + 43 + 150 + 114 + + + + person with helmet + Unspecified + 0 + 0 + + 13 + 43 + 152 + 275 + + + diff --git a/train_annot_folder/worker (46).xml b/train_annot_folder/worker (46).xml new file mode 100644 index 000000000..8823f0a22 --- /dev/null +++ b/train_annot_folder/worker (46).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (46).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (46).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person + Unspecified + 0 + 0 + + 40 + 24 + 259 + 174 + + + diff --git a/train_annot_folder/worker (460).xml b/train_annot_folder/worker (460).xml new file mode 100644 index 000000000..37af9b436 --- /dev/null +++ b/train_annot_folder/worker (460).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (460).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (460).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 85 + 9 + 134 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 72 + 10 + 192 + 177 + + + diff --git a/train_annot_folder/worker (461).xml b/train_annot_folder/worker (461).xml new file mode 100644 index 000000000..f358520c0 --- /dev/null +++ b/train_annot_folder/worker (461).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (461).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (461).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 139 + 1 + 258 + 64 + + + + person with helmet + Unspecified + 1 + 0 + + 139 + 1 + 300 + 167 + + + diff --git a/train_annot_folder/worker (462).xml b/train_annot_folder/worker (462).xml new file mode 100644 index 000000000..68893e4c6 --- /dev/null +++ b/train_annot_folder/worker (462).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (462).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (462).jpg + + Unknown + + + 264 + 191 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 133 + 1 + 174 + 37 + + + + person with helmet + Unspecified + 1 + 0 + + 131 + 1 + 261 + 176 + + + diff --git a/train_annot_folder/worker (463).xml b/train_annot_folder/worker (463).xml new file mode 100644 index 000000000..13e88e485 --- /dev/null +++ b/train_annot_folder/worker (463).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (463).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (463).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 45 + 1 + 102 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 13 + 2 + 132 + 176 + + + diff --git a/train_annot_folder/worker (464).xml b/train_annot_folder/worker (464).xml new file mode 100644 index 000000000..32182de9a --- /dev/null +++ b/train_annot_folder/worker (464).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (464).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (464).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 97 + 62 + 150 + 109 + + + + person with helmet + Unspecified + 0 + 0 + + 64 + 63 + 172 + 275 + + + diff --git a/train_annot_folder/worker (465).xml b/train_annot_folder/worker (465).xml new file mode 100644 index 000000000..b64642328 --- /dev/null +++ b/train_annot_folder/worker (465).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (465).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (465).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 36 + 49 + 88 + 88 + + + + person with helmet + Unspecified + 0 + 0 + + 16 + 50 + 106 + 182 + + + diff --git a/train_annot_folder/worker (466).xml b/train_annot_folder/worker (466).xml new file mode 100644 index 000000000..d79b92200 --- /dev/null +++ b/train_annot_folder/worker (466).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (466).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (466).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 51 + 60 + 73 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 61 + 101 + 198 + + + diff --git a/train_annot_folder/worker (467).xml b/train_annot_folder/worker (467).xml new file mode 100644 index 000000000..441b5b2cf --- /dev/null +++ b/train_annot_folder/worker (467).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (467).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (467).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 117 + 45 + 154 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 115 + 45 + 169 + 140 + + + diff --git a/train_annot_folder/worker (468).xml b/train_annot_folder/worker (468).xml new file mode 100644 index 000000000..99ebfb2da --- /dev/null +++ b/train_annot_folder/worker (468).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (468).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (468).jpg + + Unknown + + + 248 + 203 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 31 + 201 + 78 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 33 + 227 + 185 + + + diff --git a/train_annot_folder/worker (469).xml b/train_annot_folder/worker (469).xml new file mode 100644 index 000000000..e39821244 --- /dev/null +++ b/train_annot_folder/worker (469).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (469).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (469).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 111 + 1 + 195 + 54 + + + + person with helmet + Unspecified + 1 + 0 + + 68 + 1 + 262 + 175 + + + diff --git a/train_annot_folder/worker (47).xml b/train_annot_folder/worker (47).xml new file mode 100644 index 000000000..c23f6514d --- /dev/null +++ b/train_annot_folder/worker (47).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (47).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (47).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 83 + 4 + 138 + 54 + + + + person + Unspecified + 0 + 0 + + 68 + 5 + 199 + 176 + + + diff --git a/train_annot_folder/worker (470).xml b/train_annot_folder/worker (470).xml new file mode 100644 index 000000000..21c7d1680 --- /dev/null +++ b/train_annot_folder/worker (470).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (470).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (470).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 48 + 106 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 48 + 161 + 274 + + + diff --git a/train_annot_folder/worker (471).xml b/train_annot_folder/worker (471).xml new file mode 100644 index 000000000..a0d765829 --- /dev/null +++ b/train_annot_folder/worker (471).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (471).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (471).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 78 + 46 + 127 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 52 + 46 + 159 + 274 + + + diff --git a/train_annot_folder/worker (472).xml b/train_annot_folder/worker (472).xml new file mode 100644 index 000000000..64bf541af --- /dev/null +++ b/train_annot_folder/worker (472).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (472).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (472).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 49 + 13 + 110 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 31 + 13 + 109 + 188 + + + diff --git a/train_annot_folder/worker (473).xml b/train_annot_folder/worker (473).xml new file mode 100644 index 000000000..1ce747d39 --- /dev/null +++ b/train_annot_folder/worker (473).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (473).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (473).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 124 + 19 + 217 + 76 + + + + person with helmet + Unspecified + 1 + 0 + + 76 + 19 + 265 + 175 + + + diff --git a/train_annot_folder/worker (474).xml b/train_annot_folder/worker (474).xml new file mode 100644 index 000000000..e9c468238 --- /dev/null +++ b/train_annot_folder/worker (474).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (474).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (474).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 55 + 55 + 108 + 91 + + + + person with helmet + Unspecified + 0 + 0 + + 42 + 56 + 131 + 275 + + + diff --git a/train_annot_folder/worker (475).xml b/train_annot_folder/worker (475).xml new file mode 100644 index 000000000..ce148ee66 --- /dev/null +++ b/train_annot_folder/worker (475).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (475).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (475).jpg + + Unknown + + + 192 + 262 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 47 + 58 + 71 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 58 + 97 + 188 + + + diff --git a/train_annot_folder/worker (476).xml b/train_annot_folder/worker (476).xml new file mode 100644 index 000000000..8767bbca0 --- /dev/null +++ b/train_annot_folder/worker (476).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (476).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (476).jpg + + Unknown + + + 197 + 256 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 58 + 9 + 146 + 78 + + + + person with helmet + Unspecified + 1 + 0 + + 10 + 10 + 197 + 254 + + + diff --git a/train_annot_folder/worker (477).xml b/train_annot_folder/worker (477).xml new file mode 100644 index 000000000..8c9c9dc93 --- /dev/null +++ b/train_annot_folder/worker (477).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (477).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (477).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 70 + 146 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 69 + 162 + 160 + + + diff --git a/train_annot_folder/worker (478).xml b/train_annot_folder/worker (478).xml new file mode 100644 index 000000000..11426a2e3 --- /dev/null +++ b/train_annot_folder/worker (478).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (478).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (478).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 168 + 14 + 228 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 125 + 15 + 261 + 182 + + + diff --git a/train_annot_folder/worker (479).xml b/train_annot_folder/worker (479).xml new file mode 100644 index 000000000..de9a9bfe8 --- /dev/null +++ b/train_annot_folder/worker (479).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (479).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (479).jpg + + Unknown + + + 197 + 256 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 33 + 150 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 33 + 160 + 207 + + + diff --git a/train_annot_folder/worker (48).xml b/train_annot_folder/worker (48).xml new file mode 100644 index 000000000..acb122161 --- /dev/null +++ b/train_annot_folder/worker (48).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (48).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (48).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 137 + 1 + 192 + 38 + + + + person with helmet + Unspecified + 1 + 0 + + 107 + 1 + 214 + 120 + + + diff --git a/train_annot_folder/worker (480).xml b/train_annot_folder/worker (480).xml new file mode 100644 index 000000000..316427b60 --- /dev/null +++ b/train_annot_folder/worker (480).xml @@ -0,0 +1,62 @@ + + train_image_folder + worker (480).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (480).jpg + + Unknown + + + 194 + 259 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 46 + 9 + 85 + 34 + + + + helmet + Unspecified + 1 + 0 + + 114 + 1 + 152 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 11 + 105 + 226 + + + + person with helmet + Unspecified + 1 + 0 + + 100 + 1 + 185 + 211 + + + diff --git a/train_annot_folder/worker (481).xml b/train_annot_folder/worker (481).xml new file mode 100644 index 000000000..ffee09d44 --- /dev/null +++ b/train_annot_folder/worker (481).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (481).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (481).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 59 + 180 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 59 + 197 + 181 + + + diff --git a/train_annot_folder/worker (482).xml b/train_annot_folder/worker (482).xml new file mode 100644 index 000000000..9b0cee455 --- /dev/null +++ b/train_annot_folder/worker (482).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (482).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (482).jpg + + Unknown + + + 176 + 287 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 57 + 56 + 86 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 56 + 89 + 169 + + + diff --git a/train_annot_folder/worker (483).xml b/train_annot_folder/worker (483).xml new file mode 100644 index 000000000..67233b6c1 --- /dev/null +++ b/train_annot_folder/worker (483).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (483).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (483).jpg + + Unknown + + + 252 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 20 + 11 + 99 + 59 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 12 + 100 + 178 + + + diff --git a/train_annot_folder/worker (484).xml b/train_annot_folder/worker (484).xml new file mode 100644 index 000000000..6d0abd2b8 --- /dev/null +++ b/train_annot_folder/worker (484).xml @@ -0,0 +1,62 @@ + + train_image_folder + worker (484).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (484).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 181 + 24 + 232 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 173 + 25 + 265 + 182 + + + + helmet + Unspecified + 0 + 0 + + 43 + 33 + 98 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 33 + 103 + 182 + + + diff --git a/train_annot_folder/worker (485).xml b/train_annot_folder/worker (485).xml new file mode 100644 index 000000000..a92675a7c --- /dev/null +++ b/train_annot_folder/worker (485).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (485).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (485).jpg + + Unknown + + + 240 + 195 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 37 + 6 + 102 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 6 + 107 + 178 + + + diff --git a/train_annot_folder/worker (486).xml b/train_annot_folder/worker (486).xml new file mode 100644 index 000000000..4041c4c69 --- /dev/null +++ b/train_annot_folder/worker (486).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (486).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (486).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 18 + 150 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 14 + 19 + 207 + 203 + + + diff --git a/train_annot_folder/worker (487).xml b/train_annot_folder/worker (487).xml new file mode 100644 index 000000000..5f6e8ca0f --- /dev/null +++ b/train_annot_folder/worker (487).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (487).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (487).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 34 + 107 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 41 + 33 + 145 + 257 + + + diff --git a/train_annot_folder/worker (488).xml b/train_annot_folder/worker (488).xml new file mode 100644 index 000000000..e825c6124 --- /dev/null +++ b/train_annot_folder/worker (488).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (488).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (488).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 185 + 30 + 229 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 183 + 30 + 264 + 167 + + + diff --git a/train_annot_folder/worker (489).xml b/train_annot_folder/worker (489).xml new file mode 100644 index 000000000..09e13d749 --- /dev/null +++ b/train_annot_folder/worker (489).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (489).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (489).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 169 + 15 + 209 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 151 + 16 + 224 + 178 + + + diff --git a/train_annot_folder/worker (49).xml b/train_annot_folder/worker (49).xml new file mode 100644 index 000000000..42e0d4006 --- /dev/null +++ b/train_annot_folder/worker (49).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (49).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (49).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + person + Unspecified + 1 + 0 + + 1 + 1 + 140 + 176 + + + diff --git a/train_annot_folder/worker (490).xml b/train_annot_folder/worker (490).xml new file mode 100644 index 000000000..951cdd267 --- /dev/null +++ b/train_annot_folder/worker (490).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (490).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (490).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 106 + 24 + 125 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 92 + 24 + 143 + 166 + + + diff --git a/train_annot_folder/worker (491).xml b/train_annot_folder/worker (491).xml new file mode 100644 index 000000000..689ac7e94 --- /dev/null +++ b/train_annot_folder/worker (491).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (491).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (491).jpg + + Unknown + + + 178 + 284 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 86 + 85 + 104 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 72 + 84 + 112 + 199 + + + diff --git a/train_annot_folder/worker (492).xml b/train_annot_folder/worker (492).xml new file mode 100644 index 000000000..f660fdba7 --- /dev/null +++ b/train_annot_folder/worker (492).xml @@ -0,0 +1,86 @@ + + train_image_folder + worker (492).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (492).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 94 + 1 + 146 + 31 + + + + helmet + Unspecified + 0 + 0 + + 194 + 25 + 224 + 49 + + + + helmet + Unspecified + 0 + 0 + + 6 + 17 + 67 + 65 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 17 + 98 + 175 + + + + person with helmet + Unspecified + 1 + 0 + + 89 + 1 + 168 + 161 + + + + person with helmet + Unspecified + 0 + 0 + + 184 + 25 + 235 + 175 + + + diff --git a/train_annot_folder/worker (493).xml b/train_annot_folder/worker (493).xml new file mode 100644 index 000000000..aa28ec8ab --- /dev/null +++ b/train_annot_folder/worker (493).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (493).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (493).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 16 + 179 + 60 + + + + person with helmet + Unspecified + 0 + 0 + + 75 + 17 + 200 + 182 + + + diff --git a/train_annot_folder/worker (494).xml b/train_annot_folder/worker (494).xml new file mode 100644 index 000000000..ab2bb208d --- /dev/null +++ b/train_annot_folder/worker (494).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (494).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (494).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 70 + 33 + 126 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 34 + 152 + 268 + + + diff --git a/train_annot_folder/worker (495).xml b/train_annot_folder/worker (495).xml new file mode 100644 index 000000000..923a5c265 --- /dev/null +++ b/train_annot_folder/worker (495).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (495).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (495).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 148 + 16 + 232 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 16 + 263 + 182 + + + diff --git a/train_annot_folder/worker (496).xml b/train_annot_folder/worker (496).xml new file mode 100644 index 000000000..44de0f894 --- /dev/null +++ b/train_annot_folder/worker (496).xml @@ -0,0 +1,86 @@ + + train_image_folder + worker (496).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (496).jpg + + Unknown + + + 283 + 178 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 83 + 82 + 111 + 103 + + + + helmet + Unspecified + 0 + 0 + + 136 + 86 + 164 + 105 + + + + helmet + Unspecified + 0 + 0 + + 189 + 96 + 216 + 115 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 86 + 179 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 82 + 117 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 177 + 96 + 232 + 149 + + + diff --git a/train_annot_folder/worker (497).xml b/train_annot_folder/worker (497).xml new file mode 100644 index 000000000..cd619468d --- /dev/null +++ b/train_annot_folder/worker (497).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (497).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (497).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 7 + 234 + 66 + + + + person with helmet + Unspecified + 1 + 0 + + 119 + 7 + 275 + 182 + + + diff --git a/train_annot_folder/worker (498).xml b/train_annot_folder/worker (498).xml new file mode 100644 index 000000000..f5bb593d3 --- /dev/null +++ b/train_annot_folder/worker (498).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (498).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (498).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 102 + 29 + 143 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 29 + 174 + 182 + + + diff --git a/train_annot_folder/worker (499).xml b/train_annot_folder/worker (499).xml new file mode 100644 index 000000000..e7b810fd3 --- /dev/null +++ b/train_annot_folder/worker (499).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (499).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (499).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 26 + 183 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 27 + 224 + 177 + + + diff --git a/train_annot_folder/worker (5).xml b/train_annot_folder/worker (5).xml new file mode 100644 index 000000000..503db735d --- /dev/null +++ b/train_annot_folder/worker (5).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (5).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (5).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 54 + 96 + 95 + + + + person with helmet + Unspecified + 0 + 0 + + 6 + 54 + 133 + 274 + + + diff --git a/train_annot_folder/worker (50).xml b/train_annot_folder/worker (50).xml new file mode 100644 index 000000000..d62dfaad6 --- /dev/null +++ b/train_annot_folder/worker (50).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (50).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (50).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 125 + 12 + 225 + 74 + + + + person with helmet + Unspecified + 1 + 0 + + 92 + 13 + 266 + 177 + + + diff --git a/train_annot_folder/worker (500).xml b/train_annot_folder/worker (500).xml new file mode 100644 index 000000000..ddc63357f --- /dev/null +++ b/train_annot_folder/worker (500).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (500).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (500).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 137 + 5 + 192 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 6 + 227 + 181 + + + diff --git a/train_annot_folder/worker (501).xml b/train_annot_folder/worker (501).xml new file mode 100644 index 000000000..cc801fe34 --- /dev/null +++ b/train_annot_folder/worker (501).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (501).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (501).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 30 + 66 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 24 + 30 + 97 + 165 + + + diff --git a/train_annot_folder/worker (502).xml b/train_annot_folder/worker (502).xml new file mode 100644 index 000000000..3b7ff0884 --- /dev/null +++ b/train_annot_folder/worker (502).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (502).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (502).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 92 + 34 + 140 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 33 + 179 + 274 + + + diff --git a/train_annot_folder/worker (503).xml b/train_annot_folder/worker (503).xml new file mode 100644 index 000000000..af6e33ac8 --- /dev/null +++ b/train_annot_folder/worker (503).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (503).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (503).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 98 + 22 + 145 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 23 + 150 + 181 + + + diff --git a/train_annot_folder/worker (504).xml b/train_annot_folder/worker (504).xml new file mode 100644 index 000000000..17c6f87d6 --- /dev/null +++ b/train_annot_folder/worker (504).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (504).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (504).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 111 + 32 + 148 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 33 + 164 + 182 + + + diff --git a/train_annot_folder/worker (505).xml b/train_annot_folder/worker (505).xml new file mode 100644 index 000000000..d0b2319a0 --- /dev/null +++ b/train_annot_folder/worker (505).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (505).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (505).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 34 + 165 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 34 + 190 + 166 + + + diff --git a/train_annot_folder/worker (506).xml b/train_annot_folder/worker (506).xml new file mode 100644 index 000000000..82319b9fe --- /dev/null +++ b/train_annot_folder/worker (506).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (506).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (506).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 25 + 128 + 90 + + + + person with helmet + Unspecified + 1 + 0 + + 11 + 26 + 183 + 275 + + + diff --git a/train_annot_folder/worker (507).xml b/train_annot_folder/worker (507).xml new file mode 100644 index 000000000..c42fe5b13 --- /dev/null +++ b/train_annot_folder/worker (507).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (507).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (507).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 78 + 13 + 133 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 37 + 13 + 155 + 166 + + + diff --git a/train_annot_folder/worker (508).xml b/train_annot_folder/worker (508).xml new file mode 100644 index 000000000..e50f0ba30 --- /dev/null +++ b/train_annot_folder/worker (508).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (508).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (508).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 141 + 1 + 225 + 57 + + + + person with helmet + Unspecified + 1 + 0 + + 116 + 1 + 274 + 167 + + + diff --git a/train_annot_folder/worker (509).xml b/train_annot_folder/worker (509).xml new file mode 100644 index 000000000..738dfd9b8 --- /dev/null +++ b/train_annot_folder/worker (509).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (509).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (509).jpg + + Unknown + + + 318 + 159 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 102 + 17 + 155 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 18 + 181 + 157 + + + diff --git a/train_annot_folder/worker (51).xml b/train_annot_folder/worker (51).xml new file mode 100644 index 000000000..e335e06d9 --- /dev/null +++ b/train_annot_folder/worker (51).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (51).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (51).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 144 + 8 + 171 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 9 + 195 + 179 + + + diff --git a/train_annot_folder/worker (510).xml b/train_annot_folder/worker (510).xml new file mode 100644 index 000000000..82f2d48be --- /dev/null +++ b/train_annot_folder/worker (510).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (510).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (510).jpg + + Unknown + + + 206 + 245 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 84 + 62 + 117 + 102 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 62 + 192 + 149 + + + diff --git a/train_annot_folder/worker (511).xml b/train_annot_folder/worker (511).xml new file mode 100644 index 000000000..504c1c5f9 --- /dev/null +++ b/train_annot_folder/worker (511).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (511).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (511).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 10 + 210 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 11 + 231 + 174 + + + diff --git a/train_annot_folder/worker (512).xml b/train_annot_folder/worker (512).xml new file mode 100644 index 000000000..523c433c5 --- /dev/null +++ b/train_annot_folder/worker (512).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (512).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (512).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 91 + 3 + 168 + 60 + + + + person with helmet + Unspecified + 0 + 0 + + 34 + 4 + 224 + 175 + + + diff --git a/train_annot_folder/worker (513).xml b/train_annot_folder/worker (513).xml new file mode 100644 index 000000000..63387686f --- /dev/null +++ b/train_annot_folder/worker (513).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (513).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (513).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 213 + 44 + 243 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 209 + 44 + 283 + 167 + + + diff --git a/train_annot_folder/worker (514).xml b/train_annot_folder/worker (514).xml new file mode 100644 index 000000000..23fb6d293 --- /dev/null +++ b/train_annot_folder/worker (514).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (514).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (514).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 97 + 12 + 152 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 12 + 157 + 167 + + + diff --git a/train_annot_folder/worker (515).xml b/train_annot_folder/worker (515).xml new file mode 100644 index 000000000..54c622037 --- /dev/null +++ b/train_annot_folder/worker (515).xml @@ -0,0 +1,134 @@ + + train_image_folder + worker (515).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (515).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 20 + 14 + 40 + 30 + + + + helmet + Unspecified + 0 + 0 + + 74 + 18 + 95 + 33 + + + + helmet + Unspecified + 0 + 0 + + 134 + 19 + 153 + 32 + + + + helmet + Unspecified + 0 + 0 + + 180 + 10 + 200 + 24 + + + + helmet + Unspecified + 0 + 0 + + 223 + 16 + 243 + 33 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 15 + 55 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 58 + 19 + 109 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 212 + 17 + 260 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 11 + 214 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 20 + 160 + 76 + + + diff --git a/train_annot_folder/worker (516).xml b/train_annot_folder/worker (516).xml new file mode 100644 index 000000000..681ab884c --- /dev/null +++ b/train_annot_folder/worker (516).xml @@ -0,0 +1,50 @@ + + train_image_folder + worker (516).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (516).jpg + + Unknown + + + 287 + 176 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 22 + 89 + 175 + + + + helmet + Unspecified + 0 + 0 + + 188 + 7 + 256 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 177 + 7 + 286 + 175 + + + diff --git a/train_annot_folder/worker (517).xml b/train_annot_folder/worker (517).xml new file mode 100644 index 000000000..9c6adc333 --- /dev/null +++ b/train_annot_folder/worker (517).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (517).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (517).jpg + + Unknown + + + 286 + 176 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 163 + 52 + 217 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 150 + 53 + 257 + 175 + + + diff --git a/train_annot_folder/worker (518).xml b/train_annot_folder/worker (518).xml new file mode 100644 index 000000000..0680725e6 --- /dev/null +++ b/train_annot_folder/worker (518).xml @@ -0,0 +1,134 @@ + + train_image_folder + worker (518).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (518).jpg + + Unknown + + + 317 + 159 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 233 + 49 + 258 + 66 + + + + helmet + Unspecified + 0 + 0 + + 199 + 55 + 219 + 71 + + + + helmet + Unspecified + 0 + 0 + + 155 + 48 + 174 + 64 + + + + helmet + Unspecified + 0 + 0 + + 108 + 46 + 128 + 60 + + + + helmet + Unspecified + 0 + 0 + + 64 + 49 + 83 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 50 + 49 + 98 + 158 + + + + person with helmet + Unspecified + 0 + 0 + + 98 + 46 + 149 + 158 + + + + person with helmet + Unspecified + 0 + 0 + + 144 + 48 + 185 + 158 + + + + person with helmet + Unspecified + 0 + 0 + + 183 + 55 + 231 + 158 + + + + person with helmet + Unspecified + 0 + 0 + + 230 + 50 + 279 + 158 + + + diff --git a/train_annot_folder/worker (519).xml b/train_annot_folder/worker (519).xml new file mode 100644 index 000000000..04a92afd4 --- /dev/null +++ b/train_annot_folder/worker (519).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (519).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (519).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 119 + 2 + 182 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 62 + 2 + 223 + 167 + + + diff --git a/train_annot_folder/worker (52).xml b/train_annot_folder/worker (52).xml new file mode 100644 index 000000000..00f32f950 --- /dev/null +++ b/train_annot_folder/worker (52).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (52).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (52).jpg + + Unknown + + + 193 + 262 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 80 + 30 + 135 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 63 + 30 + 158 + 261 + + + diff --git a/train_annot_folder/worker (520).xml b/train_annot_folder/worker (520).xml new file mode 100644 index 000000000..e9d23b62c --- /dev/null +++ b/train_annot_folder/worker (520).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (520).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (520).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 146 + 23 + 206 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 24 + 232 + 182 + + + diff --git a/train_annot_folder/worker (521).xml b/train_annot_folder/worker (521).xml new file mode 100644 index 000000000..a37125374 --- /dev/null +++ b/train_annot_folder/worker (521).xml @@ -0,0 +1,26 @@ + + train_image_folder + worker (521).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (521).jpg + + Unknown + + + 328 + 153 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 136 + 1 + 218 + 41 + + + diff --git a/train_annot_folder/worker (522).xml b/train_annot_folder/worker (522).xml new file mode 100644 index 000000000..b0508e807 --- /dev/null +++ b/train_annot_folder/worker (522).xml @@ -0,0 +1,62 @@ + + train_image_folder + worker (522).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (522).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 33 + 118 + 64 + + + + helmet + Unspecified + 0 + 0 + + 136 + 36 + 166 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 34 + 132 + 182 + + + + person with helmet + Unspecified + 1 + 0 + + 125 + 37 + 193 + 183 + + + diff --git a/train_annot_folder/worker (523).xml b/train_annot_folder/worker (523).xml new file mode 100644 index 000000000..c1c62d578 --- /dev/null +++ b/train_annot_folder/worker (523).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (523).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (523).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 130 + 1 + 196 + 40 + + + + person with helmet + Unspecified + 1 + 0 + + 63 + 1 + 233 + 167 + + + diff --git a/train_annot_folder/worker (524).xml b/train_annot_folder/worker (524).xml new file mode 100644 index 000000000..a1634a268 --- /dev/null +++ b/train_annot_folder/worker (524).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (524).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (524).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 57 + 10 + 107 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 32 + 10 + 141 + 140 + + + diff --git a/train_annot_folder/worker (525).xml b/train_annot_folder/worker (525).xml new file mode 100644 index 000000000..e72d988db --- /dev/null +++ b/train_annot_folder/worker (525).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (525).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (525).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 175 + 77 + 206 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 145 + 77 + 227 + 185 + + + diff --git a/train_annot_folder/worker (526).xml b/train_annot_folder/worker (526).xml new file mode 100644 index 000000000..24cef3efd --- /dev/null +++ b/train_annot_folder/worker (526).xml @@ -0,0 +1,50 @@ + + train_image_folder + worker (526).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (526).jpg + + Unknown + + + 412 + 122 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 196 + 1 + 258 + 50 + + + + helmet + Unspecified + 0 + 0 + + 255 + 5 + 293 + 54 + + + + person with helmet + Unspecified + 1 + 0 + + 173 + 1 + 270 + 121 + + + diff --git a/train_annot_folder/worker (527).xml b/train_annot_folder/worker (527).xml new file mode 100644 index 000000000..7c5b23185 --- /dev/null +++ b/train_annot_folder/worker (527).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (527).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (527).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 21 + 130 + 64 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 21 + 163 + 182 + + + diff --git a/train_annot_folder/worker (528).xml b/train_annot_folder/worker (528).xml new file mode 100644 index 000000000..815653dee --- /dev/null +++ b/train_annot_folder/worker (528).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (528).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (528).jpg + + Unknown + + + 180 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 75 + 103 + 92 + + + + person with helmet + Unspecified + 0 + 0 + + 75 + 75 + 120 + 126 + + + diff --git a/train_annot_folder/worker (529).xml b/train_annot_folder/worker (529).xml new file mode 100644 index 000000000..e89bda948 --- /dev/null +++ b/train_annot_folder/worker (529).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (529).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (529).jpg + + Unknown + + + 276 + 183 + 1 + + 0 + + helmet + Unspecified + 0 + 0 + + 96 + 7 + 192 + 87 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 8 + 239 + 182 + + + diff --git a/train_annot_folder/worker (53).xml b/train_annot_folder/worker (53).xml new file mode 100644 index 000000000..ae38e565c --- /dev/null +++ b/train_annot_folder/worker (53).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (53).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (53).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 151 + 21 + 210 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 143 + 22 + 246 + 189 + + + diff --git a/train_annot_folder/worker (530).xml b/train_annot_folder/worker (530).xml new file mode 100644 index 000000000..890e51e00 --- /dev/null +++ b/train_annot_folder/worker (530).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (530).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (530).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 66 + 23 + 112 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 58 + 23 + 140 + 132 + + + diff --git a/train_annot_folder/worker (532).xml b/train_annot_folder/worker (532).xml new file mode 100644 index 000000000..0e354c06a --- /dev/null +++ b/train_annot_folder/worker (532).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (532).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (532).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 73 + 54 + 94 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 54 + 102 + 221 + + + diff --git a/train_annot_folder/worker (533).xml b/train_annot_folder/worker (533).xml new file mode 100644 index 000000000..01d5fb8bd --- /dev/null +++ b/train_annot_folder/worker (533).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (533).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (533).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 72 + 5 + 118 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 5 + 163 + 182 + + + diff --git a/train_annot_folder/worker (534).xml b/train_annot_folder/worker (534).xml new file mode 100644 index 000000000..ff0fc273d --- /dev/null +++ b/train_annot_folder/worker (534).xml @@ -0,0 +1,110 @@ + + train_image_folder + worker (534).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (534).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 130 + 9 + 169 + 36 + + + + helmet + Unspecified + 0 + 0 + + 214 + 4 + 256 + 35 + + + + helmet + Unspecified + 0 + 0 + + 52 + 4 + 89 + 27 + + + + helmet + Unspecified + 0 + 0 + + 8 + 26 + 46 + 49 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 26 + 64 + 189 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 4 + 91 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 9 + 180 + 189 + + + + person with helmet + Unspecified + 1 + 0 + + 180 + 4 + 265 + 188 + + + diff --git a/train_annot_folder/worker (535).xml b/train_annot_folder/worker (535).xml new file mode 100644 index 000000000..7c279aa9e --- /dev/null +++ b/train_annot_folder/worker (535).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (535).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (535).jpg + + Unknown + + + 243 + 207 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 16 + 120 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 17 + 139 + 194 + + + diff --git a/train_annot_folder/worker (536).xml b/train_annot_folder/worker (536).xml new file mode 100644 index 000000000..9f036f610 --- /dev/null +++ b/train_annot_folder/worker (536).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (536).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (536).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 127 + 10 + 178 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 10 + 198 + 181 + + + diff --git a/train_annot_folder/worker (537).xml b/train_annot_folder/worker (537).xml new file mode 100644 index 000000000..91fde3021 --- /dev/null +++ b/train_annot_folder/worker (537).xml @@ -0,0 +1,26 @@ + + train_image_folder + worker (537).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (537).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 112 + 15 + 221 + 89 + + + diff --git a/train_annot_folder/worker (538).xml b/train_annot_folder/worker (538).xml new file mode 100644 index 000000000..8cc9a2b05 --- /dev/null +++ b/train_annot_folder/worker (538).xml @@ -0,0 +1,26 @@ + + train_image_folder + worker (538).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (538).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 80 + 5 + 196 + 97 + + + diff --git a/train_annot_folder/worker (539).xml b/train_annot_folder/worker (539).xml new file mode 100644 index 000000000..5ee48402a --- /dev/null +++ b/train_annot_folder/worker (539).xml @@ -0,0 +1,110 @@ + + train_image_folder + worker (539).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (539).jpg + + Unknown + + + 270 + 186 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 14 + 26 + 51 + 49 + + + + helmet + Unspecified + 0 + 0 + + 84 + 60 + 111 + 85 + + + + helmet + Unspecified + 0 + 0 + + 123 + 36 + 158 + 62 + + + + helmet + Unspecified + 0 + 0 + + 187 + 100 + 202 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 179 + 100 + 219 + 185 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 27 + 55 + 185 + + + + person with helmet + Unspecified + 0 + 0 + + 119 + 37 + 181 + 185 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 62 + 124 + 185 + + + diff --git a/train_annot_folder/worker (54).xml b/train_annot_folder/worker (54).xml new file mode 100644 index 000000000..752853a43 --- /dev/null +++ b/train_annot_folder/worker (54).xml @@ -0,0 +1,38 @@ + + train_image_folder + worker (54).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (54).jpg + + Unknown + + + 232 + 217 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 106 + 39 + 162 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 40 + 181 + 216 + + + diff --git a/train_annot_folder/worker (540).xml b/train_annot_folder/worker (540).xml new file mode 100644 index 000000000..c42e56b5f --- /dev/null +++ b/train_annot_folder/worker (540).xml @@ -0,0 +1,86 @@ + + train_image_folder + worker (540).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\train_image_folder\worker (540).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 44 + 5 + 98 + 48 + + + + helmet + Unspecified + 0 + 0 + + 165 + 5 + 215 + 45 + + + + helmet + Unspecified + 0 + 0 + + 100 + 14 + 143 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 5 + 98 + 149 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 15 + 168 + 149 + + + + person with helmet + Unspecified + 0 + 0 + + 168 + 6 + 251 + 155 + + + diff --git a/train_annot_folder/worker (541).xml b/train_annot_folder/worker (541).xml new file mode 100644 index 000000000..d253d0dec --- /dev/null +++ b/train_annot_folder/worker (541).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (541).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (541).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 51 + 3 + 89 + 28 + + + + helmet + Unspecified + 0 + 0 + + 8 + 25 + 46 + 49 + + + + helmet + Unspecified + 0 + 0 + + 127 + 7 + 171 + 37 + + + + helmet + Unspecified + 0 + 0 + + 212 + 3 + 257 + 36 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 25 + 66 + 189 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 7 + 181 + 189 + + + + person with helmet + Unspecified + 0 + 0 + + 41 + 4 + 90 + 72 + + + + person with helmet + Unspecified + 1 + 0 + + 182 + 2 + 265 + 189 + + + diff --git a/train_annot_folder/worker (542).xml b/train_annot_folder/worker (542).xml new file mode 100644 index 000000000..48a64e058 --- /dev/null +++ b/train_annot_folder/worker (542).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (542).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (542).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 175 + 3 + 231 + 40 + + + + person with helmet + Unspecified + 1 + 0 + + 137 + 3 + 265 + 189 + + + diff --git a/train_annot_folder/worker (543).xml b/train_annot_folder/worker (543).xml new file mode 100644 index 000000000..38e4a34ef --- /dev/null +++ b/train_annot_folder/worker (543).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (543).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (543).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 30 + 11 + 69 + 38 + + + + helmet + Unspecified + 0 + 0 + + 122 + 8 + 160 + 35 + + + + person with helmet + Unspecified + 0 + 0 + + 14 + 12 + 103 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 9 + 195 + 177 + + + diff --git a/train_annot_folder/worker (544).xml b/train_annot_folder/worker (544).xml new file mode 100644 index 000000000..d747ee4de --- /dev/null +++ b/train_annot_folder/worker (544).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (544).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (544).jpg + + Unknown + + + 217 + 232 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 81 + 1 + 161 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 3 + 183 + 217 + + + diff --git a/train_annot_folder/worker (547).xml b/train_annot_folder/worker (547).xml new file mode 100644 index 000000000..ca7083b34 --- /dev/null +++ b/train_annot_folder/worker (547).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (547).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (547).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 40 + 6 + 105 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 32 + 6 + 145 + 182 + + + diff --git a/train_annot_folder/worker (548).xml b/train_annot_folder/worker (548).xml new file mode 100644 index 000000000..c3d6b31f5 --- /dev/null +++ b/train_annot_folder/worker (548).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (548).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (548).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 49 + 15 + 124 + 264 + + + + helmet + Unspecified + 0 + 0 + + 70 + 14 + 106 + 40 + + + diff --git a/train_annot_folder/worker (549).xml b/train_annot_folder/worker (549).xml new file mode 100644 index 000000000..3a613a752 --- /dev/null +++ b/train_annot_folder/worker (549).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (549).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (549).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 59 + 12 + 152 + 97 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 11 + 169 + 275 + + + diff --git a/train_annot_folder/worker (55).xml b/train_annot_folder/worker (55).xml new file mode 100644 index 000000000..61d201d59 --- /dev/null +++ b/train_annot_folder/worker (55).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (55).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (55).jpg + + Unknown + + + 318 + 159 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 135 + 15 + 165 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 16 + 184 + 158 + + + diff --git a/train_annot_folder/worker (550).xml b/train_annot_folder/worker (550).xml new file mode 100644 index 000000000..c5ab69d2f --- /dev/null +++ b/train_annot_folder/worker (550).xml @@ -0,0 +1,182 @@ + + dataset_images + worker (550).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (550).jpg + + Unknown + + + 307 + 164 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 261 + 49 + 292 + 78 + + + + helmet + Unspecified + 0 + 0 + + 211 + 34 + 244 + 63 + + + + helmet + Unspecified + 0 + 0 + + 174 + 53 + 209 + 80 + + + + helmet + Unspecified + 0 + 0 + + 151 + 35 + 189 + 58 + + + + helmet + Unspecified + 0 + 0 + + 128 + 24 + 159 + 52 + + + + helmet + Unspecified + 0 + 0 + + 77 + 30 + 112 + 53 + + + + helmet + Unspecified + 0 + 0 + + 44 + 43 + 78 + 64 + + + + helmet + Unspecified + 0 + 0 + + 15 + 98 + 51 + 124 + + + + person without helmet + Unspecified + 0 + 0 + + 48 + 100 + 113 + 163 + + + + person with helmet + Unspecified + 0 + 0 + + 10 + 98 + 52 + 163 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 43 + 88 + 100 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 31 + 116 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 54 + 209 + 141 + + + + person with helmet + Unspecified + 0 + 0 + + 212 + 33 + 245 + 124 + + + diff --git a/train_annot_folder/worker (551).xml b/train_annot_folder/worker (551).xml new file mode 100644 index 000000000..e4cfe4487 --- /dev/null +++ b/train_annot_folder/worker (551).xml @@ -0,0 +1,50 @@ + + dataset_images + worker (551).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (551).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 35 + 25 + 128 + 97 + + + + helmet + Unspecified + 0 + 0 + + 153 + 23 + 289 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 23 + 150 + 145 + + + diff --git a/train_annot_folder/worker (552).xml b/train_annot_folder/worker (552).xml new file mode 100644 index 000000000..946d86938 --- /dev/null +++ b/train_annot_folder/worker (552).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (552).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (552).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 21 + 175 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 41 + 21 + 231 + 191 + + + diff --git a/train_annot_folder/worker (553).xml b/train_annot_folder/worker (553).xml new file mode 100644 index 000000000..4930f5fa2 --- /dev/null +++ b/train_annot_folder/worker (553).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (553).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (553).jpg + + Unknown + + + 194 + 259 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 104 + 82 + 140 + 107 + + + + person with helmet + Unspecified + 0 + 0 + + 88 + 83 + 150 + 257 + + + diff --git a/train_annot_folder/worker (554).xml b/train_annot_folder/worker (554).xml new file mode 100644 index 000000000..a3bf5a438 --- /dev/null +++ b/train_annot_folder/worker (554).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (554).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (554).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 34 + 1 + 82 + 26 + + + + helmet + Unspecified + 0 + 0 + + 101 + 12 + 138 + 50 + + + + helmet + Unspecified + 0 + 0 + + 143 + 13 + 171 + 38 + + + + helmet + Unspecified + 0 + 0 + + 206 + 8 + 252 + 45 + + + + person with helmet + Unspecified + 1 + 0 + + 187 + 8 + 265 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 13 + 184 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 13 + 139 + 134 + + + + person with helmet + Unspecified + 1 + 0 + + 9 + 1 + 83 + 153 + + + diff --git a/train_annot_folder/worker (555).xml b/train_annot_folder/worker (555).xml new file mode 100644 index 000000000..9573a9fdc --- /dev/null +++ b/train_annot_folder/worker (555).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (555).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (555).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 125 + 6 + 203 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 7 + 244 + 182 + + + diff --git a/train_annot_folder/worker (556).xml b/train_annot_folder/worker (556).xml new file mode 100644 index 000000000..488e118fc --- /dev/null +++ b/train_annot_folder/worker (556).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (556).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (556).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 49 + 5 + 85 + 30 + + + + helmet + Unspecified + 1 + 0 + + 123 + 1 + 161 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 5 + 102 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 2 + 202 + 167 + + + diff --git a/train_annot_folder/worker (557).xml b/train_annot_folder/worker (557).xml new file mode 100644 index 000000000..9928d3d52 --- /dev/null +++ b/train_annot_folder/worker (557).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (557).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (557).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 38 + 12 + 76 + 40 + + + + helmet + Unspecified + 1 + 0 + + 131 + 1 + 178 + 32 + + + + person with helmet + Unspecified + 1 + 0 + + 130 + 1 + 217 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 12 + 100 + 167 + + + diff --git a/train_annot_folder/worker (558).xml b/train_annot_folder/worker (558).xml new file mode 100644 index 000000000..54ce79c16 --- /dev/null +++ b/train_annot_folder/worker (558).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (558).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (558).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 91 + 2 + 155 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 2 + 201 + 154 + + + diff --git a/train_annot_folder/worker (559).xml b/train_annot_folder/worker (559).xml new file mode 100644 index 000000000..fc7e0dbf0 --- /dev/null +++ b/train_annot_folder/worker (559).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (559).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (559).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 53 + 8 + 92 + 30 + + + + helmet + Unspecified + 0 + 0 + + 110 + 9 + 145 + 31 + + + + helmet + Unspecified + 1 + 0 + + 152 + 1 + 193 + 32 + + + + helmet + Unspecified + 0 + 0 + + 206 + 12 + 244 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 202 + 13 + 257 + 143 + + + + person with helmet + Unspecified + 1 + 0 + + 153 + 1 + 204 + 142 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 9 + 153 + 136 + + + + person with helmet + Unspecified + 0 + 0 + + 42 + 8 + 92 + 131 + + + diff --git a/train_annot_folder/worker (56).xml b/train_annot_folder/worker (56).xml new file mode 100644 index 000000000..ea31a8288 --- /dev/null +++ b/train_annot_folder/worker (56).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (56).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (56).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 141 + 51 + 203 + 167 + + + + helmet + Unspecified + 0 + 0 + + 146 + 51 + 179 + 79 + + + diff --git a/train_annot_folder/worker (560).xml b/train_annot_folder/worker (560).xml new file mode 100644 index 000000000..c72fffb2b --- /dev/null +++ b/train_annot_folder/worker (560).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (560).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (560).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 62 + 6 + 106 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 39 + 5 + 137 + 274 + + + diff --git a/train_annot_folder/worker (561).xml b/train_annot_folder/worker (561).xml new file mode 100644 index 000000000..0dd60a129 --- /dev/null +++ b/train_annot_folder/worker (561).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (561).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (561).jpg + + Unknown + + + 309 + 163 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 127 + 1 + 188 + 43 + + + + helmet + Unspecified + 0 + 0 + + 181 + 18 + 202 + 49 + + + + person with helmet + Unspecified + 1 + 0 + + 45 + 1 + 188 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 18 + 202 + 115 + + + diff --git a/train_annot_folder/worker (562).xml b/train_annot_folder/worker (562).xml new file mode 100644 index 000000000..b1c1afa58 --- /dev/null +++ b/train_annot_folder/worker (562).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (562).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (562).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 101 + 90 + 138 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 101 + 161 + 264 + + + diff --git a/train_annot_folder/worker (563).xml b/train_annot_folder/worker (563).xml new file mode 100644 index 000000000..503aab62e --- /dev/null +++ b/train_annot_folder/worker (563).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (563).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (563).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 33 + 23 + 75 + 52 + + + + helmet + Unspecified + 0 + 0 + + 115 + 29 + 153 + 54 + + + + helmet + Unspecified + 0 + 0 + + 162 + 20 + 207 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 156 + 21 + 254 + 150 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 29 + 162 + 129 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 23 + 97 + 129 + + + diff --git a/train_annot_folder/worker (564).xml b/train_annot_folder/worker (564).xml new file mode 100644 index 000000000..c1eca549c --- /dev/null +++ b/train_annot_folder/worker (564).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (564).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (564).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 120 + 17 + 235 + 182 + + + + helmet + Unspecified + 0 + 0 + + 159 + 17 + 213 + 53 + + + diff --git a/train_annot_folder/worker (565).xml b/train_annot_folder/worker (565).xml new file mode 100644 index 000000000..d3b4e2111 --- /dev/null +++ b/train_annot_folder/worker (565).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (565).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (565).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 37 + 210 + 81 + + + + helmet + Unspecified + 1 + 0 + + 68 + 1 + 142 + 37 + + + + person with helmet + Unspecified + 1 + 0 + + 32 + 1 + 139 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 38 + 241 + 166 + + + diff --git a/train_annot_folder/worker (566).xml b/train_annot_folder/worker (566).xml new file mode 100644 index 000000000..ca3c13b80 --- /dev/null +++ b/train_annot_folder/worker (566).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (566).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (566).jpg + + Unknown + + + 231 + 219 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 44 + 124 + 88 + + + + helmet + Unspecified + 0 + 0 + + 172 + 2 + 205 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 43 + 152 + 204 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 3 + 205 + 167 + + + diff --git a/train_annot_folder/worker (567).xml b/train_annot_folder/worker (567).xml new file mode 100644 index 000000000..04c712fad --- /dev/null +++ b/train_annot_folder/worker (567).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (567).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (567).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 24 + 124 + 58 + + + + helmet + Unspecified + 1 + 0 + + 21 + 1 + 80 + 37 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 77 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 70 + 25 + 139 + 119 + + + diff --git a/train_annot_folder/worker (568).xml b/train_annot_folder/worker (568).xml new file mode 100644 index 000000000..203bb4427 --- /dev/null +++ b/train_annot_folder/worker (568).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (568).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (568).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 46 + 1 + 90 + 27 + + + + person with helmet + Unspecified + 1 + 0 + + 11 + 1 + 107 + 132 + + + + helmet + Unspecified + 0 + 0 + + 112 + 24 + 139 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 24 + 156 + 89 + + + diff --git a/train_annot_folder/worker (569).xml b/train_annot_folder/worker (569).xml new file mode 100644 index 000000000..7e0b94784 --- /dev/null +++ b/train_annot_folder/worker (569).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (569).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (569).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 28 + 18 + 88 + 51 + + + + helmet + Unspecified + 0 + 0 + + 86 + 36 + 131 + 66 + + + + helmet + Unspecified + 0 + 0 + + 146 + 46 + 185 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 3 + 19 + 88 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 36 + 134 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 138 + 44 + 215 + 124 + + + diff --git a/train_annot_folder/worker (57).xml b/train_annot_folder/worker (57).xml new file mode 100644 index 000000000..614af031c --- /dev/null +++ b/train_annot_folder/worker (57).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (57).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (57).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 149 + 2 + 218 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 2 + 239 + 182 + + + diff --git a/train_annot_folder/worker (570).xml b/train_annot_folder/worker (570).xml new file mode 100644 index 000000000..40de7d9ee --- /dev/null +++ b/train_annot_folder/worker (570).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (570).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (570).jpg + + Unknown + + + 210 + 240 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 86 + 1 + 143 + 43 + + + + person with helmet + Unspecified + 1 + 0 + + 40 + 1 + 149 + 240 + + + diff --git a/train_annot_folder/worker (571).xml b/train_annot_folder/worker (571).xml new file mode 100644 index 000000000..5265b9a00 --- /dev/null +++ b/train_annot_folder/worker (571).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (571).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (571).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 40 + 101 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 39 + 157 + 261 + + + diff --git a/train_annot_folder/worker (572).xml b/train_annot_folder/worker (572).xml new file mode 100644 index 000000000..3e43ca7e9 --- /dev/null +++ b/train_annot_folder/worker (572).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (572).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (572).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 211 + 22 + 263 + 59 + + + + helmet + Unspecified + 0 + 0 + + 118 + 25 + 158 + 59 + + + + helmet + Unspecified + 0 + 0 + + 64 + 24 + 116 + 63 + + + + helmet + Unspecified + 0 + 0 + + 5 + 54 + 54 + 102 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 53 + 56 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 26 + 113 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 25 + 178 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 192 + 22 + 274 + 182 + + + diff --git a/train_annot_folder/worker (573).xml b/train_annot_folder/worker (573).xml new file mode 100644 index 000000000..02d45a0f1 --- /dev/null +++ b/train_annot_folder/worker (573).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (573).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (573).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 18 + 159 + 69 + + + + helmet + Unspecified + 0 + 0 + + 26 + 13 + 82 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 14 + 108 + 125 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 19 + 200 + 133 + + + diff --git a/train_annot_folder/worker (574).xml b/train_annot_folder/worker (574).xml new file mode 100644 index 000000000..445be509a --- /dev/null +++ b/train_annot_folder/worker (574).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (574).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (574).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 73 + 19 + 127 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 20 + 146 + 275 + + + diff --git a/train_annot_folder/worker (575).xml b/train_annot_folder/worker (575).xml new file mode 100644 index 000000000..53208844c --- /dev/null +++ b/train_annot_folder/worker (575).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (575).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (575).jpg + + Unknown + + + 190 + 266 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 25 + 50 + 78 + 88 + + + + helmet + Unspecified + 0 + 0 + + 93 + 48 + 156 + 95 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 49 + 177 + 250 + + + + person with helmet + Unspecified + 0 + 0 + + 2 + 50 + 96 + 185 + + + diff --git a/train_annot_folder/worker (576).xml b/train_annot_folder/worker (576).xml new file mode 100644 index 000000000..24149a401 --- /dev/null +++ b/train_annot_folder/worker (576).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (576).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (576).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 61 + 20 + 109 + 53 + + + + helmet + Unspecified + 0 + 0 + + 133 + 21 + 202 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 35 + 19 + 126 + 117 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 21 + 216 + 171 + + + diff --git a/train_annot_folder/worker (577).xml b/train_annot_folder/worker (577).xml new file mode 100644 index 000000000..5cd6ef134 --- /dev/null +++ b/train_annot_folder/worker (577).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (577).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (577).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 84 + 32 + 140 + 67 + + + + helmet + Unspecified + 0 + 0 + + 152 + 29 + 221 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 37 + 32 + 162 + 144 + + + + person with helmet + Unspecified + 0 + 0 + + 150 + 31 + 242 + 173 + + + diff --git a/train_annot_folder/worker (578).xml b/train_annot_folder/worker (578).xml new file mode 100644 index 000000000..1a91b39cd --- /dev/null +++ b/train_annot_folder/worker (578).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (578).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (578).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 83 + 38 + 145 + 90 + + + + helmet + Unspecified + 0 + 0 + + 24 + 76 + 59 + 103 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 76 + 74 + 220 + + + + person with helmet + Unspecified + 0 + 0 + + 63 + 39 + 175 + 204 + + + diff --git a/train_annot_folder/worker (579).xml b/train_annot_folder/worker (579).xml new file mode 100644 index 000000000..cb054cf51 --- /dev/null +++ b/train_annot_folder/worker (579).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (579).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (579).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 42 + 139 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 42 + 163 + 82 + + + diff --git a/train_annot_folder/worker (58).xml b/train_annot_folder/worker (58).xml new file mode 100644 index 000000000..9521885f4 --- /dev/null +++ b/train_annot_folder/worker (58).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (58).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (58).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 3 + 37 + 88 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 55 + 27 + 115 + 160 + + + diff --git a/train_annot_folder/worker (580).xml b/train_annot_folder/worker (580).xml new file mode 100644 index 000000000..d19952763 --- /dev/null +++ b/train_annot_folder/worker (580).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (580).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (580).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 51 + 29 + 115 + 81 + + + + helmet + Unspecified + 0 + 0 + + 109 + 12 + 161 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 29 + 146 + 160 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 12 + 185 + 115 + + + diff --git a/train_annot_folder/worker (581).xml b/train_annot_folder/worker (581).xml new file mode 100644 index 000000000..435fa2748 --- /dev/null +++ b/train_annot_folder/worker (581).xml @@ -0,0 +1,50 @@ + + dataset_images + worker (581).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (581).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 98 + 20 + 145 + 54 + + + + helmet + Unspecified + 0 + 0 + + 152 + 59 + 180 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 54 + 19 + 149 + 138 + + + diff --git a/train_annot_folder/worker (582).xml b/train_annot_folder/worker (582).xml new file mode 100644 index 000000000..27d7acdfd --- /dev/null +++ b/train_annot_folder/worker (582).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (582).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (582).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 108 + 80 + 139 + 101 + + + + helmet + Unspecified + 0 + 0 + + 162 + 79 + 194 + 108 + + + + person with helmet + Unspecified + 0 + 0 + + 96 + 80 + 148 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 79 + 220 + 181 + + + diff --git a/train_annot_folder/worker (583).xml b/train_annot_folder/worker (583).xml new file mode 100644 index 000000000..4b3fb37d7 --- /dev/null +++ b/train_annot_folder/worker (583).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (583).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (583).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 69 + 27 + 117 + 67 + + + + helmet + Unspecified + 0 + 0 + + 120 + 15 + 160 + 45 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 15 + 194 + 118 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 26 + 116 + 117 + + + diff --git a/train_annot_folder/worker (584).xml b/train_annot_folder/worker (584).xml new file mode 100644 index 000000000..c5ed9a3bf --- /dev/null +++ b/train_annot_folder/worker (584).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (584).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (584).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 85 + 33 + 139 + 86 + + + + helmet + Unspecified + 0 + 0 + + 164 + 10 + 218 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 145 + 14 + 219 + 103 + + + + person with helmet + Unspecified + 0 + 0 + + 49 + 30 + 154 + 143 + + + diff --git a/train_annot_folder/worker (585).xml b/train_annot_folder/worker (585).xml new file mode 100644 index 000000000..fe0d5cd2a --- /dev/null +++ b/train_annot_folder/worker (585).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (585).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (585).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 34 + 41 + 63 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 40 + 79 + 188 + + + diff --git a/train_annot_folder/worker (586).xml b/train_annot_folder/worker (586).xml new file mode 100644 index 000000000..f0bfbd944 --- /dev/null +++ b/train_annot_folder/worker (586).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (586).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (586).jpg + + Unknown + + + 231 + 219 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 106 + 42 + 172 + 87 + + + + helmet + Unspecified + 1 + 0 + + 26 + 1 + 60 + 30 + + + + person with helmet + Unspecified + 1 + 0 + + 23 + 1 + 75 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 43 + 172 + 203 + + + diff --git a/train_annot_folder/worker (587).xml b/train_annot_folder/worker (587).xml new file mode 100644 index 000000000..b41267598 --- /dev/null +++ b/train_annot_folder/worker (587).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (587).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (587).jpg + + Unknown + + + 194 + 259 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 62 + 11 + 126 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 12 + 172 + 257 + + + diff --git a/train_annot_folder/worker (588).xml b/train_annot_folder/worker (588).xml new file mode 100644 index 000000000..864ba8b46 --- /dev/null +++ b/train_annot_folder/worker (588).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (588).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (588).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 48 + 1 + 162 + 43 + + + + person with helmet + Unspecified + 1 + 0 + + 22 + 1 + 167 + 167 + + + diff --git a/train_annot_folder/worker (589).xml b/train_annot_folder/worker (589).xml new file mode 100644 index 000000000..bde2f95b8 --- /dev/null +++ b/train_annot_folder/worker (589).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (589).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (589).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 32 + 104 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 32 + 103 + 174 + + + + helmet + Unspecified + 0 + 0 + + 194 + 22 + 219 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 193 + 23 + 233 + 177 + + + diff --git a/train_annot_folder/worker (59).xml b/train_annot_folder/worker (59).xml new file mode 100644 index 000000000..22107fae8 --- /dev/null +++ b/train_annot_folder/worker (59).xml @@ -0,0 +1,26 @@ + + dataset_images + worker (59).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (59).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 43 + 29 + 247 + 174 + + + diff --git a/train_annot_folder/worker (590).xml b/train_annot_folder/worker (590).xml new file mode 100644 index 000000000..962aadce5 --- /dev/null +++ b/train_annot_folder/worker (590).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (590).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (590).jpg + + Unknown + + + 179 + 282 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 20 + 115 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 21 + 146 + 271 + + + diff --git a/train_annot_folder/worker (591).xml b/train_annot_folder/worker (591).xml new file mode 100644 index 000000000..b3f532e04 --- /dev/null +++ b/train_annot_folder/worker (591).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (591).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (591).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 69 + 22 + 124 + 55 + + + + helmet + Unspecified + 0 + 0 + + 170 + 16 + 242 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 16 + 275 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 28 + 22 + 141 + 167 + + + diff --git a/train_annot_folder/worker (592).xml b/train_annot_folder/worker (592).xml new file mode 100644 index 000000000..dce857d42 --- /dev/null +++ b/train_annot_folder/worker (592).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (592).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (592).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 27 + 18 + 62 + 42 + + + + helmet + Unspecified + 0 + 0 + + 122 + 5 + 162 + 35 + + + + person with helmet + Unspecified + 0 + 0 + + 121 + 4 + 197 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 18 + 18 + 84 + 176 + + + diff --git a/train_annot_folder/worker (593).xml b/train_annot_folder/worker (593).xml new file mode 100644 index 000000000..e29635a57 --- /dev/null +++ b/train_annot_folder/worker (593).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (593).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (593).jpg + + Unknown + + + 180 + 280 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 22 + 125 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 7 + 22 + 169 + 271 + + + diff --git a/train_annot_folder/worker (594).xml b/train_annot_folder/worker (594).xml new file mode 100644 index 000000000..4d3403ede --- /dev/null +++ b/train_annot_folder/worker (594).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (594).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (594).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 4 + 172 + 114 + + + + helmet + Unspecified + 0 + 0 + + 138 + 19 + 240 + 132 + + + diff --git a/train_annot_folder/worker (595).xml b/train_annot_folder/worker (595).xml new file mode 100644 index 000000000..4a790364d --- /dev/null +++ b/train_annot_folder/worker (595).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (595).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (595).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 35 + 114 + 72 + + + + helmet + Unspecified + 0 + 0 + + 156 + 22 + 207 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 22 + 251 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 35 + 131 + 174 + + + diff --git a/train_annot_folder/worker (596).xml b/train_annot_folder/worker (596).xml new file mode 100644 index 000000000..9ddff66ae --- /dev/null +++ b/train_annot_folder/worker (596).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (596).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (596).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 79 + 20 + 124 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 20 + 149 + 261 + + + diff --git a/train_annot_folder/worker (597).xml b/train_annot_folder/worker (597).xml new file mode 100644 index 000000000..b15ded36d --- /dev/null +++ b/train_annot_folder/worker (597).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (597).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (597).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 71 + 7 + 160 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 3 + 7 + 201 + 175 + + + diff --git a/train_annot_folder/worker (598).xml b/train_annot_folder/worker (598).xml new file mode 100644 index 000000000..2c75c8cf5 --- /dev/null +++ b/train_annot_folder/worker (598).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (598).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (598).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 15 + 83 + 29 + 95 + + + + helmet + Unspecified + 0 + 0 + + 48 + 111 + 60 + 121 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 83 + 35 + 146 + + + + person with helmet + Unspecified + 0 + 0 + + 43 + 111 + 67 + 133 + + + diff --git a/train_annot_folder/worker (599).xml b/train_annot_folder/worker (599).xml new file mode 100644 index 000000000..89b81c27c --- /dev/null +++ b/train_annot_folder/worker (599).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (599).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (599).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 102 + 36 + 117 + 47 + + + + helmet + Unspecified + 0 + 0 + + 36 + 55 + 48 + 63 + + + + helmet + Unspecified + 0 + 0 + + 188 + 55 + 199 + 67 + + + + helmet + Unspecified + 0 + 0 + + 79 + 58 + 89 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 55 + 47 + 124 + + + + person with helmet + Unspecified + 0 + 0 + + 88 + 37 + 129 + 135 + + + + person with helmet + Unspecified + 0 + 0 + + 181 + 56 + 200 + 91 + + + + person without helmet + Unspecified + 0 + 0 + + 225 + 73 + 266 + 99 + + + diff --git a/train_annot_folder/worker (6).xml b/train_annot_folder/worker (6).xml new file mode 100644 index 000000000..91273ea0a --- /dev/null +++ b/train_annot_folder/worker (6).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (6).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (6).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 152 + 14 + 194 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 13 + 230 + 173 + + + diff --git a/train_annot_folder/worker (60).xml b/train_annot_folder/worker (60).xml new file mode 100644 index 000000000..c49bd184f --- /dev/null +++ b/train_annot_folder/worker (60).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (60).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (60).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 24 + 62 + 58 + 92 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 61 + 73 + 175 + + + diff --git a/train_annot_folder/worker (600).xml b/train_annot_folder/worker (600).xml new file mode 100644 index 000000000..e33fcc572 --- /dev/null +++ b/train_annot_folder/worker (600).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (600).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (600).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 21 + 118 + 69 + + + + helmet + Unspecified + 0 + 0 + + 179 + 19 + 244 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 22 + 21 + 130 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 20 + 256 + 182 + + + diff --git a/train_annot_folder/worker (601).xml b/train_annot_folder/worker (601).xml new file mode 100644 index 000000000..2607d76fa --- /dev/null +++ b/train_annot_folder/worker (601).xml @@ -0,0 +1,182 @@ + + dataset_images + worker (601).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (601).jpg + + Unknown + + + 255 + 198 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 188 + 45 + 202 + 58 + + + + helmet + Unspecified + 0 + 0 + + 165 + 44 + 184 + 60 + + + + helmet + Unspecified + 0 + 0 + + 131 + 38 + 148 + 53 + + + + helmet + Unspecified + 0 + 0 + + 113 + 37 + 130 + 50 + + + + helmet + Unspecified + 0 + 0 + + 87 + 41 + 103 + 54 + + + + helmet + Unspecified + 0 + 0 + + 73 + 46 + 89 + 61 + + + + helmet + Unspecified + 0 + 0 + + 30 + 43 + 49 + 58 + + + + person without helmet + Unspecified + 0 + 0 + + 209 + 38 + 245 + 144 + + + + person with helmet + Unspecified + 0 + 0 + + 184 + 45 + 219 + 144 + + + + person with helmet + Unspecified + 0 + 0 + + 156 + 45 + 190 + 155 + + + + person with helmet + Unspecified + 0 + 0 + + 128 + 37 + 154 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 38 + 128 + 153 + + + + person with helmet + Unspecified + 0 + 0 + + 63 + 46 + 98 + 160 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 43 + 61 + 160 + + + diff --git a/train_annot_folder/worker (602).xml b/train_annot_folder/worker (602).xml new file mode 100644 index 000000000..368150fc8 --- /dev/null +++ b/train_annot_folder/worker (602).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (602).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (602).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 75 + 30 + 114 + 58 + + + + helmet + Unspecified + 1 + 0 + + 123 + 1 + 174 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 109 + 2 + 224 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 65 + 30 + 125 + 102 + + + diff --git a/train_annot_folder/worker (603).xml b/train_annot_folder/worker (603).xml new file mode 100644 index 000000000..4d0b3da28 --- /dev/null +++ b/train_annot_folder/worker (603).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (603).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (603).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 52 + 12 + 105 + 51 + + + + helmet + Unspecified + 1 + 0 + + 137 + 1 + 194 + 25 + + + + person with helmet + Unspecified + 0 + 0 + + 30 + 12 + 117 + 166 + + + + person with helmet + Unspecified + 1 + 0 + + 129 + 1 + 222 + 167 + + + diff --git a/train_annot_folder/worker (604).xml b/train_annot_folder/worker (604).xml new file mode 100644 index 000000000..b252dbce7 --- /dev/null +++ b/train_annot_folder/worker (604).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (604).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (604).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 19 + 29 + 45 + 45 + + + + helmet + Unspecified + 0 + 0 + + 86 + 19 + 116 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 85 + 19 + 141 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 11 + 28 + 75 + 177 + + + diff --git a/train_annot_folder/worker (605).xml b/train_annot_folder/worker (605).xml new file mode 100644 index 000000000..d2017726b --- /dev/null +++ b/train_annot_folder/worker (605).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (605).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (605).jpg + + Unknown + + + 184 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 53 + 35 + 88 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 36 + 102 + 231 + + + diff --git a/train_annot_folder/worker (606).xml b/train_annot_folder/worker (606).xml new file mode 100644 index 000000000..e1d985fe2 --- /dev/null +++ b/train_annot_folder/worker (606).xml @@ -0,0 +1,206 @@ + + dataset_images + worker (606).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (606).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 206 + 107 + 259 + 144 + + + + helmet + Unspecified + 0 + 0 + + 110 + 113 + 148 + 138 + + + + helmet + Unspecified + 0 + 0 + + 113 + 77 + 138 + 95 + + + + helmet + Unspecified + 0 + 0 + + 165 + 80 + 210 + 110 + + + + helmet + Unspecified + 0 + 0 + + 202 + 79 + 224 + 93 + + + + helmet + Unspecified + 0 + 0 + + 151 + 74 + 175 + 92 + + + + helmet + Unspecified + 0 + 0 + + 150 + 47 + 163 + 59 + + + + helmet + Unspecified + 1 + 0 + + 41 + 1 + 112 + 49 + + + + helmet + Unspecified + 0 + 0 + + 7 + 57 + 40 + 80 + + + + helmet + Unspecified + 1 + 0 + + 1 + 29 + 13 + 38 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 29 + 20 + 57 + + + + person with helmet + Unspecified + 1 + 0 + + 7 + 1 + 111 + 193 + + + + person with helmet + Unspecified + 0 + 0 + + 98 + 115 + 150 + 193 + + + + person with helmet + Unspecified + 0 + 0 + + 145 + 80 + 212 + 192 + + + + person with helmet + Unspecified + 0 + 0 + + 194 + 108 + 259 + 192 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 47 + 168 + 75 + + + diff --git a/train_annot_folder/worker (607).xml b/train_annot_folder/worker (607).xml new file mode 100644 index 000000000..4b68e9b8d --- /dev/null +++ b/train_annot_folder/worker (607).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (607).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (607).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 43 + 7 + 134 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 7 + 160 + 182 + + + + helmet + Unspecified + 0 + 0 + + 147 + 78 + 180 + 101 + + + + helmet + Unspecified + 0 + 0 + + 133 + 78 + 198 + 132 + + + diff --git a/train_annot_folder/worker (608).xml b/train_annot_folder/worker (608).xml new file mode 100644 index 000000000..b2bbf2778 --- /dev/null +++ b/train_annot_folder/worker (608).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (608).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (608).jpg + + Unknown + + + 179 + 282 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 67 + 16 + 136 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 18 + 154 + 270 + + + diff --git a/train_annot_folder/worker (609).xml b/train_annot_folder/worker (609).xml new file mode 100644 index 000000000..a6457890f --- /dev/null +++ b/train_annot_folder/worker (609).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (609).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (609).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 105 + 22 + 151 + 64 + + + + helmet + Unspecified + 0 + 0 + + 173 + 31 + 226 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 161 + 31 + 244 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 66 + 22 + 150 + 181 + + + diff --git a/train_annot_folder/worker (61).xml b/train_annot_folder/worker (61).xml new file mode 100644 index 000000000..61f6aec43 --- /dev/null +++ b/train_annot_folder/worker (61).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (61).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (61).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 87 + 59 + 124 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 18 + 59 + 133 + 175 + + + diff --git a/train_annot_folder/worker (610).xml b/train_annot_folder/worker (610).xml new file mode 100644 index 000000000..b87c98abe --- /dev/null +++ b/train_annot_folder/worker (610).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (610).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (610).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 153 + 52 + 245 + 111 + + + + helmet + Unspecified + 0 + 0 + + 103 + 48 + 156 + 84 + + + + person with helmet + Unspecified + 0 + 0 + + 87 + 48 + 168 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 51 + 272 + 182 + + + diff --git a/train_annot_folder/worker (611).xml b/train_annot_folder/worker (611).xml new file mode 100644 index 000000000..0f99899a1 --- /dev/null +++ b/train_annot_folder/worker (611).xml @@ -0,0 +1,110 @@ + + dataset_images + worker (611).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (611).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 183 + 14 + 216 + 38 + + + + helmet + Unspecified + 0 + 0 + + 136 + 13 + 164 + 36 + + + + helmet + Unspecified + 0 + 0 + + 90 + 19 + 118 + 46 + + + + helmet + Unspecified + 0 + 0 + + 38 + 19 + 76 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 18 + 73 + 132 + + + + person with helmet + Unspecified + 0 + 0 + + 67 + 19 + 133 + 129 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 13 + 175 + 124 + + + + person with helmet + Unspecified + 0 + 0 + + 177 + 12 + 233 + 135 + + + diff --git a/train_annot_folder/worker (612).xml b/train_annot_folder/worker (612).xml new file mode 100644 index 000000000..6e8483b96 --- /dev/null +++ b/train_annot_folder/worker (612).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (612).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (612).jpg + + Unknown + + + 259 + 195 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 126 + 40 + 181 + 79 + + + + helmet + Unspecified + 0 + 0 + + 64 + 36 + 107 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 36 + 131 + 136 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 40 + 199 + 178 + + + diff --git a/train_annot_folder/worker (613).xml b/train_annot_folder/worker (613).xml new file mode 100644 index 000000000..59472ab45 --- /dev/null +++ b/train_annot_folder/worker (613).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (613).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (613).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 92 + 25 + 107 + 36 + + + + person with helmet + Unspecified + 0 + 0 + + 86 + 25 + 112 + 96 + + + + helmet + Unspecified + 0 + 0 + + 191 + 33 + 202 + 45 + + + + person with helmet + Unspecified + 0 + 0 + + 188 + 33 + 208 + 76 + + + diff --git a/train_annot_folder/worker (614).xml b/train_annot_folder/worker (614).xml new file mode 100644 index 000000000..9c8302fa4 --- /dev/null +++ b/train_annot_folder/worker (614).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (614).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (614).jpg + + Unknown + + + 179 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 65 + 48 + 143 + 101 + + + + person with helmet + Unspecified + 0 + 0 + + 64 + 47 + 175 + 269 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 29 + 91 + 143 + + + + helmet + Unspecified + 0 + 0 + + 9 + 28 + 66 + 73 + + + diff --git a/train_annot_folder/worker (615).xml b/train_annot_folder/worker (615).xml new file mode 100644 index 000000000..f0e3ade94 --- /dev/null +++ b/train_annot_folder/worker (615).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (615).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (615).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 152 + 1 + 216 + 37 + + + + person with helmet + Unspecified + 1 + 0 + + 116 + 1 + 234 + 188 + + + diff --git a/train_annot_folder/worker (616).xml b/train_annot_folder/worker (616).xml new file mode 100644 index 000000000..9450a77ab --- /dev/null +++ b/train_annot_folder/worker (616).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (616).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (616).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 67 + 61 + 124 + 107 + + + + helmet + Unspecified + 0 + 0 + + 25 + 31 + 69 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 65 + 157 + 223 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 32 + 88 + 136 + + + diff --git a/train_annot_folder/worker (617).xml b/train_annot_folder/worker (617).xml new file mode 100644 index 000000000..e13d7d727 --- /dev/null +++ b/train_annot_folder/worker (617).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (617).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (617).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 109 + 31 + 158 + 65 + + + + helmet + Unspecified + 0 + 0 + + 57 + 56 + 96 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 31 + 189 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 49 + 56 + 107 + 130 + + + diff --git a/train_annot_folder/worker (618).xml b/train_annot_folder/worker (618).xml new file mode 100644 index 000000000..58fe267d6 --- /dev/null +++ b/train_annot_folder/worker (618).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (618).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (618).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 88 + 1 + 149 + 45 + + + + person with helmet + Unspecified + 1 + 0 + + 48 + 1 + 194 + 167 + + + diff --git a/train_annot_folder/worker (619).xml b/train_annot_folder/worker (619).xml new file mode 100644 index 000000000..3e1a52b88 --- /dev/null +++ b/train_annot_folder/worker (619).xml @@ -0,0 +1,74 @@ + + dataset_images + worker (619).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (619).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 95 + 42 + 151 + 82 + + + + helmet + Unspecified + 0 + 0 + + 193 + 2 + 258 + 59 + + + + helmet + Unspecified + 0 + 0 + + 19 + 72 + 45 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 41 + 180 + 182 + + + + person with helmet + Unspecified + 1 + 0 + + 176 + 1 + 274 + 182 + + + diff --git a/train_annot_folder/worker (62).xml b/train_annot_folder/worker (62).xml new file mode 100644 index 000000000..44ad0ed0a --- /dev/null +++ b/train_annot_folder/worker (62).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (62).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (62).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 10 + 1 + 170 + 84 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 176 + 264 + + + diff --git a/train_annot_folder/worker (620).xml b/train_annot_folder/worker (620).xml new file mode 100644 index 000000000..3864a8088 --- /dev/null +++ b/train_annot_folder/worker (620).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (620).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (620).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 115 + 5 + 193 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 5 + 244 + 167 + + + diff --git a/train_annot_folder/worker (621).xml b/train_annot_folder/worker (621).xml new file mode 100644 index 000000000..c72242f18 --- /dev/null +++ b/train_annot_folder/worker (621).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (621).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (621).jpg + + Unknown + + + 180 + 281 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 82 + 74 + 103 + 92 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 74 + 122 + 121 + + + diff --git a/train_annot_folder/worker (622).xml b/train_annot_folder/worker (622).xml new file mode 100644 index 000000000..8cba0a77f --- /dev/null +++ b/train_annot_folder/worker (622).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (622).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (622).jpg + + Unknown + + + 182 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 48 + 42 + 104 + 78 + + + + helmet + Unspecified + 0 + 0 + + 11 + 43 + 117 + 275 + + + diff --git a/train_annot_folder/worker (623).xml b/train_annot_folder/worker (623).xml new file mode 100644 index 000000000..9d3746dd1 --- /dev/null +++ b/train_annot_folder/worker (623).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (623).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (623).jpg + + Unknown + + + 280 + 180 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 97 + 1 + 178 + 57 + + + + person with helmet + Unspecified + 1 + 0 + + 49 + 1 + 236 + 166 + + + diff --git a/train_annot_folder/worker (624).xml b/train_annot_folder/worker (624).xml new file mode 100644 index 000000000..a89277228 --- /dev/null +++ b/train_annot_folder/worker (624).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (624).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (624).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 40 + 154 + 81 + + + + helmet + Unspecified + 0 + 0 + + 45 + 61 + 79 + 85 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 60 + 97 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 39 + 188 + 159 + + + diff --git a/train_annot_folder/worker (625).xml b/train_annot_folder/worker (625).xml new file mode 100644 index 000000000..a3ef0d551 --- /dev/null +++ b/train_annot_folder/worker (625).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (625).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (625).jpg + + Unknown + + + 232 + 217 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 109 + 43 + 172 + 87 + + + + helmet + Unspecified + 1 + 0 + + 26 + 1 + 60 + 29 + + + + person with helmet + Unspecified + 1 + 0 + + 24 + 1 + 79 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 42 + 175 + 202 + + + diff --git a/train_annot_folder/worker (626).xml b/train_annot_folder/worker (626).xml new file mode 100644 index 000000000..534f483e0 --- /dev/null +++ b/train_annot_folder/worker (626).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (626).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (626).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 86 + 7 + 178 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 57 + 8 + 237 + 174 + + + diff --git a/train_annot_folder/worker (627).xml b/train_annot_folder/worker (627).xml new file mode 100644 index 000000000..b3d13cfd0 --- /dev/null +++ b/train_annot_folder/worker (627).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (627).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (627).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 112 + 23 + 172 + 64 + + + + helmet + Unspecified + 0 + 0 + + 63 + 7 + 109 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 22 + 197 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 5 + 122 + 92 + + + diff --git a/train_annot_folder/worker (628).xml b/train_annot_folder/worker (628).xml new file mode 100644 index 000000000..529598aeb --- /dev/null +++ b/train_annot_folder/worker (628).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (628).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (628).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 4 + 175 + 46 + + + + helmet + Unspecified + 1 + 0 + + 207 + 1 + 261 + 51 + + + + helmet + Unspecified + 1 + 0 + + 27 + 1 + 92 + 45 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 92 + 161 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 5 + 205 + 162 + + + + person with helmet + Unspecified + 1 + 0 + + 206 + 1 + 293 + 144 + + + diff --git a/train_annot_folder/worker (629).xml b/train_annot_folder/worker (629).xml new file mode 100644 index 000000000..14a0f5a6b --- /dev/null +++ b/train_annot_folder/worker (629).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (629).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (629).jpg + + Unknown + + + 214 + 236 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 21 + 10 + 112 + 81 + + + + person with helmet + Unspecified + 1 + 0 + + 2 + 11 + 159 + 236 + + + diff --git a/train_annot_folder/worker (63).xml b/train_annot_folder/worker (63).xml new file mode 100644 index 000000000..901801451 --- /dev/null +++ b/train_annot_folder/worker (63).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (63).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (63).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 125 + 12 + 209 + 80 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 12 + 237 + 167 + + + diff --git a/train_annot_folder/worker (630).xml b/train_annot_folder/worker (630).xml new file mode 100644 index 000000000..f5afc958a --- /dev/null +++ b/train_annot_folder/worker (630).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (630).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (630).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 110 + 29 + 174 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 28 + 201 + 177 + + + + helmet + Unspecified + 0 + 0 + + 74 + 78 + 99 + 96 + + + + person with helmet + Unspecified + 0 + 0 + + 54 + 78 + 107 + 170 + + + diff --git a/train_annot_folder/worker (631).xml b/train_annot_folder/worker (631).xml new file mode 100644 index 000000000..401074813 --- /dev/null +++ b/train_annot_folder/worker (631).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (631).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (631).jpg + + Unknown + + + 239 + 211 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 55 + 214 + 103 + + + + helmet + Unspecified + 0 + 0 + + 81 + 58 + 131 + 97 + + + + person with helmet + Unspecified + 0 + 0 + + 127 + 55 + 237 + 209 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 58 + 133 + 126 + + + diff --git a/train_annot_folder/worker (632).xml b/train_annot_folder/worker (632).xml new file mode 100644 index 000000000..8662e7647 --- /dev/null +++ b/train_annot_folder/worker (632).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (632).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (632).jpg + + Unknown + + + 219 + 230 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 134 + 49 + 168 + 77 + + + + helmet + Unspecified + 0 + 0 + + 87 + 27 + 119 + 54 + + + + helmet + Unspecified + 0 + 0 + + 55 + 18 + 94 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 50 + 194 + 228 + + + + person with helmet + Unspecified + 0 + 0 + + 35 + 19 + 94 + 229 + + + + person with helmet + Unspecified + 1 + 0 + + 78 + 27 + 116 + 230 + + + diff --git a/train_annot_folder/worker (633).xml b/train_annot_folder/worker (633).xml new file mode 100644 index 000000000..48b12b5d4 --- /dev/null +++ b/train_annot_folder/worker (633).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (633).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (633).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 97 + 21 + 202 + 118 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 22 + 243 + 167 + + + diff --git a/train_annot_folder/worker (634).xml b/train_annot_folder/worker (634).xml new file mode 100644 index 000000000..63d8a804a --- /dev/null +++ b/train_annot_folder/worker (634).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (634).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (634).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 19 + 12 + 80 + 65 + + + + helmet + Unspecified + 1 + 0 + + 87 + 1 + 133 + 58 + + + + person with helmet + Unspecified + 1 + 0 + + 87 + 1 + 265 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 11 + 172 + 176 + + + diff --git a/train_annot_folder/worker (635).xml b/train_annot_folder/worker (635).xml new file mode 100644 index 000000000..2064bf04f --- /dev/null +++ b/train_annot_folder/worker (635).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (635).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (635).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 157 + 54 + 178 + 73 + + + + helmet + Unspecified + 0 + 0 + + 132 + 62 + 151 + 78 + + + + person with helmet + Unspecified + 0 + 0 + + 122 + 62 + 153 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 55 + 193 + 171 + + + diff --git a/train_annot_folder/worker (636).xml b/train_annot_folder/worker (636).xml new file mode 100644 index 000000000..0eb8952e2 --- /dev/null +++ b/train_annot_folder/worker (636).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (636).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (636).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 97 + 75 + 112 + 88 + + + + helmet + Unspecified + 0 + 0 + + 169 + 81 + 179 + 93 + + + + helmet + Unspecified + 0 + 0 + + 235 + 81 + 244 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 232 + 80 + 248 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 81 + 180 + 130 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 75 + 113 + 149 + + + diff --git a/train_annot_folder/worker (637).xml b/train_annot_folder/worker (637).xml new file mode 100644 index 000000000..be34cc733 --- /dev/null +++ b/train_annot_folder/worker (637).xml @@ -0,0 +1,122 @@ + + dataset_images + worker (637).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (637).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 118 + 31 + 158 + 59 + + + + helmet + Unspecified + 0 + 0 + + 229 + 41 + 263 + 66 + + + + helmet + Unspecified + 0 + 0 + + 190 + 53 + 220 + 75 + + + + helmet + Unspecified + 0 + 0 + + 69 + 41 + 107 + 73 + + + + helmet + Unspecified + 0 + 0 + + 8 + 32 + 45 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 32 + 183 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 214 + 42 + 274 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 43 + 42 + 108 + 167 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 32 + 63 + 141 + + + diff --git a/train_annot_folder/worker (638).xml b/train_annot_folder/worker (638).xml new file mode 100644 index 000000000..9d4cf42b3 --- /dev/null +++ b/train_annot_folder/worker (638).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (638).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (638).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 55 + 38 + 176 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 77 + 227 + 127 + + + + helmet + Unspecified + 0 + 0 + + 182 + 77 + 212 + 98 + + + + helmet + Unspecified + 0 + 0 + + 87 + 34 + 157 + 91 + + + diff --git a/train_annot_folder/worker (639).xml b/train_annot_folder/worker (639).xml new file mode 100644 index 000000000..17b088d2b --- /dev/null +++ b/train_annot_folder/worker (639).xml @@ -0,0 +1,86 @@ + + dataset_images + worker (639).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (639).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 69 + 136 + 84 + + + + helmet + Unspecified + 0 + 0 + + 142 + 58 + 160 + 75 + + + + helmet + Unspecified + 0 + 0 + + 163 + 51 + 185 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 161 + 50 + 203 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 134 + 59 + 165 + 162 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 70 + 143 + 167 + + + diff --git a/train_annot_folder/worker (64).xml b/train_annot_folder/worker (64).xml new file mode 100644 index 000000000..afd095de0 --- /dev/null +++ b/train_annot_folder/worker (64).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (64).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (64).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 124 + 16 + 201 + 174 + + + + helmet + Unspecified + 0 + 0 + + 134 + 14 + 202 + 54 + + + diff --git a/train_annot_folder/worker (640).xml b/train_annot_folder/worker (640).xml new file mode 100644 index 000000000..c09faa66a --- /dev/null +++ b/train_annot_folder/worker (640).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (640).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (640).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 124 + 59 + 145 + 78 + + + + helmet + Unspecified + 0 + 0 + + 149 + 52 + 171 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 146 + 54 + 186 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 116 + 60 + 149 + 161 + + + diff --git a/train_annot_folder/worker (641).xml b/train_annot_folder/worker (641).xml new file mode 100644 index 000000000..57bd68839 --- /dev/null +++ b/train_annot_folder/worker (641).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (641).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (641).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 70 + 21 + 119 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 22 + 150 + 274 + + + diff --git a/train_annot_folder/worker (642).xml b/train_annot_folder/worker (642).xml new file mode 100644 index 000000000..7b57bcf13 --- /dev/null +++ b/train_annot_folder/worker (642).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (642).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (642).jpg + + Unknown + + + 258 + 195 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 60 + 150 + 92 + + + + person with helmet + Unspecified + 0 + 0 + + 66 + 60 + 184 + 193 + + + diff --git a/train_annot_folder/worker (643).xml b/train_annot_folder/worker (643).xml new file mode 100644 index 000000000..53658fa7b --- /dev/null +++ b/train_annot_folder/worker (643).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (643).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (643).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 118 + 8 + 178 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 80 + 8 + 186 + 166 + + + diff --git a/train_annot_folder/worker (644).xml b/train_annot_folder/worker (644).xml new file mode 100644 index 000000000..a7b059524 --- /dev/null +++ b/train_annot_folder/worker (644).xml @@ -0,0 +1,98 @@ + + dataset_images + worker (644).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (644).jpg + + Unknown + + + 298 + 169 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 62 + 73 + 86 + + + + helmet + Unspecified + 0 + 0 + + 102 + 64 + 130 + 82 + + + + helmet + Unspecified + 0 + 0 + + 182 + 86 + 200 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 61 + 86 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 64 + 143 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 175 + 86 + 207 + 168 + + + + person without helmet + Unspecified + 0 + 0 + + 196 + 86 + 243 + 168 + + + diff --git a/train_annot_folder/worker (645).xml b/train_annot_folder/worker (645).xml new file mode 100644 index 000000000..13c4bd053 --- /dev/null +++ b/train_annot_folder/worker (645).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (645).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (645).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 66 + 17 + 134 + 61 + + + + helmet + Unspecified + 1 + 0 + + 162 + 1 + 244 + 46 + + + + person with helmet + Unspecified + 1 + 0 + + 144 + 1 + 286 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 17 + 156 + 167 + + + diff --git a/train_annot_folder/worker (646).xml b/train_annot_folder/worker (646).xml new file mode 100644 index 000000000..bf7030097 --- /dev/null +++ b/train_annot_folder/worker (646).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (646).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (646).jpg + + Unknown + + + 273 + 184 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 138 + 1 + 211 + 54 + + + + helmet + Unspecified + 0 + 0 + + 27 + 4 + 143 + 68 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 5 + 142 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 129 + 1 + 258 + 183 + + + diff --git a/train_annot_folder/worker (647).xml b/train_annot_folder/worker (647).xml new file mode 100644 index 000000000..e361fa024 --- /dev/null +++ b/train_annot_folder/worker (647).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (647).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (647).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 88 + 6 + 142 + 46 + + + + helmet + Unspecified + 0 + 0 + + 8 + 20 + 75 + 61 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 21 + 83 + 182 + + + + person with helmet + Unspecified + 1 + 0 + + 65 + 7 + 194 + 183 + + + diff --git a/train_annot_folder/worker (648).xml b/train_annot_folder/worker (648).xml new file mode 100644 index 000000000..de7b55f97 --- /dev/null +++ b/train_annot_folder/worker (648).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (648).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (648).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 170 + 30 + 254 + 191 + + + + helmet + Unspecified + 0 + 0 + + 188 + 29 + 212 + 49 + + + diff --git a/train_annot_folder/worker (649).xml b/train_annot_folder/worker (649).xml new file mode 100644 index 000000000..ec88a7560 --- /dev/null +++ b/train_annot_folder/worker (649).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (649).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (649).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 115 + 6 + 219 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 108 + 1 + 221 + 173 + + + diff --git a/train_annot_folder/worker (65).xml b/train_annot_folder/worker (65).xml new file mode 100644 index 000000000..bfca76885 --- /dev/null +++ b/train_annot_folder/worker (65).xml @@ -0,0 +1,38 @@ + + dataset_images + worker (65).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (65).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 54 + 9 + 121 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 9 + 162 + 174 + + + diff --git a/train_annot_folder/worker (650).xml b/train_annot_folder/worker (650).xml new file mode 100644 index 000000000..a2f70301b --- /dev/null +++ b/train_annot_folder/worker (650).xml @@ -0,0 +1,62 @@ + + dataset_images + worker (650).jpg + D:\Workspace\YOLO_annotation\dataset_images\worker (650).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 135 + 7 + 213 + 64 + + + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 144 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 135 + 8 + 250 + 163 + + + + person with helmet + Unspecified + 1 + 0 + + 3 + 1 + 175 + 175 + + + diff --git a/train_annot_folder/worker (675).xml b/train_annot_folder/worker (675).xml new file mode 100644 index 000000000..f7a8e155a --- /dev/null +++ b/train_annot_folder/worker (675).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (675).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (675).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 137 + 16 + 173 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 123 + 17 + 192 + 190 + + + diff --git a/train_annot_folder/worker (676).xml b/train_annot_folder/worker (676).xml new file mode 100644 index 000000000..2088b6e74 --- /dev/null +++ b/train_annot_folder/worker (676).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (676).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (676).jpg + + Unknown + + + 273 + 184 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 177 + 93 + 200 + 176 + + + + helmet + Unspecified + 0 + 0 + + 180 + 92 + 192 + 104 + + + + helmet + Unspecified + 0 + 0 + + 147 + 103 + 155 + 110 + + + + person with helmet + Unspecified + 0 + 0 + + 140 + 102 + 161 + 173 + + + + helmet + Unspecified + 0 + 0 + + 77 + 77 + 133 + 138 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 76 + 134 + 183 + + + diff --git a/train_annot_folder/worker (677).xml b/train_annot_folder/worker (677).xml new file mode 100644 index 000000000..e885c4a73 --- /dev/null +++ b/train_annot_folder/worker (677).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (677).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (677).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 128 + 2 + 197 + 51 + + + + person with helmet + Unspecified + 1 + 0 + + 128 + 1 + 218 + 173 + + + diff --git a/train_annot_folder/worker (678).xml b/train_annot_folder/worker (678).xml new file mode 100644 index 000000000..6923730f7 --- /dev/null +++ b/train_annot_folder/worker (678).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (678).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (678).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 36 + 32 + 85 + 76 + + + + helmet + Unspecified + 0 + 0 + + 113 + 59 + 161 + 105 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 31 + 112 + 119 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 52 + 169 + 132 + + + diff --git a/train_annot_folder/worker (679).xml b/train_annot_folder/worker (679).xml new file mode 100644 index 000000000..9d3f5be85 --- /dev/null +++ b/train_annot_folder/worker (679).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (679).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (679).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 50 + 65 + 92 + 104 + + + + helmet + Unspecified + 0 + 0 + + 94 + 31 + 147 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 50 + 66 + 131 + 208 + + + + person with helmet + Unspecified + 1 + 0 + + 89 + 22 + 183 + 215 + + + diff --git a/train_annot_folder/worker (680).xml b/train_annot_folder/worker (680).xml new file mode 100644 index 000000000..89027fe26 --- /dev/null +++ b/train_annot_folder/worker (680).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (680).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (680).jpg + + Unknown + + + 188 + 268 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 33 + 33 + 97 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 24 + 34 + 132 + 249 + + + diff --git a/train_annot_folder/worker (681).xml b/train_annot_folder/worker (681).xml new file mode 100644 index 000000000..f9eecc046 --- /dev/null +++ b/train_annot_folder/worker (681).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (681).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (681).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 10 + 169 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 85 + 10 + 201 + 222 + + + diff --git a/train_annot_folder/worker (683).xml b/train_annot_folder/worker (683).xml new file mode 100644 index 000000000..9ec5cabd1 --- /dev/null +++ b/train_annot_folder/worker (683).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (683).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (683).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 36 + 154 + 72 + + + + helmet + Unspecified + 0 + 0 + + 152 + 23 + 192 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 86 + 36 + 155 + 112 + + + + person with helmet + Unspecified + 0 + 0 + + 151 + 21 + 221 + 97 + + + diff --git a/train_annot_folder/worker (684).xml b/train_annot_folder/worker (684).xml new file mode 100644 index 000000000..a71ef274e --- /dev/null +++ b/train_annot_folder/worker (684).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (684).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (684).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 82 + 1 + 121 + 24 + + + + helmet + Unspecified + 0 + 0 + + 110 + 29 + 156 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 30 + 178 + 151 + + + + person with helmet + Unspecified + 1 + 0 + + 58 + 1 + 117 + 81 + + + diff --git a/train_annot_folder/worker (685).xml b/train_annot_folder/worker (685).xml new file mode 100644 index 000000000..6497fb540 --- /dev/null +++ b/train_annot_folder/worker (685).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (685).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (685).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 60 + 47 + 88 + + + + helmet + Unspecified + 0 + 0 + + 92 + 47 + 140 + 86 + + + + helmet + Unspecified + 0 + 0 + + 189 + 61 + 236 + 107 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 62 + 50 + 136 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 46 + 175 + 148 + + + + person with helmet + Unspecified + 0 + 0 + + 187 + 60 + 261 + 160 + + + diff --git a/train_annot_folder/worker (686).xml b/train_annot_folder/worker (686).xml new file mode 100644 index 000000000..873d73fe8 --- /dev/null +++ b/train_annot_folder/worker (686).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (686).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (686).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 71 + 5 + 189 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 70 + 4 + 191 + 99 + + + diff --git a/train_annot_folder/worker (687).xml b/train_annot_folder/worker (687).xml new file mode 100644 index 000000000..fbaa051da --- /dev/null +++ b/train_annot_folder/worker (687).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (687).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (687).jpg + + Unknown + + + 276 + 182 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 83 + 175 + 124 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 80 + 207 + 179 + + + diff --git a/train_annot_folder/worker (688).xml b/train_annot_folder/worker (688).xml new file mode 100644 index 000000000..0223c4065 --- /dev/null +++ b/train_annot_folder/worker (688).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (688).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (688).jpg + + Unknown + + + 264 + 191 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 57 + 46 + 94 + 72 + + + + helmet + Unspecified + 0 + 0 + + 129 + 60 + 162 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 39 + 47 + 96 + 145 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 61 + 167 + 167 + + + diff --git a/train_annot_folder/worker (689).xml b/train_annot_folder/worker (689).xml new file mode 100644 index 000000000..be6ad8963 --- /dev/null +++ b/train_annot_folder/worker (689).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (689).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (689).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 85 + 49 + 141 + 82 + + + + helmet + Unspecified + 0 + 0 + + 25 + 78 + 69 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 48 + 182 + 272 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 79 + 91 + 268 + + + diff --git a/train_annot_folder/worker (690).xml b/train_annot_folder/worker (690).xml new file mode 100644 index 000000000..8405900c1 --- /dev/null +++ b/train_annot_folder/worker (690).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (690).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (690).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 124 + 33 + 161 + 59 + + + + helmet + Unspecified + 0 + 0 + + 186 + 38 + 226 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 97 + 33 + 179 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 184 + 37 + 260 + 176 + + + diff --git a/train_annot_folder/worker (691).xml b/train_annot_folder/worker (691).xml new file mode 100644 index 000000000..410e89544 --- /dev/null +++ b/train_annot_folder/worker (691).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (691).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (691).jpg + + Unknown + + + 225 + 224 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 167 + 13 + 193 + 39 + + + + helmet + Unspecified + 0 + 0 + + 146 + 101 + 168 + 131 + + + + helmet + Unspecified + 0 + 0 + + 51 + 103 + 82 + 125 + + + + person with helmet + Unspecified + 0 + 0 + + 162 + 14 + 215 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 104 + 102 + 169 + 180 + + + + person with helmet + Unspecified + 0 + 0 + + 37 + 102 + 105 + 209 + + + diff --git a/train_annot_folder/worker (692).xml b/train_annot_folder/worker (692).xml new file mode 100644 index 000000000..efe005285 --- /dev/null +++ b/train_annot_folder/worker (692).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (692).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (692).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 7 + 178 + 32 + + + + helmet + Unspecified + 0 + 0 + + 156 + 118 + 189 + 153 + + + + person with helmet + Unspecified + 0 + 0 + + 142 + 116 + 193 + 171 + + + + person with helmet + Unspecified + 0 + 0 + + 137 + 2 + 187 + 42 + + + diff --git a/train_annot_folder/worker (693).xml b/train_annot_folder/worker (693).xml new file mode 100644 index 000000000..aa74a8263 --- /dev/null +++ b/train_annot_folder/worker (693).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (693).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (693).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 148 + 34 + 231 + 130 + + + + person with helmet + Unspecified + 0 + 0 + + 52 + 25 + 138 + 144 + + + + helmet + Unspecified + 0 + 0 + + 168 + 36 + 213 + 62 + + + + helmet + Unspecified + 0 + 0 + + 78 + 26 + 128 + 54 + + + diff --git a/train_annot_folder/worker (694).xml b/train_annot_folder/worker (694).xml new file mode 100644 index 000000000..fe4e18517 --- /dev/null +++ b/train_annot_folder/worker (694).xml @@ -0,0 +1,146 @@ + + all_images_folder + worker (694).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (694).jpg + + Unknown + + + 273 + 185 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 44 + 91 + 69 + + + + helmet + Unspecified + 0 + 0 + + 81 + 41 + 108 + 56 + + + + helmet + Unspecified + 0 + 0 + + 101 + 38 + 126 + 53 + + + + helmet + Unspecified + 0 + 0 + + 152 + 37 + 184 + 60 + + + + helmet + Unspecified + 0 + 0 + + 210 + 44 + 243 + 63 + + + + helmet + Unspecified + 0 + 0 + + 87 + 62 + 126 + 94 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 44 + 91 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 89 + 66 + 128 + 105 + + + + person with helmet + Unspecified + 0 + 0 + + 142 + 36 + 192 + 112 + + + + person with helmet + Unspecified + 0 + 0 + + 209 + 44 + 272 + 113 + + + + person without helmet + Unspecified + 0 + 0 + + 194 + 34 + 214 + 104 + + + diff --git a/train_annot_folder/worker (695).xml b/train_annot_folder/worker (695).xml new file mode 100644 index 000000000..18828f555 --- /dev/null +++ b/train_annot_folder/worker (695).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (695).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (695).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 110 + 1 + 261 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 90 + 1 + 265 + 181 + + + diff --git a/train_annot_folder/worker (696).xml b/train_annot_folder/worker (696).xml new file mode 100644 index 000000000..8b2fbe145 --- /dev/null +++ b/train_annot_folder/worker (696).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (696).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (696).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 34 + 188 + 65 + + + + helmet + Unspecified + 0 + 0 + + 66 + 29 + 109 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 33 + 225 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 49 + 30 + 143 + 158 + + + diff --git a/train_annot_folder/worker (697).xml b/train_annot_folder/worker (697).xml new file mode 100644 index 000000000..eb1dc76ff --- /dev/null +++ b/train_annot_folder/worker (697).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (697).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (697).jpg + + Unknown + + + 177 + 284 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 108 + 77 + 176 + 257 + + + + person with helmet + Unspecified + 0 + 0 + + 29 + 91 + 109 + 262 + + + + helmet + Unspecified + 0 + 0 + + 108 + 78 + 149 + 103 + + + + helmet + Unspecified + 0 + 0 + + 37 + 92 + 80 + 124 + + + diff --git a/train_annot_folder/worker (698).xml b/train_annot_folder/worker (698).xml new file mode 100644 index 000000000..6fdc20aa9 --- /dev/null +++ b/train_annot_folder/worker (698).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (698).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (698).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 4 + 15 + 126 + 88 + + + + helmet + Unspecified + 0 + 0 + + 141 + 16 + 253 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 12 + 125 + 179 + + + + person with helmet + Unspecified + 1 + 0 + + 140 + 16 + 271 + 183 + + + diff --git a/train_annot_folder/worker (699).xml b/train_annot_folder/worker (699).xml new file mode 100644 index 000000000..a34ec40e4 --- /dev/null +++ b/train_annot_folder/worker (699).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (699).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (699).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 24 + 38 + 96 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 16 + 132 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 125 + 11 + 196 + 178 + + + + person with helmet + Unspecified + 1 + 0 + + 178 + 1 + 255 + 74 + + + + person with helmet + Unspecified + 1 + 0 + + 221 + 36 + 275 + 141 + + + + helmet + Unspecified + 0 + 0 + + 25 + 38 + 79 + 76 + + + + helmet + Unspecified + 0 + 0 + + 73 + 17 + 124 + 53 + + + + helmet + Unspecified + 0 + 0 + + 125 + 12 + 188 + 53 + + + + helmet + Unspecified + 1 + 0 + + 177 + 1 + 256 + 28 + + + + helmet + Unspecified + 1 + 0 + + 219 + 35 + 275 + 77 + + + diff --git a/train_annot_folder/worker (7).xml b/train_annot_folder/worker (7).xml new file mode 100644 index 000000000..135761175 --- /dev/null +++ b/train_annot_folder/worker (7).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (7).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (7).jpg + + Unknown + + + 261 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 15 + 8 + 109 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 10 + 159 + 176 + + + diff --git a/train_annot_folder/worker (70).xml b/train_annot_folder/worker (70).xml new file mode 100644 index 000000000..fac560609 --- /dev/null +++ b/train_annot_folder/worker (70).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (70).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (70).jpg + + Unknown + + + 188 + 268 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 102 + 36 + 143 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 98 + 37 + 157 + 225 + + + diff --git a/train_annot_folder/worker (700).xml b/train_annot_folder/worker (700).xml new file mode 100644 index 000000000..080dd2941 --- /dev/null +++ b/train_annot_folder/worker (700).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (700).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (700).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 48 + 65 + 92 + 95 + + + + helmet + Unspecified + 0 + 0 + + 86 + 95 + 138 + 129 + + + + person with helmet + Unspecified + 0 + 0 + + 33 + 65 + 88 + 152 + + + + person with helmet + Unspecified + 0 + 0 + + 79 + 94 + 162 + 220 + + + diff --git a/train_annot_folder/worker (701).xml b/train_annot_folder/worker (701).xml new file mode 100644 index 000000000..fdb6ab4ab --- /dev/null +++ b/train_annot_folder/worker (701).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (701).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (701).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 83 + 1 + 148 + 42 + + + + helmet + Unspecified + 0 + 0 + + 142 + 13 + 175 + 44 + + + + person with helmet + Unspecified + 1 + 0 + + 26 + 1 + 147 + 146 + + + + person with helmet + Unspecified + 0 + 0 + + 140 + 13 + 182 + 129 + + + diff --git a/train_annot_folder/worker (702).xml b/train_annot_folder/worker (702).xml new file mode 100644 index 000000000..93b06d523 --- /dev/null +++ b/train_annot_folder/worker (702).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (702).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (702).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 172 + 5 + 260 + 71 + + + + helmet + Unspecified + 1 + 0 + + 35 + 1 + 177 + 88 + + + + helmet + Unspecified + 1 + 0 + + 1 + 28 + 58 + 109 + + + + person with helmet + Unspecified + 1 + 0 + + 177 + 11 + 275 + 178 + + + + person with helmet + Unspecified + 1 + 0 + + 32 + 1 + 191 + 183 + + + diff --git a/train_annot_folder/worker (703).xml b/train_annot_folder/worker (703).xml new file mode 100644 index 000000000..12a93e0f1 --- /dev/null +++ b/train_annot_folder/worker (703).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (703).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (703).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 42 + 66 + 59 + + + + helmet + Unspecified + 0 + 0 + + 86 + 16 + 116 + 47 + + + + helmet + Unspecified + 0 + 0 + + 113 + 38 + 130 + 58 + + + + helmet + Unspecified + 0 + 0 + + 166 + 23 + 190 + 45 + + + + helmet + Unspecified + 0 + 0 + + 200 + 20 + 230 + 40 + + + + helmet + Unspecified + 0 + 0 + + 227 + 30 + 241 + 43 + + + + helmet + Unspecified + 0 + 0 + + 241 + 33 + 258 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 39 + 82 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 78 + 16 + 131 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 182 + 18 + 237 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 19 + 200 + 115 + + + + person with helmet + Unspecified + 0 + 0 + + 226 + 28 + 260 + 156 + + + diff --git a/train_annot_folder/worker (704).xml b/train_annot_folder/worker (704).xml new file mode 100644 index 000000000..abe76bfd6 --- /dev/null +++ b/train_annot_folder/worker (704).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (704).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (704).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 117 + 4 + 172 + 39 + + + + helmet + Unspecified + 0 + 0 + + 70 + 25 + 139 + 64 + + + + person with helmet + Unspecified + 1 + 0 + + 60 + 23 + 142 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 2 + 207 + 143 + + + diff --git a/train_annot_folder/worker (705).xml b/train_annot_folder/worker (705).xml new file mode 100644 index 000000000..7a3f966f2 --- /dev/null +++ b/train_annot_folder/worker (705).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (705).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (705).jpg + + Unknown + + + 265 + 190 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 28 + 17 + 99 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 21 + 245 + 175 + + + + helmet + Unspecified + 0 + 0 + + 33 + 19 + 88 + 50 + + + + helmet + Unspecified + 0 + 0 + + 178 + 22 + 230 + 53 + + + diff --git a/train_annot_folder/worker (706).xml b/train_annot_folder/worker (706).xml new file mode 100644 index 000000000..af5b835b5 --- /dev/null +++ b/train_annot_folder/worker (706).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (706).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (706).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 95 + 9 + 134 + 39 + + + + helmet + Unspecified + 1 + 0 + + 145 + 1 + 177 + 21 + + + + helmet + Unspecified + 0 + 0 + + 205 + 7 + 236 + 35 + + + + helmet + Unspecified + 0 + 0 + + 235 + 12 + 267 + 30 + + + + person with helmet + Unspecified + 0 + 0 + + 88 + 6 + 147 + 110 + + + + person with helmet + Unspecified + 1 + 0 + + 141 + 1 + 199 + 103 + + + + person with helmet + Unspecified + 0 + 0 + + 204 + 7 + 247 + 139 + + + + person with helmet + Unspecified + 0 + 0 + + 235 + 11 + 267 + 101 + + + diff --git a/train_annot_folder/worker (708).xml b/train_annot_folder/worker (708).xml new file mode 100644 index 000000000..386191415 --- /dev/null +++ b/train_annot_folder/worker (708).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (708).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (708).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 104 + 4 + 147 + 32 + + + + person with helmet + Unspecified + 0 + 0 + + 91 + 3 + 192 + 172 + + + diff --git a/train_annot_folder/worker (709).xml b/train_annot_folder/worker (709).xml new file mode 100644 index 000000000..ad4477061 --- /dev/null +++ b/train_annot_folder/worker (709).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (709).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (709).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 37 + 136 + 65 + + + + helmet + Unspecified + 0 + 0 + + 49 + 29 + 95 + 60 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 29 + 91 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 90 + 28 + 154 + 130 + + + diff --git a/train_annot_folder/worker (71).xml b/train_annot_folder/worker (71).xml new file mode 100644 index 000000000..31e72b35d --- /dev/null +++ b/train_annot_folder/worker (71).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (71).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (71).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 100 + 11 + 151 + 44 + + + + helmet + Unspecified + 1 + 0 + + 175 + 1 + 236 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 73 + 10 + 151 + 181 + + + + person with helmet + Unspecified + 1 + 0 + + 166 + 1 + 268 + 181 + + + diff --git a/train_annot_folder/worker (710).xml b/train_annot_folder/worker (710).xml new file mode 100644 index 000000000..941e3c196 --- /dev/null +++ b/train_annot_folder/worker (710).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (710).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (710).jpg + + Unknown + + + 251 + 201 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 84 + 1 + 160 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 48 + 1 + 229 + 196 + + + diff --git a/train_annot_folder/worker (711).xml b/train_annot_folder/worker (711).xml new file mode 100644 index 000000000..2add8a410 --- /dev/null +++ b/train_annot_folder/worker (711).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (711).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (711).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 74 + 66 + 95 + 81 + + + + helmet + Unspecified + 0 + 0 + + 111 + 68 + 130 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 65 + 65 + 96 + 201 + + + + person with helmet + Unspecified + 0 + 0 + + 106 + 68 + 137 + 202 + + + diff --git a/train_annot_folder/worker (712).xml b/train_annot_folder/worker (712).xml new file mode 100644 index 000000000..ef4c0c2d2 --- /dev/null +++ b/train_annot_folder/worker (712).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (712).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (712).jpg + + Unknown + + + 284 + 178 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 3 + 2 + 144 + 80 + + + + helmet + Unspecified + 0 + 0 + + 143 + 58 + 165 + 75 + + + + helmet + Unspecified + 0 + 0 + + 174 + 60 + 193 + 74 + + + + helmet + Unspecified + 0 + 0 + + 198 + 68 + 225 + 89 + + + + helmet + Unspecified + 0 + 0 + + 221 + 64 + 232 + 77 + + + + helmet + Unspecified + 0 + 0 + + 228 + 64 + 254 + 90 + + + + helmet + Unspecified + 0 + 0 + + 259 + 67 + 272 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 135 + 58 + 175 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 56 + 194 + 90 + + + + person with helmet + Unspecified + 1 + 0 + + 191 + 69 + 224 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 225 + 63 + 265 + 172 + + + + person with helmet + Unspecified + 1 + 0 + + 256 + 65 + 284 + 114 + + + diff --git a/train_annot_folder/worker (713).xml b/train_annot_folder/worker (713).xml new file mode 100644 index 000000000..ce1ae0911 --- /dev/null +++ b/train_annot_folder/worker (713).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (713).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (713).jpg + + Unknown + + + 264 + 191 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 100 + 9 + 133 + 52 + + + + helmet + Unspecified + 0 + 0 + + 164 + 30 + 203 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 9 + 149 + 86 + + + + person with helmet + Unspecified + 0 + 0 + + 150 + 28 + 216 + 104 + + + diff --git a/train_annot_folder/worker (714).xml b/train_annot_folder/worker (714).xml new file mode 100644 index 000000000..8c94b2a81 --- /dev/null +++ b/train_annot_folder/worker (714).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (714).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (714).jpg + + Unknown + + + 275 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 130 + 35 + 177 + 63 + + + + helmet + Unspecified + 0 + 0 + + 103 + 53 + 135 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 132 + 37 + 181 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 50 + 134 + 148 + + + diff --git a/train_annot_folder/worker (715).xml b/train_annot_folder/worker (715).xml new file mode 100644 index 000000000..6197e4d01 --- /dev/null +++ b/train_annot_folder/worker (715).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (715).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (715).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 87 + 45 + 124 + 70 + + + + helmet + Unspecified + 0 + 0 + + 126 + 27 + 182 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 124 + 30 + 199 + 180 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 46 + 129 + 178 + + + diff --git a/train_annot_folder/worker (716).xml b/train_annot_folder/worker (716).xml new file mode 100644 index 000000000..74ee64551 --- /dev/null +++ b/train_annot_folder/worker (716).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (716).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (716).jpg + + Unknown + + + 269 + 187 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 29 + 54 + 109 + 176 + + + + helmet + Unspecified + 0 + 0 + + 119 + 46 + 169 + 88 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 49 + 182 + 173 + + + + person without helmet + Unspecified + 0 + 0 + + 186 + 44 + 268 + 171 + + + diff --git a/train_annot_folder/worker (717).xml b/train_annot_folder/worker (717).xml new file mode 100644 index 000000000..55f425072 --- /dev/null +++ b/train_annot_folder/worker (717).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (717).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (717).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 5 + 186 + 55 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 5 + 245 + 179 + + + diff --git a/train_annot_folder/worker (718).xml b/train_annot_folder/worker (718).xml new file mode 100644 index 000000000..e3e137a66 --- /dev/null +++ b/train_annot_folder/worker (718).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (718).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (718).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 3 + 72 + 85 + 136 + + + + helmet + Unspecified + 0 + 0 + + 156 + 40 + 200 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 42 + 253 + 157 + + + + person with helmet + Unspecified + 1 + 0 + + 4 + 76 + 163 + 183 + + + diff --git a/train_annot_folder/worker (719).xml b/train_annot_folder/worker (719).xml new file mode 100644 index 000000000..f87d70a06 --- /dev/null +++ b/train_annot_folder/worker (719).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (719).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (719).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 88 + 9 + 142 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 11 + 178 + 173 + + + diff --git a/train_annot_folder/worker (72).xml b/train_annot_folder/worker (72).xml new file mode 100644 index 000000000..6b606aa2c --- /dev/null +++ b/train_annot_folder/worker (72).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (72).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (72).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 122 + 18 + 181 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 17 + 219 + 158 + + + diff --git a/train_annot_folder/worker (720).xml b/train_annot_folder/worker (720).xml new file mode 100644 index 000000000..c1ec8cee1 --- /dev/null +++ b/train_annot_folder/worker (720).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (720).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (720).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 75 + 33 + 98 + 60 + + + + helmet + Unspecified + 0 + 0 + + 147 + 29 + 171 + 48 + + + + helmet + Unspecified + 0 + 0 + + 131 + 17 + 149 + 29 + + + + helmet + Unspecified + 0 + 0 + + 65 + 24 + 79 + 35 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 35 + 103 + 142 + + + + person with helmet + Unspecified + 0 + 0 + + 146 + 27 + 204 + 171 + + + + person with helmet + Unspecified + 0 + 0 + + 246 + 7 + 263 + 62 + + + + helmet + Unspecified + 0 + 0 + + 252 + 8 + 263 + 14 + + + diff --git a/train_annot_folder/worker (721).xml b/train_annot_folder/worker (721).xml new file mode 100644 index 000000000..6a2532d7a --- /dev/null +++ b/train_annot_folder/worker (721).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (721).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (721).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 160 + 11 + 194 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 151 + 10 + 210 + 165 + + + diff --git a/train_annot_folder/worker (722).xml b/train_annot_folder/worker (722).xml new file mode 100644 index 000000000..b31ec96dd --- /dev/null +++ b/train_annot_folder/worker (722).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (722).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (722).jpg + + Unknown + + + 190 + 265 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 36 + 13 + 143 + 265 + + + + helmet + Unspecified + 0 + 0 + + 69 + 14 + 119 + 50 + + + diff --git a/train_annot_folder/worker (723).xml b/train_annot_folder/worker (723).xml new file mode 100644 index 000000000..668617fc1 --- /dev/null +++ b/train_annot_folder/worker (723).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (723).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (723).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 171 + 12 + 228 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 12 + 266 + 182 + + + diff --git a/train_annot_folder/worker (724).xml b/train_annot_folder/worker (724).xml new file mode 100644 index 000000000..5c234f18c --- /dev/null +++ b/train_annot_folder/worker (724).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (724).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (724).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 50 + 46 + 73 + 71 + + + + helmet + Unspecified + 0 + 0 + + 181 + 44 + 208 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 47 + 73 + 125 + + + + person with helmet + Unspecified + 0 + 0 + + 180 + 45 + 248 + 120 + + + diff --git a/train_annot_folder/worker (725).xml b/train_annot_folder/worker (725).xml new file mode 100644 index 000000000..712c51c48 --- /dev/null +++ b/train_annot_folder/worker (725).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (725).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (725).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 195 + 34 + 226 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 191 + 34 + 237 + 105 + + + diff --git a/train_annot_folder/worker (726).xml b/train_annot_folder/worker (726).xml new file mode 100644 index 000000000..dfae8eecf --- /dev/null +++ b/train_annot_folder/worker (726).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (726).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (726).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 96 + 26 + 133 + 59 + + + + person with helmet + Unspecified + 0 + 0 + + 77 + 25 + 155 + 119 + + + + person with helmet + Unspecified + 0 + 0 + + 158 + 120 + 203 + 170 + + + + helmet + Unspecified + 0 + 0 + + 159 + 118 + 186 + 146 + + + diff --git a/train_annot_folder/worker (727).xml b/train_annot_folder/worker (727).xml new file mode 100644 index 000000000..40ce13321 --- /dev/null +++ b/train_annot_folder/worker (727).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (727).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (727).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 62 + 22 + 99 + 59 + + + + helmet + Unspecified + 0 + 0 + + 135 + 10 + 174 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 11 + 189 + 100 + + + + person with helmet + Unspecified + 0 + 0 + + 51 + 23 + 114 + 116 + + + diff --git a/train_annot_folder/worker (728).xml b/train_annot_folder/worker (728).xml new file mode 100644 index 000000000..432bf36db --- /dev/null +++ b/train_annot_folder/worker (728).xml @@ -0,0 +1,146 @@ + + all_images_folder + worker (728).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (728).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 39 + 86 + 72 + + + + helmet + Unspecified + 0 + 0 + + 159 + 49 + 215 + 79 + + + + person with helmet + Unspecified + 1 + 0 + + 31 + 40 + 90 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 161 + 50 + 228 + 183 + + + + person without helmet + Unspecified + 0 + 0 + + 86 + 6 + 148 + 180 + + + + person without helmet + Unspecified + 1 + 0 + + 28 + 1 + 60 + 34 + + + + person without helmet + Unspecified + 1 + 0 + + 1 + 1 + 32 + 183 + + + + person without helmet + Unspecified + 0 + 0 + + 226 + 20 + 254 + 61 + + + + person without helmet + Unspecified + 0 + 0 + + 193 + 21 + 224 + 50 + + + + person without helmet + Unspecified + 0 + 0 + + 168 + 4 + 194 + 47 + + + + person without helmet + Unspecified + 1 + 0 + + 149 + 1 + 170 + 49 + + + diff --git a/train_annot_folder/worker (729).xml b/train_annot_folder/worker (729).xml new file mode 100644 index 000000000..58f3bf09b --- /dev/null +++ b/train_annot_folder/worker (729).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (729).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (729).jpg + + Unknown + + + 302 + 167 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 7 + 165 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 91 + 6 + 192 + 130 + + + diff --git a/train_annot_folder/worker (73).xml b/train_annot_folder/worker (73).xml new file mode 100644 index 000000000..a7113240f --- /dev/null +++ b/train_annot_folder/worker (73).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (73).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (73).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 23 + 129 + 45 + + + + helmet + Unspecified + 0 + 0 + + 147 + 2 + 193 + 35 + + + + helmet + Unspecified + 0 + 0 + + 126 + 21 + 157 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 2 + 231 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 126 + 22 + 173 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 91 + 22 + 134 + 81 + + + diff --git a/train_annot_folder/worker (730).xml b/train_annot_folder/worker (730).xml new file mode 100644 index 000000000..d61fc0da3 --- /dev/null +++ b/train_annot_folder/worker (730).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (730).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (730).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 102 + 19 + 169 + 194 + + + + helmet + Unspecified + 0 + 0 + + 111 + 19 + 158 + 51 + + + diff --git a/train_annot_folder/worker (731).xml b/train_annot_folder/worker (731).xml new file mode 100644 index 000000000..bb52a06d9 --- /dev/null +++ b/train_annot_folder/worker (731).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (731).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (731).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 87 + 13 + 135 + 45 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 11 + 168 + 215 + + + diff --git a/train_annot_folder/worker (732).xml b/train_annot_folder/worker (732).xml new file mode 100644 index 000000000..9cd30ee61 --- /dev/null +++ b/train_annot_folder/worker (732).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (732).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (732).jpg + + Unknown + + + 233 + 216 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 56 + 6 + 187 + 87 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 7 + 230 + 210 + + + diff --git a/train_annot_folder/worker (733).xml b/train_annot_folder/worker (733).xml new file mode 100644 index 000000000..411df644f --- /dev/null +++ b/train_annot_folder/worker (733).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (733).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (733).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 8 + 1 + 166 + 74 + + + + helmet + Unspecified + 1 + 0 + + 167 + 2 + 276 + 68 + + + + person with helmet + Unspecified + 1 + 0 + + 13 + 1 + 195 + 180 + + + + person with helmet + Unspecified + 1 + 0 + + 177 + 3 + 276 + 162 + + + diff --git a/train_annot_folder/worker (734).xml b/train_annot_folder/worker (734).xml new file mode 100644 index 000000000..79e138e7b --- /dev/null +++ b/train_annot_folder/worker (734).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (734).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (734).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 37 + 206 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 116 + 34 + 256 + 165 + + + diff --git a/train_annot_folder/worker (735).xml b/train_annot_folder/worker (735).xml new file mode 100644 index 000000000..b82dfaac4 --- /dev/null +++ b/train_annot_folder/worker (735).xml @@ -0,0 +1,182 @@ + + all_images_folder + worker (735).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (735).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 31 + 46 + 52 + 60 + + + + helmet + Unspecified + 0 + 0 + + 50 + 41 + 72 + 57 + + + + helmet + Unspecified + 0 + 0 + + 76 + 35 + 97 + 48 + + + + helmet + Unspecified + 0 + 0 + + 119 + 31 + 141 + 45 + + + + helmet + Unspecified + 0 + 0 + + 182 + 25 + 206 + 39 + + + + helmet + Unspecified + 0 + 0 + + 244 + 15 + 270 + 33 + + + + person without helmet + Unspecified + 0 + 0 + + 222 + 28 + 242 + 133 + + + + person with helmet + Unspecified + 0 + 0 + + 240 + 14 + 286 + 125 + + + + person with helmet + Unspecified + 0 + 0 + + 182 + 25 + 224 + 142 + + + + person without helmet + Unspecified + 0 + 0 + + 146 + 33 + 184 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 31 + 146 + 155 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 34 + 111 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 52 + 38 + 79 + 110 + + + + person with helmet + Unspecified + 0 + 0 + + 14 + 45 + 65 + 163 + + + diff --git a/train_annot_folder/worker (736).xml b/train_annot_folder/worker (736).xml new file mode 100644 index 000000000..d1ebadab6 --- /dev/null +++ b/train_annot_folder/worker (736).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (736).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (736).jpg + + Unknown + + + 201 + 250 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 33 + 8 + 180 + 242 + + + + helmet + Unspecified + 0 + 0 + + 75 + 7 + 153 + 63 + + + diff --git a/train_annot_folder/worker (737).xml b/train_annot_folder/worker (737).xml new file mode 100644 index 000000000..d1727eeec --- /dev/null +++ b/train_annot_folder/worker (737).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (737).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (737).jpg + + Unknown + + + 273 + 185 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 63 + 3 + 134 + 49 + + + + helmet + Unspecified + 0 + 0 + + 218 + 25 + 250 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 41 + 2 + 150 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 211 + 26 + 270 + 131 + + + diff --git a/train_annot_folder/worker (738).xml b/train_annot_folder/worker (738).xml new file mode 100644 index 000000000..e641e03b5 --- /dev/null +++ b/train_annot_folder/worker (738).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (738).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (738).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 160 + 25 + 236 + 68 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 24 + 271 + 178 + + + diff --git a/train_annot_folder/worker (739).xml b/train_annot_folder/worker (739).xml new file mode 100644 index 000000000..b7431919c --- /dev/null +++ b/train_annot_folder/worker (739).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (739).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (739).jpg + + Unknown + + + 276 + 182 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 220 + 43 + 239 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 208 + 43 + 252 + 157 + + + diff --git a/train_annot_folder/worker (74).xml b/train_annot_folder/worker (74).xml new file mode 100644 index 000000000..c3b6f27f4 --- /dev/null +++ b/train_annot_folder/worker (74).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (74).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (74).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 76 + 5 + 110 + 30 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 5 + 132 + 271 + + + diff --git a/train_annot_folder/worker (740).xml b/train_annot_folder/worker (740).xml new file mode 100644 index 000000000..9c68d0eb7 --- /dev/null +++ b/train_annot_folder/worker (740).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (740).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (740).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 96 + 46 + 179 + 106 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 46 + 219 + 180 + + + diff --git a/train_annot_folder/worker (741).xml b/train_annot_folder/worker (741).xml new file mode 100644 index 000000000..dbcf68343 --- /dev/null +++ b/train_annot_folder/worker (741).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (741).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (741).jpg + + Unknown + + + 226 + 223 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 23 + 131 + 89 + + + + helmet + Unspecified + 1 + 0 + + 200 + 26 + 226 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 23 + 133 + 217 + + + + person with helmet + Unspecified + 1 + 0 + + 122 + 10 + 226 + 161 + + + diff --git a/train_annot_folder/worker (742).xml b/train_annot_folder/worker (742).xml new file mode 100644 index 000000000..67fd85122 --- /dev/null +++ b/train_annot_folder/worker (742).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (742).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (742).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 136 + 36 + 168 + 62 + + + + helmet + Unspecified + 0 + 0 + + 48 + 16 + 133 + 75 + + + + person with helmet + Unspecified + 1 + 0 + + 42 + 18 + 131 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 128 + 35 + 187 + 181 + + + diff --git a/train_annot_folder/worker (744).xml b/train_annot_folder/worker (744).xml new file mode 100644 index 000000000..6ce4e1031 --- /dev/null +++ b/train_annot_folder/worker (744).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (744).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (744).jpg + + Unknown + + + 192 + 262 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 61 + 1 + 121 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 50 + 2 + 152 + 258 + + + diff --git a/train_annot_folder/worker (745).xml b/train_annot_folder/worker (745).xml new file mode 100644 index 000000000..8a3fce9ec --- /dev/null +++ b/train_annot_folder/worker (745).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (745).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (745).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 37 + 4 + 167 + 99 + + + + helmet + Unspecified + 0 + 0 + + 156 + 16 + 252 + 132 + + + + person with helmet + Unspecified + 1 + 0 + + 25 + 5 + 161 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 158 + 16 + 271 + 183 + + + diff --git a/train_annot_folder/worker (746).xml b/train_annot_folder/worker (746).xml new file mode 100644 index 000000000..6664656eb --- /dev/null +++ b/train_annot_folder/worker (746).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (746).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (746).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 109 + 1 + 212 + 68 + + + + person with helmet + Unspecified + 1 + 0 + + 113 + 1 + 277 + 170 + + + diff --git a/train_annot_folder/worker (747).xml b/train_annot_folder/worker (747).xml new file mode 100644 index 000000000..a716b3d85 --- /dev/null +++ b/train_annot_folder/worker (747).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (747).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (747).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 123 + 1 + 275 + 182 + + + diff --git a/train_annot_folder/worker (748).xml b/train_annot_folder/worker (748).xml new file mode 100644 index 000000000..ad7851429 --- /dev/null +++ b/train_annot_folder/worker (748).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (748).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (748).jpg + + Unknown + + + 135 + 180 + 1 + + 0 + + helmet + Unspecified + 1 + 0 + + 3 + 1 + 113 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 3 + 118 + 179 + + + diff --git a/train_annot_folder/worker (749).xml b/train_annot_folder/worker (749).xml new file mode 100644 index 000000000..f5d37a943 --- /dev/null +++ b/train_annot_folder/worker (749).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (749).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (749).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 19 + 10 + 55 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 16 + 11 + 55 + 59 + + + diff --git a/train_annot_folder/worker (75).xml b/train_annot_folder/worker (75).xml new file mode 100644 index 000000000..92b5d8df0 --- /dev/null +++ b/train_annot_folder/worker (75).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (75).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (75).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 128 + 33 + 170 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 103 + 32 + 190 + 180 + + + diff --git a/train_annot_folder/worker (750).xml b/train_annot_folder/worker (750).xml new file mode 100644 index 000000000..decdbff62 --- /dev/null +++ b/train_annot_folder/worker (750).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (750).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (750).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 72 + 4 + 119 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 3 + 142 + 182 + + + diff --git a/train_annot_folder/worker (751).xml b/train_annot_folder/worker (751).xml new file mode 100644 index 000000000..ecf6e97e3 --- /dev/null +++ b/train_annot_folder/worker (751).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (751).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (751).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 126 + 7 + 171 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 115 + 7 + 181 + 182 + + + diff --git a/train_annot_folder/worker (752).xml b/train_annot_folder/worker (752).xml new file mode 100644 index 000000000..5c346972e --- /dev/null +++ b/train_annot_folder/worker (752).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (752).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (752).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 21 + 15 + 42 + 29 + + + + helmet + Unspecified + 0 + 0 + + 77 + 18 + 99 + 34 + + + + helmet + Unspecified + 0 + 0 + + 141 + 20 + 161 + 31 + + + + helmet + Unspecified + 0 + 0 + + 189 + 9 + 210 + 25 + + + + helmet + Unspecified + 0 + 0 + + 232 + 17 + 256 + 32 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 16 + 56 + 180 + + + + person with helmet + Unspecified + 0 + 0 + + 62 + 17 + 112 + 175 + + + + person with helmet + Unspecified + 0 + 0 + + 140 + 19 + 174 + 156 + + + + person with helmet + Unspecified + 1 + 0 + + 178 + 6 + 225 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 226 + 15 + 268 + 174 + + + diff --git a/train_annot_folder/worker (753).xml b/train_annot_folder/worker (753).xml new file mode 100644 index 000000000..6fc8ad006 --- /dev/null +++ b/train_annot_folder/worker (753).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (753).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (753).jpg + + Unknown + + + 275 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 26 + 12 + 58 + 38 + + + + helmet + Unspecified + 0 + 0 + + 81 + 15 + 104 + 29 + + + + helmet + Unspecified + 1 + 0 + + 115 + 1 + 164 + 34 + + + + helmet + Unspecified + 0 + 0 + + 171 + 15 + 194 + 30 + + + + helmet + Unspecified + 0 + 0 + + 222 + 11 + 253 + 34 + + + + person with helmet + Unspecified + 0 + 0 + + 19 + 12 + 78 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 72 + 13 + 114 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 2 + 184 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 11 + 203 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 205 + 7 + 274 + 168 + + + diff --git a/train_annot_folder/worker (754).xml b/train_annot_folder/worker (754).xml new file mode 100644 index 000000000..d22754595 --- /dev/null +++ b/train_annot_folder/worker (754).xml @@ -0,0 +1,122 @@ + + all_images_folder + worker (754).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (754).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 23 + 54 + 39 + + + + helmet + Unspecified + 0 + 0 + + 70 + 21 + 94 + 35 + + + + helmet + Unspecified + 0 + 0 + + 122 + 20 + 143 + 36 + + + + helmet + Unspecified + 0 + 0 + + 239 + 20 + 263 + 35 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 22 + 63 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 64 + 20 + 115 + 157 + + + + person with helmet + Unspecified + 0 + 0 + + 116 + 20 + 155 + 153 + + + + person without helmet + Unspecified + 0 + 0 + + 157 + 5 + 232 + 161 + + + + person with helmet + Unspecified + 0 + 0 + + 230 + 14 + 278 + 159 + + + diff --git a/train_annot_folder/worker (755).xml b/train_annot_folder/worker (755).xml new file mode 100644 index 000000000..105049556 --- /dev/null +++ b/train_annot_folder/worker (755).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (755).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (755).jpg + + Unknown + + + 229 + 220 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 39 + 24 + 110 + 209 + + + + person with helmet + Unspecified + 0 + 0 + + 101 + 9 + 207 + 208 + + + + helmet + Unspecified + 0 + 0 + + 40 + 26 + 99 + 67 + + + + helmet + Unspecified + 0 + 0 + + 116 + 13 + 174 + 50 + + + diff --git a/train_annot_folder/worker (756).xml b/train_annot_folder/worker (756).xml new file mode 100644 index 000000000..d85a22526 --- /dev/null +++ b/train_annot_folder/worker (756).xml @@ -0,0 +1,194 @@ + + all_images_folder + worker (756).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (756).jpg + + Unknown + + + 251 + 201 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 99 + 1 + 161 + 45 + + + + helmet + Unspecified + 0 + 0 + + 30 + 18 + 47 + 31 + + + + helmet + Unspecified + 0 + 0 + + 50 + 26 + 63 + 36 + + + + helmet + Unspecified + 0 + 0 + + 85 + 22 + 106 + 33 + + + + helmet + Unspecified + 0 + 0 + + 192 + 25 + 208 + 38 + + + + helmet + Unspecified + 0 + 0 + + 219 + 28 + 236 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 213 + 28 + 243 + 139 + + + + person with helmet + Unspecified + 0 + 0 + + 189 + 26 + 214 + 136 + + + + person without helmet + Unspecified + 0 + 0 + + 167 + 34 + 192 + 135 + + + + person with helmet + Unspecified + 0 + 0 + + 88 + 3 + 180 + 187 + + + + person without helmet + Unspecified + 0 + 0 + + 66 + 33 + 89 + 82 + + + + person with helmet + Unspecified + 0 + 0 + + 22 + 19 + 56 + 142 + + + + person with helmet + Unspecified + 0 + 0 + + 50 + 25 + 68 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 87 + 22 + 109 + 70 + + + + person with helmet + Unspecified + 0 + 0 + + 154 + 21 + 171 + 87 + + + diff --git a/train_annot_folder/worker (757).xml b/train_annot_folder/worker (757).xml new file mode 100644 index 000000000..90e0a5919 --- /dev/null +++ b/train_annot_folder/worker (757).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (757).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (757).jpg + + Unknown + + + 245 + 206 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 105 + 1 + 144 + 30 + + + + helmet + Unspecified + 0 + 0 + + 20 + 35 + 37 + 46 + + + + helmet + Unspecified + 0 + 0 + + 39 + 43 + 54 + 54 + + + + helmet + Unspecified + 0 + 0 + + 79 + 37 + 100 + 53 + + + + helmet + Unspecified + 0 + 0 + + 190 + 43 + 208 + 56 + + + + helmet + Unspecified + 0 + 0 + + 216 + 45 + 235 + 59 + + + + person without helmet + Unspecified + 0 + 0 + + 148 + 37 + 172 + 63 + + + + person without helmet + Unspecified + 0 + 0 + + 60 + 49 + 74 + 64 + + + + person without helmet + Unspecified + 0 + 0 + + 168 + 50 + 186 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 210 + 44 + 242 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 190 + 45 + 219 + 153 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 32 + 45 + 164 + + + diff --git a/train_annot_folder/worker (758).xml b/train_annot_folder/worker (758).xml new file mode 100644 index 000000000..48dec0896 --- /dev/null +++ b/train_annot_folder/worker (758).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (758).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (758).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 13 + 14 + 124 + 86 + + + + helmet + Unspecified + 1 + 0 + + 120 + 1 + 187 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 2 + 221 + 156 + + + + person with helmet + Unspecified + 0 + 0 + + 10 + 15 + 130 + 166 + + + diff --git a/train_annot_folder/worker (759).xml b/train_annot_folder/worker (759).xml new file mode 100644 index 000000000..8bd3b0d1c --- /dev/null +++ b/train_annot_folder/worker (759).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (759).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (759).jpg + + Unknown + + + 275 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 42 + 40 + 83 + 68 + + + + helmet + Unspecified + 0 + 0 + + 108 + 22 + 150 + 52 + + + + helmet + Unspecified + 0 + 0 + + 183 + 51 + 222 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 41 + 90 + 171 + + + + person with helmet + Unspecified + 1 + 0 + + 94 + 22 + 167 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 181 + 52 + 242 + 179 + + + diff --git a/train_annot_folder/worker (76).xml b/train_annot_folder/worker (76).xml new file mode 100644 index 000000000..32eafdb4c --- /dev/null +++ b/train_annot_folder/worker (76).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (76).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (76).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 168 + 15 + 213 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 14 + 230 + 192 + + + diff --git a/train_annot_folder/worker (760).xml b/train_annot_folder/worker (760).xml new file mode 100644 index 000000000..f6313d9d2 --- /dev/null +++ b/train_annot_folder/worker (760).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (760).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (760).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 38 + 20 + 65 + 117 + + + + person with helmet + Unspecified + 0 + 0 + + 63 + 18 + 98 + 86 + + + + helmet + Unspecified + 0 + 0 + + 64 + 19 + 81 + 32 + + + + helmet + Unspecified + 0 + 0 + + 120 + 13 + 138 + 25 + + + + helmet + Unspecified + 0 + 0 + + 209 + 8 + 227 + 22 + + + + helmet + Unspecified + 0 + 0 + + 232 + 9 + 253 + 23 + + + + person without helmet + Unspecified + 0 + 0 + + 172 + 10 + 202 + 53 + + + + person without helmet + Unspecified + 0 + 0 + + 146 + 13 + 177 + 63 + + + + person without helmet + Unspecified + 0 + 0 + + 95 + 18 + 121 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 14 + 150 + 62 + + + + person with helmet + Unspecified + 0 + 0 + + 203 + 6 + 229 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 231 + 9 + 264 + 111 + + + diff --git a/train_annot_folder/worker (761).xml b/train_annot_folder/worker (761).xml new file mode 100644 index 000000000..95add7512 --- /dev/null +++ b/train_annot_folder/worker (761).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (761).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (761).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 168 + 11 + 234 + 160 + + + + helmet + Unspecified + 0 + 0 + + 248 + 11 + 267 + 26 + + + + person with helmet + Unspecified + 0 + 0 + + 238 + 11 + 282 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 116 + 15 + 158 + 152 + + + + person with helmet + Unspecified + 0 + 0 + + 68 + 17 + 113 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 11 + 8 + 64 + 156 + + + + helmet + Unspecified + 0 + 0 + + 26 + 9 + 49 + 25 + + + + helmet + Unspecified + 0 + 0 + + 73 + 18 + 93 + 30 + + + + helmet + Unspecified + 0 + 0 + + 122 + 15 + 142 + 28 + + + + helmet + Unspecified + 0 + 0 + + 181 + 14 + 211 + 37 + + + diff --git a/train_annot_folder/worker (762).xml b/train_annot_folder/worker (762).xml new file mode 100644 index 000000000..8887c5a4a --- /dev/null +++ b/train_annot_folder/worker (762).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (762).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (762).jpg + + Unknown + + + 203 + 248 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 41 + 10 + 69 + 31 + + + + helmet + Unspecified + 0 + 0 + + 86 + 15 + 114 + 37 + + + + helmet + Unspecified + 0 + 0 + + 128 + 16 + 154 + 33 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 9 + 80 + 235 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 10 + 127 + 217 + + + + person with helmet + Unspecified + 0 + 0 + + 121 + 14 + 170 + 208 + + + diff --git a/train_annot_folder/worker (763).xml b/train_annot_folder/worker (763).xml new file mode 100644 index 000000000..c6b92769d --- /dev/null +++ b/train_annot_folder/worker (763).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (763).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (763).jpg + + Unknown + + + 281 + 179 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 27 + 22 + 95 + 79 + + + + helmet + Unspecified + 0 + 0 + + 194 + 9 + 258 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 22 + 130 + 131 + + + + person with helmet + Unspecified + 1 + 0 + + 195 + 8 + 281 + 144 + + + diff --git a/train_annot_folder/worker (764).xml b/train_annot_folder/worker (764).xml new file mode 100644 index 000000000..8206f75bb --- /dev/null +++ b/train_annot_folder/worker (764).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (764).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (764).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 193 + 13 + 223 + 35 + + + + helmet + Unspecified + 0 + 0 + + 224 + 15 + 256 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 186 + 14 + 228 + 154 + + + + person with helmet + Unspecified + 0 + 0 + + 222 + 11 + 282 + 164 + + + diff --git a/train_annot_folder/worker (766).xml b/train_annot_folder/worker (766).xml new file mode 100644 index 000000000..f36b5c22e --- /dev/null +++ b/train_annot_folder/worker (766).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (766).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (766).jpg + + Unknown + + + 267 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 7 + 202 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 134 + 7 + 244 + 174 + + + + person without helmet + Unspecified + 0 + 0 + + 28 + 13 + 119 + 171 + + + diff --git a/train_annot_folder/worker (767).xml b/train_annot_folder/worker (767).xml new file mode 100644 index 000000000..5a92447d2 --- /dev/null +++ b/train_annot_folder/worker (767).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (767).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (767).jpg + + Unknown + + + 257 + 196 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 45 + 14 + 68 + 29 + + + + helmet + Unspecified + 0 + 0 + + 82 + 17 + 110 + 35 + + + + helmet + Unspecified + 0 + 0 + + 131 + 19 + 155 + 37 + + + + helmet + Unspecified + 0 + 0 + + 158 + 6 + 183 + 25 + + + + helmet + Unspecified + 0 + 0 + + 210 + 18 + 234 + 33 + + + + person with helmet + Unspecified + 0 + 0 + + 30 + 14 + 78 + 192 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 17 + 129 + 188 + + + + person with helmet + Unspecified + 0 + 0 + + 121 + 19 + 158 + 187 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 4 + 201 + 191 + + + + person with helmet + Unspecified + 0 + 0 + + 202 + 18 + 243 + 189 + + + diff --git a/train_annot_folder/worker (768).xml b/train_annot_folder/worker (768).xml new file mode 100644 index 000000000..d8726c19f --- /dev/null +++ b/train_annot_folder/worker (768).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (768).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (768).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 17 + 140 + 64 + + + + helmet + Unspecified + 0 + 0 + + 173 + 6 + 233 + 49 + + + + person with helmet + Unspecified + 0 + 0 + + 57 + 14 + 153 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 169 + 5 + 242 + 88 + + + diff --git a/train_annot_folder/worker (769).xml b/train_annot_folder/worker (769).xml new file mode 100644 index 000000000..22a8e1429 --- /dev/null +++ b/train_annot_folder/worker (769).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (769).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (769).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 2 + 213 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 150 + 3 + 257 + 165 + + + diff --git a/train_annot_folder/worker (77).xml b/train_annot_folder/worker (77).xml new file mode 100644 index 000000000..7138e7f7f --- /dev/null +++ b/train_annot_folder/worker (77).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (77).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (77).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 203 + 31 + 248 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 190 + 32 + 249 + 176 + + + diff --git a/train_annot_folder/worker (770).xml b/train_annot_folder/worker (770).xml new file mode 100644 index 000000000..b345013c4 --- /dev/null +++ b/train_annot_folder/worker (770).xml @@ -0,0 +1,182 @@ + + all_images_folder + worker (770).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (770).jpg + + Unknown + + + 298 + 169 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 35 + 10 + 71 + 35 + + + + helmet + Unspecified + 0 + 0 + + 77 + 20 + 108 + 37 + + + + helmet + Unspecified + 0 + 0 + + 110 + 31 + 126 + 42 + + + + helmet + Unspecified + 0 + 0 + + 139 + 31 + 157 + 44 + + + + helmet + Unspecified + 0 + 0 + + 162 + 27 + 187 + 42 + + + + helmet + Unspecified + 0 + 0 + + 192 + 20 + 223 + 42 + + + + helmet + Unspecified + 0 + 0 + + 230 + 11 + 272 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 6 + 89 + 149 + + + + person with helmet + Unspecified + 0 + 0 + + 78 + 18 + 112 + 86 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 31 + 135 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 136 + 31 + 160 + 75 + + + + person with helmet + Unspecified + 0 + 0 + + 160 + 26 + 192 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 194 + 21 + 231 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 230 + 11 + 287 + 107 + + + diff --git a/train_annot_folder/worker (771).xml b/train_annot_folder/worker (771).xml new file mode 100644 index 000000000..8012100c5 --- /dev/null +++ b/train_annot_folder/worker (771).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (771).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (771).jpg + + Unknown + + + 207 + 243 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 11 + 11 + 43 + 124 + + + + person with helmet + Unspecified + 0 + 0 + + 45 + 7 + 84 + 121 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 13 + 102 + 102 + + + + person with helmet + Unspecified + 0 + 0 + + 126 + 13 + 158 + 124 + + + + person with helmet + Unspecified + 0 + 0 + + 162 + 10 + 197 + 128 + + + + helmet + Unspecified + 0 + 0 + + 170 + 11 + 185 + 21 + + + + helmet + Unspecified + 0 + 0 + + 130 + 13 + 144 + 22 + + + + helmet + Unspecified + 0 + 0 + + 86 + 15 + 101 + 23 + + + + helmet + Unspecified + 0 + 0 + + 52 + 9 + 66 + 18 + + + + helmet + Unspecified + 0 + 0 + + 18 + 13 + 37 + 23 + + + diff --git a/train_annot_folder/worker (772).xml b/train_annot_folder/worker (772).xml new file mode 100644 index 000000000..d5141aa30 --- /dev/null +++ b/train_annot_folder/worker (772).xml @@ -0,0 +1,146 @@ + + all_images_folder + worker (772).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (772).jpg + + Unknown + + + 252 + 200 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 9 + 157 + 44 + + + + helmet + Unspecified + 0 + 0 + + 26 + 14 + 43 + 23 + + + + helmet + Unspecified + 0 + 0 + + 44 + 19 + 59 + 30 + + + + helmet + Unspecified + 0 + 0 + + 83 + 15 + 101 + 28 + + + + helmet + Unspecified + 0 + 0 + + 188 + 21 + 205 + 32 + + + + helmet + Unspecified + 0 + 0 + + 215 + 23 + 230 + 33 + + + + person without helmet + Unspecified + 0 + 0 + + 165 + 27 + 189 + 104 + + + + person without helmet + Unspecified + 0 + 0 + + 61 + 29 + 85 + 108 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 13 + 52 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 17 + 66 + 87 + + + + person with helmet + Unspecified + 0 + 0 + + 94 + 9 + 186 + 175 + + + diff --git a/train_annot_folder/worker (773).xml b/train_annot_folder/worker (773).xml new file mode 100644 index 000000000..9f924a088 --- /dev/null +++ b/train_annot_folder/worker (773).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (773).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (773).jpg + + Unknown + + + 246 + 205 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 41 + 10 + 68 + 30 + + + + helmet + Unspecified + 0 + 0 + + 79 + 16 + 105 + 34 + + + + helmet + Unspecified + 0 + 0 + + 126 + 17 + 150 + 37 + + + + helmet + Unspecified + 0 + 0 + + 152 + 6 + 178 + 23 + + + + helmet + Unspecified + 0 + 0 + + 201 + 16 + 224 + 32 + + + + person with helmet + Unspecified + 0 + 0 + + 30 + 14 + 73 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 78 + 16 + 123 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 116 + 16 + 152 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 150 + 2 + 193 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 195 + 11 + 235 + 184 + + + diff --git a/train_annot_folder/worker (774).xml b/train_annot_folder/worker (774).xml new file mode 100644 index 000000000..c5a012519 --- /dev/null +++ b/train_annot_folder/worker (774).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (774).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (774).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 16 + 15 + 78 + 54 + + + + helmet + Unspecified + 0 + 0 + + 188 + 32 + 254 + 89 + + + + helmet + Unspecified + 0 + 0 + + 10 + 19 + 87 + 158 + + + + helmet + Unspecified + 0 + 0 + + 170 + 32 + 266 + 136 + + + diff --git a/train_annot_folder/worker (775).xml b/train_annot_folder/worker (775).xml new file mode 100644 index 000000000..2c87239e1 --- /dev/null +++ b/train_annot_folder/worker (775).xml @@ -0,0 +1,242 @@ + + all_images_folder + worker (775).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (775).jpg + + Unknown + + + 217 + 232 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 110 + 44 + 123 + + + + helmet + Unspecified + 0 + 0 + + 80 + 112 + 96 + 124 + + + + helmet + Unspecified + 0 + 0 + + 176 + 110 + 192 + 120 + + + + person without helmet + Unspecified + 0 + 0 + + 122 + 111 + 159 + 214 + + + + helmet + Unspecified + 0 + 0 + + 53 + 2 + 67 + 11 + + + + helmet + Unspecified + 0 + 0 + + 70 + 12 + 83 + 21 + + + + helmet + Unspecified + 0 + 0 + + 89 + 2 + 102 + 11 + + + + helmet + Unspecified + 0 + 0 + + 113 + 8 + 127 + 17 + + + + helmet + Unspecified + 0 + 0 + + 137 + 3 + 152 + 12 + + + + helmet + Unspecified + 0 + 0 + + 161 + 6 + 176 + 17 + + + + person with helmet + Unspecified + 0 + 0 + + 43 + 2 + 69 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 12 + 86 + 104 + + + + person with helmet + Unspecified + 0 + 0 + + 85 + 2 + 110 + 102 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 5 + 133 + 105 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 4 + 157 + 103 + + + + person with helmet + Unspecified + 0 + 0 + + 156 + 4 + 184 + 105 + + + + person with helmet + Unspecified + 0 + 0 + + 17 + 110 + 57 + 216 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 110 + 111 + 213 + + + + person with helmet + Unspecified + 0 + 0 + + 167 + 112 + 210 + 213 + + + diff --git a/train_annot_folder/worker (776).xml b/train_annot_folder/worker (776).xml new file mode 100644 index 000000000..7679e9d82 --- /dev/null +++ b/train_annot_folder/worker (776).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (776).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (776).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 14 + 15 + 93 + 67 + + + + helmet + Unspecified + 0 + 0 + + 88 + 7 + 138 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 86 + 9 + 151 + 150 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 17 + 90 + 165 + + + diff --git a/train_annot_folder/worker (777).xml b/train_annot_folder/worker (777).xml new file mode 100644 index 000000000..b95618a18 --- /dev/null +++ b/train_annot_folder/worker (777).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (777).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (777).jpg + + Unknown + + + 177 + 285 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 66 + 4 + 125 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 59 + 5 + 167 + 202 + + + diff --git a/train_annot_folder/worker (778).xml b/train_annot_folder/worker (778).xml new file mode 100644 index 000000000..7f8ede524 --- /dev/null +++ b/train_annot_folder/worker (778).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (778).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (778).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 61 + 1 + 109 + 32 + + + + helmet + Unspecified + 0 + 0 + + 108 + 12 + 144 + 36 + + + + person with helmet + Unspecified + 1 + 0 + + 15 + 1 + 106 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 104 + 6 + 162 + 163 + + + diff --git a/train_annot_folder/worker (779).xml b/train_annot_folder/worker (779).xml new file mode 100644 index 000000000..26eec14db --- /dev/null +++ b/train_annot_folder/worker (779).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (779).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (779).jpg + + Unknown + + + 182 + 277 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 21 + 15 + 157 + 132 + + + + person with helmet + Unspecified + 1 + 0 + + 16 + 11 + 182 + 250 + + + diff --git a/train_annot_folder/worker (78).xml b/train_annot_folder/worker (78).xml new file mode 100644 index 000000000..a8580f138 --- /dev/null +++ b/train_annot_folder/worker (78).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (78).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (78).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 10 + 209 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 101 + 11 + 230 + 174 + + + diff --git a/train_annot_folder/worker (780).xml b/train_annot_folder/worker (780).xml new file mode 100644 index 000000000..9fc32c52d --- /dev/null +++ b/train_annot_folder/worker (780).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (780).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (780).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 22 + 1 + 85 + 45 + + + + helmet + Unspecified + 1 + 0 + + 120 + 1 + 178 + 38 + + + + person with helmet + Unspecified + 1 + 0 + + 4 + 1 + 99 + 162 + + + + person with helmet + Unspecified + 1 + 0 + + 100 + 1 + 200 + 129 + + + diff --git a/train_annot_folder/worker (781).xml b/train_annot_folder/worker (781).xml new file mode 100644 index 000000000..b43c82da8 --- /dev/null +++ b/train_annot_folder/worker (781).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (781).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (781).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 91 + 10 + 166 + 133 + + + + person with helmet + Unspecified + 0 + 0 + + 163 + 25 + 234 + 176 + + + + helmet + Unspecified + 0 + 0 + + 122 + 11 + 166 + 42 + + + + helmet + Unspecified + 0 + 0 + + 179 + 23 + 218 + 52 + + + diff --git a/train_annot_folder/worker (782).xml b/train_annot_folder/worker (782).xml new file mode 100644 index 000000000..2c57eec4d --- /dev/null +++ b/train_annot_folder/worker (782).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (782).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (782).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 50 + 26 + 81 + 46 + + + + helmet + Unspecified + 0 + 0 + + 93 + 22 + 146 + 55 + + + + helmet + Unspecified + 0 + 0 + + 178 + 7 + 220 + 41 + + + + person with helmet + Unspecified + 0 + 0 + + 49 + 26 + 91 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 16 + 148 + 133 + + + + person with helmet + Unspecified + 0 + 0 + + 170 + 9 + 247 + 125 + + + diff --git a/train_annot_folder/worker (783).xml b/train_annot_folder/worker (783).xml new file mode 100644 index 000000000..1ef25d46f --- /dev/null +++ b/train_annot_folder/worker (783).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (783).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (783).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 107 + 10 + 155 + 43 + + + + helmet + Unspecified + 0 + 0 + + 169 + 10 + 224 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 10 + 179 + 175 + + + + person with helmet + Unspecified + 0 + 0 + + 172 + 9 + 265 + 182 + + + diff --git a/train_annot_folder/worker (784).xml b/train_annot_folder/worker (784).xml new file mode 100644 index 000000000..d6de50a20 --- /dev/null +++ b/train_annot_folder/worker (784).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (784).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (784).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 48 + 196 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 147 + 49 + 209 + 160 + + + diff --git a/train_annot_folder/worker (785).xml b/train_annot_folder/worker (785).xml new file mode 100644 index 000000000..83e9441ab --- /dev/null +++ b/train_annot_folder/worker (785).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (785).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (785).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 77 + 53 + 123 + 86 + + + + helmet + Unspecified + 0 + 0 + + 126 + 50 + 205 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 55 + 128 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 120 + 48 + 216 + 160 + + + diff --git a/train_annot_folder/worker (786).xml b/train_annot_folder/worker (786).xml new file mode 100644 index 000000000..760b5a336 --- /dev/null +++ b/train_annot_folder/worker (786).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (786).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (786).jpg + + Unknown + + + 291 + 173 + 3 + + 0 + + person with helmet + Unspecified + 1 + 0 + + 138 + 1 + 267 + 160 + + + + helmet + Unspecified + 1 + 0 + + 148 + 1 + 201 + 45 + + + diff --git a/train_annot_folder/worker (787).xml b/train_annot_folder/worker (787).xml new file mode 100644 index 000000000..65c72b231 --- /dev/null +++ b/train_annot_folder/worker (787).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (787).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (787).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 91 + 113 + 120 + 145 + + + + helmet + Unspecified + 0 + 0 + + 150 + 127 + 164 + 139 + + + + helmet + Unspecified + 0 + 0 + + 167 + 93 + 218 + 138 + + + + person with helmet + Unspecified + 1 + 0 + + 78 + 114 + 127 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 126 + 174 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 168 + 93 + 243 + 180 + + + diff --git a/train_annot_folder/worker (788).xml b/train_annot_folder/worker (788).xml new file mode 100644 index 000000000..38a0f7351 --- /dev/null +++ b/train_annot_folder/worker (788).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (788).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (788).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 207 + 5 + 266 + 48 + + + + helmet + Unspecified + 0 + 0 + + 143 + 25 + 161 + 38 + + + + helmet + Unspecified + 0 + 0 + + 114 + 25 + 135 + 39 + + + + helmet + Unspecified + 0 + 0 + + 86 + 40 + 107 + 54 + + + + helmet + Unspecified + 0 + 0 + + 63 + 23 + 84 + 38 + + + + helmet + Unspecified + 0 + 0 + + 28 + 24 + 50 + 36 + + + + person with helmet + Unspecified + 1 + 0 + + 181 + 6 + 266 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 139 + 21 + 179 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 109 + 24 + 142 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 40 + 110 + 182 + + + + person with helmet + Unspecified + 0 + 0 + + 54 + 21 + 89 + 79 + + + + person with helmet + Unspecified + 0 + 0 + + 22 + 24 + 52 + 82 + + + diff --git a/train_annot_folder/worker (789).xml b/train_annot_folder/worker (789).xml new file mode 100644 index 000000000..7df4165e4 --- /dev/null +++ b/train_annot_folder/worker (789).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (789).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (789).jpg + + Unknown + + + 325 + 155 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 44 + 1 + 107 + 32 + + + + helmet + Unspecified + 0 + 0 + + 124 + 23 + 167 + 62 + + + + helmet + Unspecified + 0 + 0 + + 182 + 20 + 207 + 34 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 2 + 112 + 146 + + + + person with helmet + Unspecified + 0 + 0 + + 113 + 20 + 189 + 146 + + + + person with helmet + Unspecified + 0 + 0 + + 173 + 18 + 220 + 107 + + + diff --git a/train_annot_folder/worker (790).xml b/train_annot_folder/worker (790).xml new file mode 100644 index 000000000..9fa733886 --- /dev/null +++ b/train_annot_folder/worker (790).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (790).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (790).jpg + + Unknown + + + 322 + 156 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 50 + 2 + 111 + 42 + + + + helmet + Unspecified + 0 + 0 + + 108 + 50 + 147 + 79 + + + + helmet + Unspecified + 0 + 0 + + 148 + 40 + 192 + 74 + + + + helmet + Unspecified + 0 + 0 + + 199 + 9 + 257 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 31 + 4 + 115 + 148 + + + + person with helmet + Unspecified + 0 + 0 + + 102 + 49 + 147 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 32 + 210 + 134 + + + + person with helmet + Unspecified + 0 + 0 + + 198 + 11 + 296 + 145 + + + diff --git a/train_annot_folder/worker (791).xml b/train_annot_folder/worker (791).xml new file mode 100644 index 000000000..3e082df47 --- /dev/null +++ b/train_annot_folder/worker (791).xml @@ -0,0 +1,290 @@ + + all_images_folder + worker (791).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (791).jpg + + Unknown + + + 330 + 153 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 21 + 20 + 53 + 36 + + + + helmet + Unspecified + 0 + 0 + + 47 + 13 + 72 + 30 + + + + helmet + Unspecified + 0 + 0 + + 76 + 5 + 95 + 17 + + + + helmet + Unspecified + 0 + 0 + + 94 + 9 + 127 + 25 + + + + helmet + Unspecified + 0 + 0 + + 129 + 7 + 150 + 24 + + + + helmet + Unspecified + 0 + 0 + + 158 + 15 + 189 + 32 + + + + helmet + Unspecified + 1 + 0 + + 222 + 1 + 251 + 13 + + + + helmet + Unspecified + 0 + 0 + + 250 + 34 + 293 + 56 + + + + helmet + Unspecified + 0 + 0 + + 214 + 46 + 266 + 81 + + + + helmet + Unspecified + 0 + 0 + + 140 + 39 + 186 + 69 + + + + helmet + Unspecified + 0 + 0 + + 56 + 66 + 101 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 123 + 40 + 205 + 148 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 67 + 121 + 147 + + + + person with helmet + Unspecified + 1 + 0 + + 202 + 48 + 277 + 153 + + + + person with helmet + Unspecified + 0 + 0 + + 253 + 33 + 315 + 137 + + + + person with helmet + Unspecified + 0 + 0 + + 74 + 6 + 95 + 34 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 5 + 139 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 7 + 153 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 221 + 2 + 259 + 47 + + + + person with helmet + Unspecified + 0 + 0 + + 22 + 20 + 57 + 58 + + + + person without helmet + Unspecified + 0 + 0 + + 10 + 39 + 40 + 89 + + + + person without helmet + Unspecified + 0 + 0 + + 75 + 36 + 99 + 69 + + + + person without helmet + Unspecified + 0 + 0 + + 9 + 2 + 30 + 22 + + + diff --git a/train_annot_folder/worker (792).xml b/train_annot_folder/worker (792).xml new file mode 100644 index 000000000..a3f9c840f --- /dev/null +++ b/train_annot_folder/worker (792).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (792).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (792).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 118 + 15 + 170 + 53 + + + + person with helmet + Unspecified + 0 + 0 + + 104 + 15 + 199 + 166 + + + + person with helmet + Unspecified + 1 + 0 + + 2 + 1 + 96 + 165 + + + + helmet + Unspecified + 1 + 0 + + 8 + 1 + 85 + 24 + + + diff --git a/train_annot_folder/worker (793).xml b/train_annot_folder/worker (793).xml new file mode 100644 index 000000000..8c99baf00 --- /dev/null +++ b/train_annot_folder/worker (793).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (793).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (793).jpg + + Unknown + + + 257 + 196 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 34 + 57 + 58 + 71 + + + + helmet + Unspecified + 0 + 0 + + 91 + 53 + 118 + 78 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 57 + 64 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 76 + 54 + 127 + 179 + + + diff --git a/train_annot_folder/worker (794).xml b/train_annot_folder/worker (794).xml new file mode 100644 index 000000000..74be94eee --- /dev/null +++ b/train_annot_folder/worker (794).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (794).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (794).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 140 + 16 + 169 + 34 + + + + helmet + Unspecified + 0 + 0 + + 109 + 24 + 138 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 24 + 147 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 141 + 17 + 190 + 108 + + + diff --git a/train_annot_folder/worker (795).xml b/train_annot_folder/worker (795).xml new file mode 100644 index 000000000..33352e665 --- /dev/null +++ b/train_annot_folder/worker (795).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (795).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (795).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 42 + 5 + 107 + 47 + + + + helmet + Unspecified + 0 + 0 + + 113 + 21 + 164 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 4 + 116 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 23 + 175 + 131 + + + diff --git a/train_annot_folder/worker (796).xml b/train_annot_folder/worker (796).xml new file mode 100644 index 000000000..5dce3d4c7 --- /dev/null +++ b/train_annot_folder/worker (796).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (796).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (796).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 42 + 1 + 178 + 62 + + + + helmet + Unspecified + 0 + 0 + + 158 + 40 + 263 + 99 + + + + person with helmet + Unspecified + 1 + 0 + + 23 + 1 + 171 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 163 + 34 + 278 + 166 + + + diff --git a/train_annot_folder/worker (797).xml b/train_annot_folder/worker (797).xml new file mode 100644 index 000000000..389545310 --- /dev/null +++ b/train_annot_folder/worker (797).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (797).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (797).jpg + + Unknown + + + 180 + 280 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 9 + 55 + 56 + 88 + + + + helmet + Unspecified + 0 + 0 + + 67 + 17 + 116 + 50 + + + + helmet + Unspecified + 0 + 0 + + 105 + 60 + 158 + 95 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 55 + 62 + 170 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 17 + 114 + 104 + + + + person with helmet + Unspecified + 0 + 0 + + 109 + 61 + 161 + 139 + + + diff --git a/train_annot_folder/worker (798).xml b/train_annot_folder/worker (798).xml new file mode 100644 index 000000000..46dc087e8 --- /dev/null +++ b/train_annot_folder/worker (798).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (798).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (798).jpg + + Unknown + + + 248 + 203 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 56 + 13 + 117 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 15 + 167 + 179 + + + diff --git a/train_annot_folder/worker (799).xml b/train_annot_folder/worker (799).xml new file mode 100644 index 000000000..47f9df7c6 --- /dev/null +++ b/train_annot_folder/worker (799).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (799).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (799).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 26 + 47 + 58 + 66 + + + + helmet + Unspecified + 0 + 0 + + 66 + 27 + 103 + 54 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 48 + 77 + 179 + + + + person with helmet + Unspecified + 0 + 0 + + 64 + 28 + 137 + 172 + + + diff --git a/train_annot_folder/worker (8).xml b/train_annot_folder/worker (8).xml new file mode 100644 index 000000000..bd625dbfb --- /dev/null +++ b/train_annot_folder/worker (8).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (8).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (8).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 6 + 182 + 37 + + + + helmet + Unspecified + 1 + 0 + + 23 + 1 + 82 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 109 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 147 + 6 + 207 + 176 + + + diff --git a/train_annot_folder/worker (80).xml b/train_annot_folder/worker (80).xml new file mode 100644 index 000000000..5eb385e8b --- /dev/null +++ b/train_annot_folder/worker (80).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (80).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (80).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 48 + 14 + 96 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 21 + 14 + 122 + 176 + + + diff --git a/train_annot_folder/worker (800).xml b/train_annot_folder/worker (800).xml new file mode 100644 index 000000000..7fe4e3d96 --- /dev/null +++ b/train_annot_folder/worker (800).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (800).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (800).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 10 + 34 + 45 + 65 + + + + helmet + Unspecified + 0 + 0 + + 119 + 29 + 159 + 59 + + + + helmet + Unspecified + 0 + 0 + + 69 + 43 + 106 + 71 + + + + helmet + Unspecified + 0 + 0 + + 190 + 54 + 219 + 76 + + + + helmet + Unspecified + 0 + 0 + + 230 + 41 + 263 + 64 + + + + helmet + Unspecified + 0 + 0 + + 104 + 49 + 122 + 63 + + + + helmet + Unspecified + 0 + 0 + + 52 + 50 + 73 + 75 + + + + person with helmet + Unspecified + 0 + 0 + + 4 + 35 + 55 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 105 + 28 + 185 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 68 + 43 + 105 + 99 + + + + person with helmet + Unspecified + 0 + 0 + + 188 + 51 + 220 + 131 + + + + person with helmet + Unspecified + 0 + 0 + + 222 + 41 + 274 + 148 + + + diff --git a/train_annot_folder/worker (801).xml b/train_annot_folder/worker (801).xml new file mode 100644 index 000000000..ef7722c25 --- /dev/null +++ b/train_annot_folder/worker (801).xml @@ -0,0 +1,206 @@ + + all_images_folder + worker (801).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (801).jpg + + Unknown + + + 301 + 167 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 15 + 17 + 45 + 34 + + + + helmet + Unspecified + 0 + 0 + + 50 + 21 + 78 + 39 + + + + helmet + Unspecified + 1 + 0 + + 78 + 1 + 105 + 14 + + + + helmet + Unspecified + 0 + 0 + + 101 + 2 + 131 + 20 + + + + helmet + Unspecified + 0 + 0 + + 127 + 14 + 154 + 34 + + + + helmet + Unspecified + 0 + 0 + + 165 + 14 + 194 + 34 + + + + helmet + Unspecified + 0 + 0 + + 192 + 3 + 230 + 27 + + + + helmet + Unspecified + 1 + 0 + + 245 + 1 + 288 + 13 + + + + person with helmet + Unspecified + 0 + 0 + + 8 + 16 + 50 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 46 + 21 + 83 + 76 + + + + person with helmet + Unspecified + 0 + 0 + + 79 + 2 + 104 + 39 + + + + person with helmet + Unspecified + 0 + 0 + + 101 + 3 + 139 + 117 + + + + person with helmet + Unspecified + 0 + 0 + + 125 + 13 + 159 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 159 + 11 + 195 + 64 + + + + person with helmet + Unspecified + 0 + 0 + + 194 + 4 + 251 + 120 + + + + person with helmet + Unspecified + 1 + 0 + + 247 + 1 + 301 + 105 + + + diff --git a/train_annot_folder/worker (802).xml b/train_annot_folder/worker (802).xml new file mode 100644 index 000000000..45783ca80 --- /dev/null +++ b/train_annot_folder/worker (802).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (802).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (802).jpg + + Unknown + + + 253 + 199 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 28 + 55 + 94 + 96 + + + + helmet + Unspecified + 0 + 0 + + 95 + 26 + 151 + 61 + + + + helmet + Unspecified + 0 + 0 + + 166 + 33 + 216 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 15 + 57 + 90 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 89 + 27 + 168 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 32 + 239 + 159 + + + diff --git a/train_annot_folder/worker (803).xml b/train_annot_folder/worker (803).xml new file mode 100644 index 000000000..b3f116c5d --- /dev/null +++ b/train_annot_folder/worker (803).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (803).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (803).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 81 + 14 + 126 + 41 + + + + helmet + Unspecified + 1 + 0 + + 2 + 1 + 58 + 22 + + + + person with helmet + Unspecified + 0 + 0 + + 60 + 15 + 148 + 162 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 54 + 164 + + + diff --git a/train_annot_folder/worker (804).xml b/train_annot_folder/worker (804).xml new file mode 100644 index 000000000..92e3ced48 --- /dev/null +++ b/train_annot_folder/worker (804).xml @@ -0,0 +1,146 @@ + + all_images_folder + worker (804).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (804).jpg + + Unknown + + + 354 + 142 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 23 + 40 + 56 + 70 + + + + helmet + Unspecified + 0 + 0 + + 103 + 42 + 134 + 67 + + + + helmet + Unspecified + 0 + 0 + + 161 + 19 + 217 + 65 + + + + helmet + Unspecified + 0 + 0 + + 234 + 35 + 270 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 44 + 55 + 122 + + + + person with helmet + Unspecified + 0 + 0 + + 100 + 41 + 145 + 103 + + + + person with helmet + Unspecified + 0 + 0 + + 155 + 19 + 223 + 134 + + + + person with helmet + Unspecified + 0 + 0 + + 224 + 39 + 285 + 118 + + + + person without helmet + Unspecified + 1 + 0 + + 316 + 45 + 354 + 113 + + + + person without helmet + Unspecified + 0 + 0 + + 282 + 41 + 317 + 84 + + + + person without helmet + Unspecified + 0 + 0 + + 59 + 39 + 97 + 89 + + + diff --git a/train_annot_folder/worker (805).xml b/train_annot_folder/worker (805).xml new file mode 100644 index 000000000..4c78eb5e8 --- /dev/null +++ b/train_annot_folder/worker (805).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (805).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (805).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 27 + 214 + 65 + + + + helmet + Unspecified + 0 + 0 + + 52 + 31 + 115 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 26 + 240 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 35 + 30 + 124 + 154 + + + diff --git a/train_annot_folder/worker (806).xml b/train_annot_folder/worker (806).xml new file mode 100644 index 000000000..8b23c67e6 --- /dev/null +++ b/train_annot_folder/worker (806).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (806).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (806).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 33 + 23 + 91 + 62 + + + + helmet + Unspecified + 0 + 0 + + 115 + 32 + 155 + 54 + + + + helmet + Unspecified + 0 + 0 + + 207 + 26 + 250 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 24 + 119 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 109 + 29 + 175 + 149 + + + + person with helmet + Unspecified + 0 + 0 + + 201 + 27 + 269 + 162 + + + diff --git a/train_annot_folder/worker (807).xml b/train_annot_folder/worker (807).xml new file mode 100644 index 000000000..c1044effc --- /dev/null +++ b/train_annot_folder/worker (807).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (807).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (807).jpg + + Unknown + + + 284 + 177 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 142 + 14 + 178 + 43 + + + + helmet + Unspecified + 0 + 0 + + 187 + 7 + 241 + 44 + + + + person with helmet + Unspecified + 0 + 0 + + 189 + 12 + 280 + 142 + + + + person with helmet + Unspecified + 0 + 0 + + 131 + 13 + 202 + 124 + + + diff --git a/train_annot_folder/worker (808).xml b/train_annot_folder/worker (808).xml new file mode 100644 index 000000000..17d3d6c1a --- /dev/null +++ b/train_annot_folder/worker (808).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (808).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (808).jpg + + Unknown + + + 388 + 130 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 106 + 37 + 130 + 56 + + + + helmet + Unspecified + 1 + 0 + + 162 + 1 + 196 + 17 + + + + helmet + Unspecified + 0 + 0 + + 260 + 13 + 288 + 31 + + + + person with helmet + Unspecified + 0 + 0 + + 240 + 12 + 312 + 128 + + + + person with helmet + Unspecified + 1 + 0 + + 148 + 1 + 221 + 128 + + + + person with helmet + Unspecified + 1 + 0 + + 91 + 35 + 145 + 130 + + + diff --git a/train_annot_folder/worker (809).xml b/train_annot_folder/worker (809).xml new file mode 100644 index 000000000..6ca74fb47 --- /dev/null +++ b/train_annot_folder/worker (809).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (809).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (809).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 133 + 17 + 195 + 60 + + + + person with helmet + Unspecified + 0 + 0 + + 130 + 17 + 199 + 109 + + + + helmet + Unspecified + 1 + 0 + + 201 + 28 + 275 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 195 + 24 + 275 + 114 + + + diff --git a/train_annot_folder/worker (81).xml b/train_annot_folder/worker (81).xml new file mode 100644 index 000000000..d5012fab9 --- /dev/null +++ b/train_annot_folder/worker (81).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (81).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (81).jpg + + Unknown + + + 243 + 207 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 101 + 46 + 139 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 83 + 46 + 166 + 196 + + + diff --git a/train_annot_folder/worker (811).xml b/train_annot_folder/worker (811).xml new file mode 100644 index 000000000..9f467cfa4 --- /dev/null +++ b/train_annot_folder/worker (811).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (811).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (811).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 59 + 95 + 81 + 114 + + + + helmet + Unspecified + 0 + 0 + + 94 + 90 + 121 + 109 + + + + person with helmet + Unspecified + 0 + 0 + + 55 + 97 + 93 + 247 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 89 + 137 + 252 + + + diff --git a/train_annot_folder/worker (812).xml b/train_annot_folder/worker (812).xml new file mode 100644 index 000000000..d543585a2 --- /dev/null +++ b/train_annot_folder/worker (812).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (812).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (812).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 212 + 25 + 260 + 66 + + + + helmet + Unspecified + 0 + 0 + + 113 + 50 + 139 + 68 + + + + person with helmet + Unspecified + 1 + 0 + + 207 + 24 + 289 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 51 + 147 + 91 + + + diff --git a/train_annot_folder/worker (813).xml b/train_annot_folder/worker (813).xml new file mode 100644 index 000000000..8ac657005 --- /dev/null +++ b/train_annot_folder/worker (813).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (813).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (813).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 95 + 24 + 117 + 50 + + + + person with helmet + Unspecified + 0 + 0 + + 97 + 24 + 158 + 87 + + + + helmet + Unspecified + 0 + 0 + + 45 + 59 + 79 + 85 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 62 + 86 + 133 + + + diff --git a/train_annot_folder/worker (814).xml b/train_annot_folder/worker (814).xml new file mode 100644 index 000000000..869d0b938 --- /dev/null +++ b/train_annot_folder/worker (814).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (814).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (814).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 141 + 47 + 164 + 66 + + + + helmet + Unspecified + 0 + 0 + + 171 + 46 + 197 + 64 + + + + person with helmet + Unspecified + 0 + 0 + + 133 + 48 + 175 + 164 + + + + person with helmet + Unspecified + 0 + 0 + + 172 + 47 + 237 + 177 + + + diff --git a/train_annot_folder/worker (815).xml b/train_annot_folder/worker (815).xml new file mode 100644 index 000000000..1f182fc01 --- /dev/null +++ b/train_annot_folder/worker (815).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (815).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (815).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 117 + 11 + 192 + 56 + + + + person with helmet + Unspecified + 1 + 0 + + 109 + 12 + 196 + 183 + + + diff --git a/train_annot_folder/worker (816).xml b/train_annot_folder/worker (816).xml new file mode 100644 index 000000000..2e599dec9 --- /dev/null +++ b/train_annot_folder/worker (816).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (816).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (816).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 64 + 56 + 103 + + + + helmet + Unspecified + 0 + 0 + + 76 + 32 + 121 + 78 + + + + helmet + Unspecified + 0 + 0 + + 118 + 13 + 194 + 64 + + + + helmet + Unspecified + 0 + 0 + + 166 + 49 + 271 + 111 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 63 + 57 + 171 + + + + person with helmet + Unspecified + 0 + 0 + + 67 + 32 + 130 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 15 + 192 + 90 + + + + person with helmet + Unspecified + 1 + 0 + + 183 + 51 + 275 + 176 + + + diff --git a/train_annot_folder/worker (817).xml b/train_annot_folder/worker (817).xml new file mode 100644 index 000000000..68f5dca5a --- /dev/null +++ b/train_annot_folder/worker (817).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (817).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (817).jpg + + Unknown + + + 274 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 46 + 24 + 92 + 54 + + + + helmet + Unspecified + 0 + 0 + + 115 + 29 + 159 + 60 + + + + helmet + Unspecified + 0 + 0 + + 180 + 3 + 226 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 24 + 105 + 181 + + + + person with helmet + Unspecified + 1 + 0 + + 112 + 29 + 171 + 184 + + + + person with helmet + Unspecified + 0 + 0 + + 171 + 3 + 259 + 183 + + + diff --git a/train_annot_folder/worker (818).xml b/train_annot_folder/worker (818).xml new file mode 100644 index 000000000..fe0a2beea --- /dev/null +++ b/train_annot_folder/worker (818).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (818).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (818).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 40 + 48 + + + + helmet + Unspecified + 0 + 0 + + 72 + 8 + 106 + 29 + + + + helmet + Unspecified + 0 + 0 + + 97 + 21 + 143 + 53 + + + + helmet + Unspecified + 1 + 0 + + 202 + 1 + 258 + 42 + + + + helmet + Unspecified + 0 + 0 + + 252 + 29 + 271 + 56 + + + + person with helmet + Unspecified + 1 + 0 + + 2 + 1 + 59 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 57 + 6 + 103 + 67 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 20 + 157 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 166 + 5 + 274 + 177 + + + + person with helmet + Unspecified + 1 + 0 + + 252 + 28 + 275 + 74 + + + diff --git a/train_annot_folder/worker (819).xml b/train_annot_folder/worker (819).xml new file mode 100644 index 000000000..c0e09dd32 --- /dev/null +++ b/train_annot_folder/worker (819).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (819).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (819).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 123 + 23 + 160 + 51 + + + + helmet + Unspecified + 0 + 0 + + 48 + 31 + 97 + 64 + + + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 59 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 25 + 174 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 49 + 30 + 95 + 102 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 61 + 158 + + + diff --git a/train_annot_folder/worker (82).xml b/train_annot_folder/worker (82).xml new file mode 100644 index 000000000..2d117fae6 --- /dev/null +++ b/train_annot_folder/worker (82).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (82).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (82).jpg + + Unknown + + + 310 + 163 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 180 + 1 + 273 + 124 + + + diff --git a/train_annot_folder/worker (820).xml b/train_annot_folder/worker (820).xml new file mode 100644 index 000000000..56b20219a --- /dev/null +++ b/train_annot_folder/worker (820).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (820).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (820).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 69 + 131 + 94 + 149 + + + + helmet + Unspecified + 0 + 0 + + 122 + 116 + 146 + 132 + + + + person with helmet + Unspecified + 1 + 0 + + 107 + 116 + 164 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 57 + 132 + 104 + 182 + + + diff --git a/train_annot_folder/worker (821).xml b/train_annot_folder/worker (821).xml new file mode 100644 index 000000000..ade7b1693 --- /dev/null +++ b/train_annot_folder/worker (821).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (821).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (821).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 44 + 1 + 120 + 55 + + + + helmet + Unspecified + 0 + 0 + + 216 + 15 + 278 + 63 + + + + person with helmet + Unspecified + 0 + 0 + + 32 + 3 + 137 + 162 + + + + person with helmet + Unspecified + 1 + 0 + + 199 + 14 + 300 + 148 + + + diff --git a/train_annot_folder/worker (822).xml b/train_annot_folder/worker (822).xml new file mode 100644 index 000000000..9a6715fb3 --- /dev/null +++ b/train_annot_folder/worker (822).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (822).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (822).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 59 + 21 + 117 + 52 + + + + helmet + Unspecified + 0 + 0 + + 109 + 27 + 147 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 42 + 22 + 115 + 151 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 22 + 147 + 114 + + + diff --git a/train_annot_folder/worker (823).xml b/train_annot_folder/worker (823).xml new file mode 100644 index 000000000..60327e5d2 --- /dev/null +++ b/train_annot_folder/worker (823).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (823).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (823).jpg + + Unknown + + + 438 + 115 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 200 + 4 + 241 + 28 + + + + person with helmet + Unspecified + 0 + 0 + + 173 + 5 + 250 + 103 + + + diff --git a/train_annot_folder/worker (824).xml b/train_annot_folder/worker (824).xml new file mode 100644 index 000000000..386af75bc --- /dev/null +++ b/train_annot_folder/worker (824).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (824).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (824).jpg + + Unknown + + + 343 + 147 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 150 + 15 + 183 + 38 + + + + helmet + Unspecified + 0 + 0 + + 176 + 23 + 202 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 15 + 180 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 176 + 25 + 205 + 72 + + + diff --git a/train_annot_folder/worker (825).xml b/train_annot_folder/worker (825).xml new file mode 100644 index 000000000..55e71128c --- /dev/null +++ b/train_annot_folder/worker (825).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (825).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (825).jpg + + Unknown + + + 291 + 173 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 102 + 21 + 168 + 58 + + + + helmet + Unspecified + 0 + 0 + + 193 + 13 + 256 + 51 + + + + person with helmet + Unspecified + 1 + 0 + + 85 + 22 + 182 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 187 + 10 + 289 + 170 + + + diff --git a/train_annot_folder/worker (826).xml b/train_annot_folder/worker (826).xml new file mode 100644 index 000000000..c9dbcda5a --- /dev/null +++ b/train_annot_folder/worker (826).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (826).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (826).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 15 + 194 + 95 + + + + person with helmet + Unspecified + 1 + 0 + + 43 + 16 + 212 + 183 + + + diff --git a/train_annot_folder/worker (827).xml b/train_annot_folder/worker (827).xml new file mode 100644 index 000000000..4421dfd41 --- /dev/null +++ b/train_annot_folder/worker (827).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (827).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (827).jpg + + Unknown + + + 284 + 177 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 32 + 29 + 59 + 45 + + + + helmet + Unspecified + 0 + 0 + + 114 + 64 + 137 + 75 + + + + helmet + Unspecified + 0 + 0 + + 161 + 73 + 179 + 83 + + + + helmet + Unspecified + 0 + 0 + + 228 + 97 + 237 + 104 + + + + helmet + Unspecified + 0 + 0 + + 242 + 104 + 248 + 111 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 26 + 73 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 107 + 62 + 139 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 73 + 181 + 95 + + + + person with helmet + Unspecified + 0 + 0 + + 224 + 97 + 240 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 238 + 106 + 251 + 123 + + + diff --git a/train_annot_folder/worker (828).xml b/train_annot_folder/worker (828).xml new file mode 100644 index 000000000..fba3dcd17 --- /dev/null +++ b/train_annot_folder/worker (828).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (828).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (828).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 145 + 41 + 173 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 142 + 42 + 195 + 162 + + + + person with helmet + Unspecified + 0 + 0 + + 110 + 58 + 144 + 157 + + + + helmet + Unspecified + 0 + 0 + + 114 + 57 + 139 + 72 + + + diff --git a/train_annot_folder/worker (829).xml b/train_annot_folder/worker (829).xml new file mode 100644 index 000000000..0cec99880 --- /dev/null +++ b/train_annot_folder/worker (829).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (829).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (829).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 94 + 12 + 172 + 68 + + + + helmet + Unspecified + 1 + 0 + + 192 + 3 + 275 + 60 + + + + person with helmet + Unspecified + 0 + 0 + + 86 + 12 + 204 + 135 + + + + person with helmet + Unspecified + 1 + 0 + + 175 + 6 + 275 + 172 + + + diff --git a/train_annot_folder/worker (83).xml b/train_annot_folder/worker (83).xml new file mode 100644 index 000000000..9235c2830 --- /dev/null +++ b/train_annot_folder/worker (83).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (83).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (83).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 152 + 23 + 208 + 73 + + + + person with helmet + Unspecified + 0 + 0 + + 137 + 23 + 242 + 178 + + + diff --git a/train_annot_folder/worker (830).xml b/train_annot_folder/worker (830).xml new file mode 100644 index 000000000..7ccfc2111 --- /dev/null +++ b/train_annot_folder/worker (830).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (830).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (830).jpg + + Unknown + + + 263 + 192 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 94 + 3 + 153 + 50 + + + + helmet + Unspecified + 1 + 0 + + 186 + 1 + 236 + 37 + + + + helmet + Unspecified + 1 + 0 + + 2 + 1 + 98 + 40 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 91 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 3 + 158 + 130 + + + + person with helmet + Unspecified + 1 + 0 + + 179 + 1 + 257 + 144 + + + diff --git a/train_annot_folder/worker (831).xml b/train_annot_folder/worker (831).xml new file mode 100644 index 000000000..698e12f93 --- /dev/null +++ b/train_annot_folder/worker (831).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (831).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (831).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 90 + 63 + 126 + 95 + + + + helmet + Unspecified + 0 + 0 + + 198 + 63 + 230 + 102 + + + + helmet + Unspecified + 0 + 0 + + 184 + 66 + 196 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 81 + 62 + 145 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 183 + 63 + 238 + 172 + + + diff --git a/train_annot_folder/worker (832).xml b/train_annot_folder/worker (832).xml new file mode 100644 index 000000000..7b29d213e --- /dev/null +++ b/train_annot_folder/worker (832).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (832).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (832).jpg + + Unknown + + + 371 + 136 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 244 + 1 + 313 + 29 + + + + person with helmet + Unspecified + 0 + 0 + + 222 + 2 + 316 + 128 + + + + person without helmet + Unspecified + 0 + 0 + + 50 + 5 + 81 + 111 + + + + person without helmet + Unspecified + 0 + 0 + + 19 + 13 + 52 + 133 + + + diff --git a/train_annot_folder/worker (833).xml b/train_annot_folder/worker (833).xml new file mode 100644 index 000000000..b7ce7f53f --- /dev/null +++ b/train_annot_folder/worker (833).xml @@ -0,0 +1,194 @@ + + all_images_folder + worker (833).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (833).jpg + + Unknown + + + 278 + 181 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 9 + 25 + 39 + 170 + + + + person without helmet + Unspecified + 0 + 0 + + 64 + 20 + 80 + 50 + + + + person without helmet + Unspecified + 0 + 0 + + 240 + 25 + 268 + 167 + + + + person without helmet + Unspecified + 0 + 0 + + 121 + 23 + 139 + 48 + + + + person without helmet + Unspecified + 0 + 0 + + 98 + 15 + 121 + 66 + + + + person without helmet + Unspecified + 0 + 0 + + 156 + 22 + 177 + 53 + + + + person without helmet + Unspecified + 0 + 0 + + 136 + 24 + 165 + 179 + + + + person without helmet + Unspecified + 0 + 0 + + 194 + 17 + 208 + 49 + + + + person without helmet + Unspecified + 0 + 0 + + 222 + 15 + 242 + 55 + + + + person without helmet + Unspecified + 0 + 0 + + 207 + 20 + 225 + 51 + + + + helmet + Unspecified + 0 + 0 + + 43 + 11 + 67 + 28 + + + + helmet + Unspecified + 0 + 0 + + 78 + 24 + 98 + 42 + + + + helmet + Unspecified + 0 + 0 + + 176 + 9 + 198 + 25 + + + + person with helmet + Unspecified + 0 + 0 + + 40 + 13 + 67 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 175 + 7 + 197 + 173 + + + diff --git a/train_annot_folder/worker (834).xml b/train_annot_folder/worker (834).xml new file mode 100644 index 000000000..e5bb24898 --- /dev/null +++ b/train_annot_folder/worker (834).xml @@ -0,0 +1,98 @@ + + all_images_folder + worker (834).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (834).jpg + + Unknown + + + 279 + 180 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 205 + 36 + 272 + 96 + + + + helmet + Unspecified + 1 + 0 + + 7 + 43 + 147 + 180 + + + + helmet + Unspecified + 0 + 0 + + 120 + 66 + 160 + 110 + + + + helmet + Unspecified + 1 + 0 + + 1 + 36 + 27 + 78 + + + + helmet + Unspecified + 0 + 0 + + 165 + 70 + 188 + 97 + + + + helmet + Unspecified + 0 + 0 + + 178 + 99 + 217 + 143 + + + + person with helmet + Unspecified + 1 + 0 + + 197 + 36 + 279 + 179 + + + diff --git a/train_annot_folder/worker (835).xml b/train_annot_folder/worker (835).xml new file mode 100644 index 000000000..fbbb6383c --- /dev/null +++ b/train_annot_folder/worker (835).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (835).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (835).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 40 + 14 + 116 + 73 + + + + helmet + Unspecified + 0 + 0 + + 121 + 47 + 169 + 84 + + + + helmet + Unspecified + 0 + 0 + + 217 + 41 + 260 + 72 + + + + person with helmet + Unspecified + 1 + 0 + + 35 + 11 + 122 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 119 + 49 + 170 + 183 + + + + person with helmet + Unspecified + 1 + 0 + + 212 + 41 + 275 + 174 + + + diff --git a/train_annot_folder/worker (836).xml b/train_annot_folder/worker (836).xml new file mode 100644 index 000000000..e8a6b497f --- /dev/null +++ b/train_annot_folder/worker (836).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (836).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (836).jpg + + Unknown + + + 254 + 198 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 60 + 52 + 143 + 106 + + + + helmet + Unspecified + 0 + 0 + + 145 + 44 + 198 + 92 + + + + helmet + Unspecified + 0 + 0 + + 195 + 13 + 245 + 48 + + + + person with helmet + Unspecified + 0 + 0 + + 36 + 49 + 138 + 197 + + + + person with helmet + Unspecified + 0 + 0 + + 144 + 41 + 195 + 99 + + + + person with helmet + Unspecified + 1 + 0 + + 194 + 15 + 254 + 103 + + + diff --git a/train_annot_folder/worker (837).xml b/train_annot_folder/worker (837).xml new file mode 100644 index 000000000..56feb9805 --- /dev/null +++ b/train_annot_folder/worker (837).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (837).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (837).jpg + + Unknown + + + 426 + 118 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 177 + 1 + 229 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 165 + 4 + 263 + 117 + + + + person without helmet + Unspecified + 1 + 0 + + 135 + 49 + 171 + 118 + + + diff --git a/train_annot_folder/worker (838).xml b/train_annot_folder/worker (838).xml new file mode 100644 index 000000000..a2ba49a36 --- /dev/null +++ b/train_annot_folder/worker (838).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (838).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (838).jpg + + Unknown + + + 310 + 163 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 39 + 25 + 80 + 58 + + + + helmet + Unspecified + 0 + 0 + + 100 + 27 + 139 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 23 + 25 + 83 + 160 + + + + person with helmet + Unspecified + 0 + 0 + + 95 + 29 + 154 + 159 + + + diff --git a/train_annot_folder/worker (839).xml b/train_annot_folder/worker (839).xml new file mode 100644 index 000000000..1c7a7ad21 --- /dev/null +++ b/train_annot_folder/worker (839).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (839).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (839).jpg + + Unknown + + + 245 + 205 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 25 + 29 + 61 + 179 + + + + person without helmet + Unspecified + 0 + 0 + + 58 + 29 + 84 + 176 + + + + person without helmet + Unspecified + 0 + 0 + + 79 + 16 + 99 + 54 + + + + person without helmet + Unspecified + 0 + 0 + + 98 + 28 + 115 + 178 + + + + person without helmet + Unspecified + 0 + 0 + + 112 + 19 + 132 + 53 + + + + person without helmet + Unspecified + 0 + 0 + + 128 + 28 + 146 + 153 + + + + person without helmet + Unspecified + 0 + 0 + + 144 + 21 + 160 + 53 + + + + person without helmet + Unspecified + 0 + 0 + + 193 + 28 + 230 + 147 + + + + helmet + Unspecified + 0 + 0 + + 169 + 17 + 190 + 31 + + + + helmet + Unspecified + 0 + 0 + + 158 + 29 + 176 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 158 + 31 + 178 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 173 + 19 + 190 + 41 + + + diff --git a/train_annot_folder/worker (84).xml b/train_annot_folder/worker (84).xml new file mode 100644 index 000000000..03c58f0a7 --- /dev/null +++ b/train_annot_folder/worker (84).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (84).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (84).jpg + + Unknown + + + 299 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 201 + 13 + 234 + 36 + + + + person with helmet + Unspecified + 0 + 0 + + 172 + 13 + 263 + 167 + + + diff --git a/train_annot_folder/worker (840).xml b/train_annot_folder/worker (840).xml new file mode 100644 index 000000000..763174d4a --- /dev/null +++ b/train_annot_folder/worker (840).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (840).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (840).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 48 + 1 + 70 + 15 + + + + helmet + Unspecified + 0 + 0 + + 71 + 8 + 94 + 21 + + + + helmet + Unspecified + 0 + 0 + + 123 + 3 + 149 + 21 + + + + helmet + Unspecified + 0 + 0 + + 214 + 6 + 235 + 22 + + + + helmet + Unspecified + 0 + 0 + + 247 + 7 + 271 + 24 + + + + person without helmet + Unspecified + 1 + 0 + + 184 + 12 + 214 + 168 + + + + person with helmet + Unspecified + 1 + 0 + + 214 + 8 + 239 + 168 + + + + person with helmet + Unspecified + 1 + 0 + + 243 + 6 + 278 + 168 + + + + person with helmet + Unspecified + 0 + 0 + + 125 + 4 + 160 + 166 + + + + person with helmet + Unspecified + 1 + 0 + + 40 + 1 + 79 + 166 + + + + person with helmet + Unspecified + 0 + 0 + + 73 + 9 + 98 + 54 + + + + person without helmet + Unspecified + 1 + 0 + + 95 + 18 + 127 + 168 + + + diff --git a/train_annot_folder/worker (841).xml b/train_annot_folder/worker (841).xml new file mode 100644 index 000000000..c0602f2a3 --- /dev/null +++ b/train_annot_folder/worker (841).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (841).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (841).jpg + + Unknown + + + 290 + 174 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 13 + 18 + 56 + 46 + + + + helmet + Unspecified + 1 + 0 + + 102 + 1 + 144 + 27 + + + + helmet + Unspecified + 0 + 0 + + 150 + 21 + 191 + 56 + + + + helmet + Unspecified + 0 + 0 + + 234 + 18 + 274 + 52 + + + + person with helmet + Unspecified + 0 + 0 + + 9 + 18 + 69 + 148 + + + + person with helmet + Unspecified + 1 + 0 + + 92 + 1 + 154 + 141 + + + + person with helmet + Unspecified + 0 + 0 + + 148 + 21 + 204 + 168 + + + + person with helmet + Unspecified + 1 + 0 + + 213 + 18 + 290 + 169 + + + diff --git a/train_annot_folder/worker (842).xml b/train_annot_folder/worker (842).xml new file mode 100644 index 000000000..3ed66ca00 --- /dev/null +++ b/train_annot_folder/worker (842).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (842).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (842).jpg + + Unknown + + + 275 + 184 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 25 + 12 + 58 + 37 + + + + helmet + Unspecified + 0 + 0 + + 78 + 15 + 103 + 30 + + + + helmet + Unspecified + 0 + 0 + + 118 + 4 + 157 + 29 + + + + helmet + Unspecified + 0 + 0 + + 170 + 16 + 194 + 31 + + + + helmet + Unspecified + 0 + 0 + + 221 + 12 + 254 + 33 + + + + person with helmet + Unspecified + 0 + 0 + + 204 + 10 + 274 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 13 + 14 + 76 + 143 + + + + person with helmet + Unspecified + 0 + 0 + + 71 + 14 + 112 + 56 + + + + person with helmet + Unspecified + 0 + 0 + + 112 + 3 + 164 + 57 + + + + person with helmet + Unspecified + 0 + 0 + + 166 + 14 + 204 + 60 + + + diff --git a/train_annot_folder/worker (843).xml b/train_annot_folder/worker (843).xml new file mode 100644 index 000000000..00b212fba --- /dev/null +++ b/train_annot_folder/worker (843).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (843).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (843).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 27 + 1 + 96 + 39 + + + + person with helmet + Unspecified + 1 + 0 + + 9 + 1 + 115 + 177 + + + + helmet + Unspecified + 1 + 0 + + 153 + 1 + 225 + 21 + + + + person with helmet + Unspecified + 1 + 0 + + 152 + 1 + 268 + 170 + + + diff --git a/train_annot_folder/worker (844).xml b/train_annot_folder/worker (844).xml new file mode 100644 index 000000000..b383076dc --- /dev/null +++ b/train_annot_folder/worker (844).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (844).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (844).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 90 + 29 + 183 + 95 + + + + person with helmet + Unspecified + 1 + 0 + + 79 + 29 + 183 + 265 + + + diff --git a/train_annot_folder/worker (845).xml b/train_annot_folder/worker (845).xml new file mode 100644 index 000000000..a91866519 --- /dev/null +++ b/train_annot_folder/worker (845).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (845).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (845).jpg + + Unknown + + + 235 + 214 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 38 + 11 + 79 + 35 + + + + helmet + Unspecified + 0 + 0 + + 166 + 2 + 210 + 32 + + + + helmet + Unspecified + 0 + 0 + + 136 + 20 + 163 + 39 + + + + helmet + Unspecified + 0 + 0 + + 87 + 18 + 115 + 38 + + + + person with helmet + Unspecified + 0 + 0 + + 27 + 11 + 92 + 163 + + + + person with helmet + Unspecified + 1 + 0 + + 160 + 7 + 235 + 213 + + + + person with helmet + Unspecified + 0 + 0 + + 122 + 19 + 168 + 69 + + + + person with helmet + Unspecified + 0 + 0 + + 82 + 17 + 122 + 67 + + + diff --git a/train_annot_folder/worker (846).xml b/train_annot_folder/worker (846).xml new file mode 100644 index 000000000..2a25ab2e1 --- /dev/null +++ b/train_annot_folder/worker (846).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (846).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (846).jpg + + Unknown + + + 276 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 41 + 1 + 105 + 44 + + + + helmet + Unspecified + 1 + 0 + + 99 + 1 + 150 + 42 + + + + person with helmet + Unspecified + 1 + 0 + + 10 + 1 + 103 + 174 + + + + person with helmet + Unspecified + 1 + 0 + + 100 + 1 + 154 + 105 + + + diff --git a/train_annot_folder/worker (847).xml b/train_annot_folder/worker (847).xml new file mode 100644 index 000000000..0596b59d7 --- /dev/null +++ b/train_annot_folder/worker (847).xml @@ -0,0 +1,110 @@ + + all_images_folder + worker (847).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (847).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 41 + 27 + 93 + 59 + + + + helmet + Unspecified + 0 + 0 + + 120 + 33 + 156 + 59 + + + + helmet + Unspecified + 0 + 0 + + 158 + 24 + 195 + 59 + + + + helmet + Unspecified + 0 + 0 + + 197 + 7 + 243 + 46 + + + + person with helmet + Unspecified + 0 + 0 + + 7 + 26 + 106 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 114 + 34 + 159 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 26 + 208 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 196 + 8 + 251 + 78 + + + diff --git a/train_annot_folder/worker (848).xml b/train_annot_folder/worker (848).xml new file mode 100644 index 000000000..ddb4625a1 --- /dev/null +++ b/train_annot_folder/worker (848).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (848).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (848).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 154 + 57 + 190 + 85 + + + + helmet + Unspecified + 0 + 0 + + 197 + 64 + 228 + 94 + + + + person with helmet + Unspecified + 0 + 0 + + 135 + 57 + 193 + 177 + + + + person with helmet + Unspecified + 1 + 0 + + 193 + 65 + 250 + 183 + + + diff --git a/train_annot_folder/worker (849).xml b/train_annot_folder/worker (849).xml new file mode 100644 index 000000000..7abc02ef0 --- /dev/null +++ b/train_annot_folder/worker (849).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (849).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (849).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 75 + 28 + 202 + 112 + + + + person with helmet + Unspecified + 1 + 0 + + 68 + 29 + 225 + 222 + + + diff --git a/train_annot_folder/worker (85).xml b/train_annot_folder/worker (85).xml new file mode 100644 index 000000000..be3ab7639 --- /dev/null +++ b/train_annot_folder/worker (85).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (85).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (85).jpg + + Unknown + + + 260 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 164 + 39 + 191 + 58 + + + + person with helmet + Unspecified + 0 + 0 + + 143 + 39 + 213 + 193 + + + diff --git a/train_annot_folder/worker (850).xml b/train_annot_folder/worker (850).xml new file mode 100644 index 000000000..1b7fbd031 --- /dev/null +++ b/train_annot_folder/worker (850).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (850).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (850).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 86 + 50 + 112 + 79 + + + + helmet + Unspecified + 0 + 0 + + 165 + 23 + 203 + 64 + + + + helmet + Unspecified + 0 + 0 + + 117 + 72 + 140 + 92 + + + + person with helmet + Unspecified + 1 + 0 + + 166 + 24 + 275 + 136 + + + + person with helmet + Unspecified + 0 + 0 + + 51 + 50 + 112 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 111 + 72 + 137 + 118 + + + diff --git a/train_annot_folder/worker (851).xml b/train_annot_folder/worker (851).xml new file mode 100644 index 000000000..d60f9979d --- /dev/null +++ b/train_annot_folder/worker (851).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (851).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (851).jpg + + Unknown + + + 344 + 146 + 1 + + 0 + + helmet + Unspecified + 0 + 0 + + 139 + 5 + 227 + 69 + + + + helmet + Unspecified + 1 + 0 + + 1 + 1 + 87 + 85 + + + + person with helmet + Unspecified + 1 + 0 + + 135 + 2 + 241 + 146 + + + + person with helmet + Unspecified + 1 + 0 + + 1 + 1 + 87 + 136 + + + diff --git a/train_annot_folder/worker (852).xml b/train_annot_folder/worker (852).xml new file mode 100644 index 000000000..b34f90ef3 --- /dev/null +++ b/train_annot_folder/worker (852).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (852).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (852).jpg + + Unknown + + + 310 + 162 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 86 + 2 + 169 + 56 + + + + person with helmet + Unspecified + 1 + 0 + + 58 + 3 + 208 + 162 + + + diff --git a/train_annot_folder/worker (853).xml b/train_annot_folder/worker (853).xml new file mode 100644 index 000000000..782c1b611 --- /dev/null +++ b/train_annot_folder/worker (853).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (853).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (853).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 118 + 76 + 143 + 94 + + + + helmet + Unspecified + 0 + 0 + + 105 + 76 + 122 + 91 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 76 + 146 + 181 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 75 + 121 + 179 + + + diff --git a/train_annot_folder/worker (854).xml b/train_annot_folder/worker (854).xml new file mode 100644 index 000000000..428797086 --- /dev/null +++ b/train_annot_folder/worker (854).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (854).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (854).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 54 + 1 + 174 + 109 + + + + person with helmet + Unspecified + 1 + 0 + + 7 + 2 + 178 + 275 + + + diff --git a/train_annot_folder/worker (855).xml b/train_annot_folder/worker (855).xml new file mode 100644 index 000000000..50c92b9c6 --- /dev/null +++ b/train_annot_folder/worker (855).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (855).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (855).jpg + + Unknown + + + 156 + 235 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 49 + 8 + 96 + 42 + + + + person with helmet + Unspecified + 0 + 0 + + 20 + 8 + 128 + 209 + + + diff --git a/train_annot_folder/worker (856).xml b/train_annot_folder/worker (856).xml new file mode 100644 index 000000000..d1749bfa7 --- /dev/null +++ b/train_annot_folder/worker (856).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (856).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (856).jpg + + Unknown + + + 291 + 173 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 48 + 1 + 104 + 30 + + + + person with helmet + Unspecified + 1 + 0 + + 25 + 1 + 123 + 173 + + + diff --git a/train_annot_folder/worker (857).xml b/train_annot_folder/worker (857).xml new file mode 100644 index 000000000..f9315a363 --- /dev/null +++ b/train_annot_folder/worker (857).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (857).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (857).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 5 + 27 + 69 + 67 + + + + helmet + Unspecified + 0 + 0 + + 171 + 53 + 193 + 75 + + + + helmet + Unspecified + 0 + 0 + + 192 + 49 + 225 + 75 + + + + helmet + Unspecified + 0 + 0 + + 229 + 51 + 258 + 75 + + + + helmet + Unspecified + 1 + 0 + + 263 + 47 + 275 + 78 + + + + helmet + Unspecified + 0 + 0 + + 87 + 51 + 102 + 75 + + + diff --git a/train_annot_folder/worker (858).xml b/train_annot_folder/worker (858).xml new file mode 100644 index 000000000..7c8fab41e --- /dev/null +++ b/train_annot_folder/worker (858).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (858).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (858).jpg + + Unknown + + + 231 + 218 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 54 + 32 + 162 + 101 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 31 + 223 + 216 + + + diff --git a/train_annot_folder/worker (859).xml b/train_annot_folder/worker (859).xml new file mode 100644 index 000000000..89e361c4e --- /dev/null +++ b/train_annot_folder/worker (859).xml @@ -0,0 +1,146 @@ + + all_images_folder + worker (859).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (859).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 64 + 53 + 81 + 64 + + + + helmet + Unspecified + 0 + 0 + + 91 + 57 + 111 + 66 + + + + helmet + Unspecified + 0 + 0 + + 126 + 52 + 142 + 61 + + + + helmet + Unspecified + 0 + 0 + + 151 + 46 + 165 + 55 + + + + helmet + Unspecified + 0 + 0 + + 163 + 49 + 181 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 54 + 84 + 176 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 55 + 119 + 173 + + + + person with helmet + Unspecified + 0 + 0 + + 118 + 52 + 151 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 164 + 51 + 196 + 174 + + + + person with helmet + Unspecified + 0 + 0 + + 149 + 45 + 165 + 89 + + + + person with helmet + Unspecified + 0 + 0 + + 121 + 53 + 152 + 170 + + + diff --git a/train_annot_folder/worker (860).xml b/train_annot_folder/worker (860).xml new file mode 100644 index 000000000..410f8d4f1 --- /dev/null +++ b/train_annot_folder/worker (860).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (860).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (860).jpg + + Unknown + + + 183 + 276 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 4 + 41 + 76 + 91 + + + + helmet + Unspecified + 0 + 0 + + 112 + 25 + 175 + 74 + + + + person with helmet + Unspecified + 0 + 0 + + 5 + 42 + 114 + 273 + + + + person with helmet + Unspecified + 1 + 0 + + 108 + 26 + 183 + 272 + + + diff --git a/train_annot_folder/worker (861).xml b/train_annot_folder/worker (861).xml new file mode 100644 index 000000000..8d8a6d514 --- /dev/null +++ b/train_annot_folder/worker (861).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (861).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (861).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 150 + 1 + 233 + 44 + + + + helmet + Unspecified + 1 + 0 + + 235 + 1 + 275 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 143 + 1 + 235 + 130 + + + + person with helmet + Unspecified + 1 + 0 + + 235 + 2 + 275 + 121 + + + diff --git a/train_annot_folder/worker (862).xml b/train_annot_folder/worker (862).xml new file mode 100644 index 000000000..da9b03dba --- /dev/null +++ b/train_annot_folder/worker (862).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (862).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (862).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 114 + 103 + 125 + 114 + + + + helmet + Unspecified + 0 + 0 + + 138 + 98 + 153 + 113 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 103 + 135 + 189 + + + + person with helmet + Unspecified + 0 + 0 + + 134 + 97 + 159 + 193 + + + diff --git a/train_annot_folder/worker (863).xml b/train_annot_folder/worker (863).xml new file mode 100644 index 000000000..b1c4b45b4 --- /dev/null +++ b/train_annot_folder/worker (863).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (863).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (863).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 46 + 45 + 65 + 56 + + + + helmet + Unspecified + 0 + 0 + + 75 + 51 + 94 + 63 + + + + helmet + Unspecified + 0 + 0 + + 108 + 53 + 125 + 64 + + + + helmet + Unspecified + 0 + 0 + + 127 + 54 + 143 + 63 + + + + helmet + Unspecified + 0 + 0 + + 142 + 56 + 160 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 30 + 46 + 63 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 61 + 50 + 96 + 167 + + + + person with helmet + Unspecified + 0 + 0 + + 99 + 52 + 129 + 171 + + + + person with helmet + Unspecified + 0 + 0 + + 128 + 55 + 145 + 90 + + + + person with helmet + Unspecified + 0 + 0 + + 143 + 54 + 179 + 170 + + + diff --git a/train_annot_folder/worker (864).xml b/train_annot_folder/worker (864).xml new file mode 100644 index 000000000..42f10a05c --- /dev/null +++ b/train_annot_folder/worker (864).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (864).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (864).jpg + + Unknown + + + 189 + 267 + 3 + + 0 + + person without helmet + Unspecified + 0 + 0 + + 13 + 23 + 56 + 72 + + + + helmet + Unspecified + 0 + 0 + + 113 + 145 + 148 + 165 + + + + person with helmet + Unspecified + 0 + 0 + + 101 + 142 + 162 + 255 + + + diff --git a/train_annot_folder/worker (865).xml b/train_annot_folder/worker (865).xml new file mode 100644 index 000000000..6b89aa9ad --- /dev/null +++ b/train_annot_folder/worker (865).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (865).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (865).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 120 + 42 + 175 + 78 + + + + helmet + Unspecified + 0 + 0 + + 181 + 51 + 248 + 94 + + + + person with helmet + Unspecified + 1 + 0 + + 180 + 52 + 275 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 89 + 42 + 188 + 140 + + + diff --git a/train_annot_folder/worker (866).xml b/train_annot_folder/worker (866).xml new file mode 100644 index 000000000..6449655d6 --- /dev/null +++ b/train_annot_folder/worker (866).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (866).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (866).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 28 + 1 + 132 + 65 + + + + helmet + Unspecified + 1 + 0 + + 186 + 46 + 275 + 119 + + + + person with helmet + Unspecified + 1 + 0 + + 15 + 1 + 155 + 171 + + + + person with helmet + Unspecified + 1 + 0 + + 187 + 46 + 275 + 172 + + + diff --git a/train_annot_folder/worker (868).xml b/train_annot_folder/worker (868).xml new file mode 100644 index 000000000..971fcbfc8 --- /dev/null +++ b/train_annot_folder/worker (868).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (868).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (868).jpg + + Unknown + + + 199 + 144 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 118 + 30 + 148 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 111 + 30 + 170 + 144 + + + diff --git a/train_annot_folder/worker (869).xml b/train_annot_folder/worker (869).xml new file mode 100644 index 000000000..7c3f41bae --- /dev/null +++ b/train_annot_folder/worker (869).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (869).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (869).jpg + + Unknown + + + 259 + 194 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 66 + 95 + 88 + 111 + + + + helmet + Unspecified + 0 + 0 + + 31 + 87 + 45 + 97 + + + + person with helmet + Unspecified + 0 + 0 + + 25 + 87 + 43 + 152 + + + + person with helmet + Unspecified + 0 + 0 + + 44 + 90 + 67 + 153 + + + + person with helmet + Unspecified + 0 + 0 + + 65 + 96 + 93 + 189 + + + diff --git a/train_annot_folder/worker (870).xml b/train_annot_folder/worker (870).xml new file mode 100644 index 000000000..0d2df8306 --- /dev/null +++ b/train_annot_folder/worker (870).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (870).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (870).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 146 + 20 + 271 + 95 + + + + person with helmet + Unspecified + 1 + 0 + + 147 + 23 + 275 + 170 + + + diff --git a/train_annot_folder/worker (871).xml b/train_annot_folder/worker (871).xml new file mode 100644 index 000000000..92027a30f --- /dev/null +++ b/train_annot_folder/worker (871).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (871).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (871).jpg + + Unknown + + + 220 + 229 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 170 + 145 + 210 + 175 + + + + helmet + Unspecified + 0 + 0 + + 102 + 73 + 131 + 90 + + + + person without helmet + Unspecified + 0 + 0 + + 3 + 148 + 56 + 217 + + + + person without helmet + Unspecified + 1 + 0 + + 2 + 1 + 73 + 71 + + + + person with helmet + Unspecified + 0 + 0 + + 84 + 75 + 144 + 145 + + + + person with helmet + Unspecified + 0 + 0 + + 159 + 146 + 218 + 216 + + + diff --git a/train_annot_folder/worker (872).xml b/train_annot_folder/worker (872).xml new file mode 100644 index 000000000..1c03f302b --- /dev/null +++ b/train_annot_folder/worker (872).xml @@ -0,0 +1,158 @@ + + all_images_folder + worker (872).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (872).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 151 + 37 + 167 + 54 + + + + helmet + Unspecified + 0 + 0 + + 119 + 38 + 140 + 55 + + + + helmet + Unspecified + 0 + 0 + + 120 + 29 + 138 + 39 + + + + helmet + Unspecified + 0 + 0 + + 95 + 39 + 115 + 54 + + + + helmet + Unspecified + 0 + 0 + + 94 + 29 + 111 + 39 + + + + helmet + Unspecified + 0 + 0 + + 65 + 20 + 95 + 47 + + + + helmet + Unspecified + 0 + 0 + + 45 + 14 + 69 + 28 + + + + helmet + Unspecified + 0 + 0 + + 9 + 20 + 41 + 46 + + + + helmet + Unspecified + 0 + 0 + + 2 + 16 + 18 + 35 + + + + person with helmet + Unspecified + 0 + 0 + + 146 + 39 + 169 + 131 + + + + person with helmet + Unspecified + 0 + 0 + + 113 + 39 + 151 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 57 + 23 + 110 + 172 + + + diff --git a/train_annot_folder/worker (873).xml b/train_annot_folder/worker (873).xml new file mode 100644 index 000000000..d69dcc412 --- /dev/null +++ b/train_annot_folder/worker (873).xml @@ -0,0 +1,134 @@ + + all_images_folder + worker (873).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (873).jpg + + Unknown + + + 270 + 186 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 21 + 24 + 50 + 42 + + + + helmet + Unspecified + 0 + 0 + + 78 + 25 + 109 + 46 + + + + helmet + Unspecified + 0 + 0 + + 117 + 18 + 152 + 42 + + + + helmet + Unspecified + 0 + 0 + + 168 + 30 + 200 + 55 + + + + helmet + Unspecified + 0 + 0 + + 210 + 17 + 243 + 40 + + + + person with helmet + Unspecified + 0 + 0 + + 12 + 25 + 79 + 185 + + + + person with helmet + Unspecified + 0 + 0 + + 69 + 24 + 112 + 135 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 18 + 166 + 183 + + + + person with helmet + Unspecified + 0 + 0 + + 164 + 33 + 209 + 172 + + + + person with helmet + Unspecified + 0 + 0 + + 203 + 17 + 263 + 183 + + + diff --git a/train_annot_folder/worker (874).xml b/train_annot_folder/worker (874).xml new file mode 100644 index 000000000..d9aa23451 --- /dev/null +++ b/train_annot_folder/worker (874).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (874).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (874).jpg + + Unknown + + + 310 + 162 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 172 + 2 + 241 + 40 + + + + person with helmet + Unspecified + 1 + 0 + + 171 + 3 + 253 + 162 + + + diff --git a/train_annot_folder/worker (875).xml b/train_annot_folder/worker (875).xml new file mode 100644 index 000000000..b05acde1f --- /dev/null +++ b/train_annot_folder/worker (875).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (875).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (875).jpg + + Unknown + + + 300 + 168 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 156 + 41 + 177 + 61 + + + + person with helmet + Unspecified + 0 + 0 + + 134 + 38 + 178 + 76 + + + diff --git a/train_annot_folder/worker (876).xml b/train_annot_folder/worker (876).xml new file mode 100644 index 000000000..d94ea02a3 --- /dev/null +++ b/train_annot_folder/worker (876).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (876).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (876).jpg + + Unknown + + + 183 + 275 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 110 + 33 + 148 + 63 + + + + helmet + Unspecified + 0 + 0 + + 42 + 52 + 85 + 77 + + + + person with helmet + Unspecified + 0 + 0 + + 26 + 54 + 99 + 262 + + + + person with helmet + Unspecified + 0 + 0 + + 108 + 32 + 161 + 263 + + + diff --git a/train_annot_folder/worker (877).xml b/train_annot_folder/worker (877).xml new file mode 100644 index 000000000..d310da654 --- /dev/null +++ b/train_annot_folder/worker (877).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (877).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (877).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 84 + 49 + 103 + 61 + + + + helmet + Unspecified + 0 + 0 + + 152 + 54 + 170 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 73 + 49 + 112 + 133 + + + + person with helmet + Unspecified + 0 + 0 + + 152 + 55 + 180 + 115 + + + diff --git a/train_annot_folder/worker (878).xml b/train_annot_folder/worker (878).xml new file mode 100644 index 000000000..768c80185 --- /dev/null +++ b/train_annot_folder/worker (878).xml @@ -0,0 +1,74 @@ + + all_images_folder + worker (878).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (878).jpg + + Unknown + + + 355 + 142 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 97 + 1 + 152 + 44 + + + + helmet + Unspecified + 1 + 0 + + 235 + 1 + 294 + 37 + + + + person with helmet + Unspecified + 0 + 0 + + 149 + 3 + 224 + 140 + + + + person with helmet + Unspecified + 1 + 0 + + 66 + 1 + 153 + 142 + + + + person with helmet + Unspecified + 1 + 0 + + 223 + 1 + 318 + 142 + + + diff --git a/train_annot_folder/worker (88).xml b/train_annot_folder/worker (88).xml new file mode 100644 index 000000000..9b587ddb5 --- /dev/null +++ b/train_annot_folder/worker (88).xml @@ -0,0 +1,26 @@ + + all_images_folder + worker (88).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (88).jpg + + Unknown + + + 262 + 192 + 3 + + 0 + + person without helmet + Unspecified + 1 + 0 + + 1 + 23 + 198 + 175 + + + diff --git a/train_annot_folder/worker (880).xml b/train_annot_folder/worker (880).xml new file mode 100644 index 000000000..2cba8c3ac --- /dev/null +++ b/train_annot_folder/worker (880).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (880).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (880).jpg + + Unknown + + + 284 + 177 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 188 + 8 + 244 + 44 + + + + person with helmet + Unspecified + 1 + 0 + + 181 + 6 + 280 + 177 + + + diff --git a/train_annot_folder/worker (881).xml b/train_annot_folder/worker (881).xml new file mode 100644 index 000000000..646c089f7 --- /dev/null +++ b/train_annot_folder/worker (881).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (881).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (881).jpg + + Unknown + + + 278 + 181 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 121 + 34 + 165 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 117 + 33 + 172 + 114 + + + diff --git a/train_annot_folder/worker (882).xml b/train_annot_folder/worker (882).xml new file mode 100644 index 000000000..c02458d2d --- /dev/null +++ b/train_annot_folder/worker (882).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (882).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (882).jpg + + Unknown + + + 89 + 218 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 36 + 1 + 69 + 21 + + + + person with helmet + Unspecified + 1 + 0 + + 16 + 1 + 82 + 210 + + + diff --git a/train_annot_folder/worker (883).xml b/train_annot_folder/worker (883).xml new file mode 100644 index 000000000..6ac53f297 --- /dev/null +++ b/train_annot_folder/worker (883).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (883).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (883).jpg + + Unknown + + + 225 + 225 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 71 + 42 + 142 + 95 + + + + person with helmet + Unspecified + 0 + 0 + + 52 + 41 + 183 + 223 + + + diff --git a/train_annot_folder/worker (884).xml b/train_annot_folder/worker (884).xml new file mode 100644 index 000000000..c9fe1ed93 --- /dev/null +++ b/train_annot_folder/worker (884).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (884).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (884).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 42 + 1 + 112 + 38 + + + + helmet + Unspecified + 1 + 0 + + 163 + 1 + 234 + 47 + + + + person with helmet + Unspecified + 1 + 0 + + 13 + 1 + 143 + 165 + + + + person with helmet + Unspecified + 1 + 0 + + 162 + 1 + 275 + 133 + + + diff --git a/train_annot_folder/worker (885).xml b/train_annot_folder/worker (885).xml new file mode 100644 index 000000000..2b90e2873 --- /dev/null +++ b/train_annot_folder/worker (885).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (885).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (885).jpg + + Unknown + + + 184 + 274 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 68 + 5 + 156 + 64 + + + + person with helmet + Unspecified + 1 + 0 + + 29 + 6 + 184 + 258 + + + diff --git a/train_annot_folder/worker (886).xml b/train_annot_folder/worker (886).xml new file mode 100644 index 000000000..cf2b77e7a --- /dev/null +++ b/train_annot_folder/worker (886).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (886).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (886).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 97 + 3 + 175 + 83 + + + + person with helmet + Unspecified + 0 + 0 + + 97 + 3 + 268 + 146 + + + diff --git a/train_annot_folder/worker (887).xml b/train_annot_folder/worker (887).xml new file mode 100644 index 000000000..538083caf --- /dev/null +++ b/train_annot_folder/worker (887).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (887).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (887).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 200 + 8 + 275 + 59 + + + + helmet + Unspecified + 0 + 0 + + 127 + 45 + 192 + 98 + + + + person with helmet + Unspecified + 0 + 0 + + 113 + 42 + 196 + 154 + + + + person with helmet + Unspecified + 1 + 0 + + 204 + 8 + 275 + 153 + + + diff --git a/train_annot_folder/worker (888).xml b/train_annot_folder/worker (888).xml new file mode 100644 index 000000000..e156a6f52 --- /dev/null +++ b/train_annot_folder/worker (888).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (888).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (888).jpg + + Unknown + + + 347 + 145 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 29 + 6 + 152 + 80 + + + + person with helmet + Unspecified + 1 + 0 + + 19 + 3 + 154 + 145 + + + diff --git a/train_annot_folder/worker (889).xml b/train_annot_folder/worker (889).xml new file mode 100644 index 000000000..ad83db124 --- /dev/null +++ b/train_annot_folder/worker (889).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (889).jpg + C:\Users\nasir.shah\Desktop\all_images_folder\all_images_folder\worker (889).jpg + + Unknown + + + 272 + 185 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 144 + 11 + 235 + 72 + + + + person with helmet + Unspecified + 0 + 0 + + 146 + 13 + 243 + 123 + + + diff --git a/train_annot_folder/worker (89).xml b/train_annot_folder/worker (89).xml new file mode 100644 index 000000000..82af3db17 --- /dev/null +++ b/train_annot_folder/worker (89).xml @@ -0,0 +1,50 @@ + + all_images_folder + worker (89).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (89).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 55 + 18 + 128 + 67 + + + + helmet + Unspecified + 1 + 0 + + 161 + 1 + 273 + 90 + + + + person with helmet + Unspecified + 1 + 0 + + 6 + 19 + 127 + 183 + + + diff --git a/train_annot_folder/worker (890).xml b/train_annot_folder/worker (890).xml new file mode 100644 index 000000000..1c7d8fb26 --- /dev/null +++ b/train_annot_folder/worker (890).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (890).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (890).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + person with helmet + Unspecified + 0 + 0 + + 38 + 5 + 230 + 182 + + + + helmet + Unspecified + 0 + 0 + + 92 + 5 + 175 + 62 + + + diff --git a/train_annot_folder/worker (891).xml b/train_annot_folder/worker (891).xml new file mode 100644 index 000000000..b9eb894e0 --- /dev/null +++ b/train_annot_folder/worker (891).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (891).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (891).jpg + + Unknown + + + 275 + 183 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 43 + 41 + 117 + 81 + + + + person with helmet + Unspecified + 0 + 0 + + 38 + 41 + 132 + 182 + + + diff --git a/train_annot_folder/worker (9).xml b/train_annot_folder/worker (9).xml new file mode 100644 index 000000000..ab5cac8c0 --- /dev/null +++ b/train_annot_folder/worker (9).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (9).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (9).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 116 + 34 + 147 + 65 + + + + person with helmet + Unspecified + 0 + 0 + + 91 + 34 + 164 + 175 + + + diff --git a/train_annot_folder/worker (90).xml b/train_annot_folder/worker (90).xml new file mode 100644 index 000000000..4d55a74c0 --- /dev/null +++ b/train_annot_folder/worker (90).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (90).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (90).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 88 + 7 + 136 + 41 + + + + person with helmet + Unspecified + 0 + 0 + + 53 + 8 + 158 + 162 + + + diff --git a/train_annot_folder/worker (91).xml b/train_annot_folder/worker (91).xml new file mode 100644 index 000000000..a3b29738a --- /dev/null +++ b/train_annot_folder/worker (91).xml @@ -0,0 +1,62 @@ + + all_images_folder + worker (91).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (91).jpg + + Unknown + + + 266 + 190 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 172 + 106 + 210 + 146 + + + + helmet + Unspecified + 0 + 0 + + 101 + 85 + 144 + 123 + + + + person with helmet + Unspecified + 0 + 0 + + 56 + 76 + 157 + 178 + + + + person with helmet + Unspecified + 0 + 0 + + 157 + 103 + 222 + 179 + + + diff --git a/train_annot_folder/worker (92).xml b/train_annot_folder/worker (92).xml new file mode 100644 index 000000000..e952e6d2b --- /dev/null +++ b/train_annot_folder/worker (92).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (92).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (92).jpg + + Unknown + + + 288 + 175 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 115 + 1 + 176 + 41 + + + + person with helmet + Unspecified + 1 + 0 + + 61 + 1 + 217 + 162 + + + diff --git a/train_annot_folder/worker (93).xml b/train_annot_folder/worker (93).xml new file mode 100644 index 000000000..3bcc50adb --- /dev/null +++ b/train_annot_folder/worker (93).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (93).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (93).jpg + + Unknown + + + 277 + 182 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 56 + 68 + 87 + 87 + + + + person with helmet + Unspecified + 1 + 0 + + 45 + 66 + 97 + 182 + + + diff --git a/train_annot_folder/worker (94).xml b/train_annot_folder/worker (94).xml new file mode 100644 index 000000000..a7e1e7e1b --- /dev/null +++ b/train_annot_folder/worker (94).xml @@ -0,0 +1,86 @@ + + all_images_folder + worker (94).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (94).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 63 + 45 + 105 + 70 + + + + helmet + Unspecified + 0 + 0 + + 195 + 42 + 231 + 66 + + + + person with helmet + Unspecified + 0 + 0 + + 195 + 42 + 257 + 177 + + + + person with helmet + Unspecified + 0 + 0 + + 47 + 45 + 105 + 176 + + + + person without helmet + Unspecified + 0 + 0 + + 104 + 61 + 161 + 176 + + + + person without helmet + Unspecified + 0 + 0 + + 146 + 56 + 195 + 119 + + + diff --git a/train_annot_folder/worker (95).xml b/train_annot_folder/worker (95).xml new file mode 100644 index 000000000..09446086d --- /dev/null +++ b/train_annot_folder/worker (95).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (95).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (95).jpg + + Unknown + + + 240 + 160 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 147 + 10 + 191 + 43 + + + + person with helmet + Unspecified + 0 + 0 + + 129 + 12 + 217 + 128 + + + diff --git a/train_annot_folder/worker (96).xml b/train_annot_folder/worker (96).xml new file mode 100644 index 000000000..81b1950ee --- /dev/null +++ b/train_annot_folder/worker (96).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (96).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (96).jpg + + Unknown + + + 262 + 193 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 125 + 1 + 212 + 29 + + + + person with helmet + Unspecified + 1 + 0 + + 90 + 1 + 248 + 175 + + + diff --git a/train_annot_folder/worker (98).xml b/train_annot_folder/worker (98).xml new file mode 100644 index 000000000..6ffd59df7 --- /dev/null +++ b/train_annot_folder/worker (98).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (98).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (98).jpg + + Unknown + + + 266 + 189 + 3 + + 0 + + helmet + Unspecified + 1 + 0 + + 119 + 1 + 197 + 51 + + + + person with helmet + Unspecified + 0 + 0 + + 93 + 2 + 246 + 178 + + + diff --git a/train_annot_folder/worker (99).xml b/train_annot_folder/worker (99).xml new file mode 100644 index 000000000..ddd00b74e --- /dev/null +++ b/train_annot_folder/worker (99).xml @@ -0,0 +1,38 @@ + + all_images_folder + worker (99).jpg + D:\Workspace\YOLO_annotation\dataset_images\tagged\all_images_folder\worker (99).jpg + + Unknown + + + 204 + 247 + 3 + + 0 + + helmet + Unspecified + 0 + 0 + + 91 + 27 + 160 + 89 + + + + person with helmet + Unspecified + 1 + 0 + + 76 + 27 + 192 + 247 + + + diff --git a/train_image_folder/applauding_001.jpg b/train_image_folder/applauding_001.jpg new file mode 100644 index 000000000..bf8ec070e Binary files /dev/null and b/train_image_folder/applauding_001.jpg differ diff --git a/train_image_folder/applauding_002.jpg b/train_image_folder/applauding_002.jpg new file mode 100644 index 000000000..193d0e68a Binary files /dev/null and b/train_image_folder/applauding_002.jpg differ diff --git a/train_image_folder/applauding_003.jpg b/train_image_folder/applauding_003.jpg new file mode 100644 index 000000000..a9f7bf8d7 Binary files /dev/null and b/train_image_folder/applauding_003.jpg differ diff --git a/train_image_folder/applauding_004.jpg b/train_image_folder/applauding_004.jpg new file mode 100644 index 000000000..ef41eca88 Binary files /dev/null and b/train_image_folder/applauding_004.jpg differ diff --git a/train_image_folder/applauding_005.jpg b/train_image_folder/applauding_005.jpg new file mode 100644 index 000000000..cfb0aa181 Binary files /dev/null and b/train_image_folder/applauding_005.jpg differ diff --git a/train_image_folder/applauding_007.jpg b/train_image_folder/applauding_007.jpg new file mode 100644 index 000000000..12c1171a9 Binary files /dev/null and b/train_image_folder/applauding_007.jpg differ diff --git a/train_image_folder/applauding_008.jpg b/train_image_folder/applauding_008.jpg new file mode 100644 index 000000000..8a2d63b4a Binary files /dev/null and b/train_image_folder/applauding_008.jpg differ diff --git a/train_image_folder/applauding_011.jpg b/train_image_folder/applauding_011.jpg new file mode 100644 index 000000000..6eaa8ec7c Binary files /dev/null and b/train_image_folder/applauding_011.jpg differ diff --git a/train_image_folder/applauding_012.jpg b/train_image_folder/applauding_012.jpg new file mode 100644 index 000000000..469fb8bfe Binary files /dev/null and b/train_image_folder/applauding_012.jpg differ diff --git a/train_image_folder/applauding_013.jpg b/train_image_folder/applauding_013.jpg new file mode 100644 index 000000000..bafb6fda3 Binary files /dev/null and b/train_image_folder/applauding_013.jpg differ diff --git a/train_image_folder/applauding_014.jpg b/train_image_folder/applauding_014.jpg new file mode 100644 index 000000000..e7c41ea04 Binary files /dev/null and b/train_image_folder/applauding_014.jpg differ diff --git a/train_image_folder/applauding_015.jpg b/train_image_folder/applauding_015.jpg new file mode 100644 index 000000000..4fd649f6b Binary files /dev/null and b/train_image_folder/applauding_015.jpg differ diff --git a/train_image_folder/applauding_016.jpg b/train_image_folder/applauding_016.jpg new file mode 100644 index 000000000..8d9abe5c8 Binary files /dev/null and b/train_image_folder/applauding_016.jpg differ diff --git a/train_image_folder/applauding_017.jpg b/train_image_folder/applauding_017.jpg new file mode 100644 index 000000000..b46ca0402 Binary files /dev/null and b/train_image_folder/applauding_017.jpg differ diff --git a/train_image_folder/applauding_018.jpg b/train_image_folder/applauding_018.jpg new file mode 100644 index 000000000..f6c8cbd55 Binary files /dev/null and b/train_image_folder/applauding_018.jpg differ diff --git a/train_image_folder/applauding_019.jpg b/train_image_folder/applauding_019.jpg new file mode 100644 index 000000000..378989266 Binary files /dev/null and b/train_image_folder/applauding_019.jpg differ diff --git a/train_image_folder/applauding_020.jpg b/train_image_folder/applauding_020.jpg new file mode 100644 index 000000000..f97e5219e Binary files /dev/null and b/train_image_folder/applauding_020.jpg differ diff --git a/train_image_folder/applauding_021.jpg b/train_image_folder/applauding_021.jpg new file mode 100644 index 000000000..93b07fb0e Binary files /dev/null and b/train_image_folder/applauding_021.jpg differ diff --git a/train_image_folder/applauding_022.jpg b/train_image_folder/applauding_022.jpg new file mode 100644 index 000000000..dc4d3a440 Binary files /dev/null and b/train_image_folder/applauding_022.jpg differ diff --git a/train_image_folder/applauding_023.jpg b/train_image_folder/applauding_023.jpg new file mode 100644 index 000000000..2a6472825 Binary files /dev/null and b/train_image_folder/applauding_023.jpg differ diff --git a/train_image_folder/applauding_024.jpg b/train_image_folder/applauding_024.jpg new file mode 100644 index 000000000..822023867 Binary files /dev/null and b/train_image_folder/applauding_024.jpg differ diff --git a/train_image_folder/applauding_025.jpg b/train_image_folder/applauding_025.jpg new file mode 100644 index 000000000..0bb732412 Binary files /dev/null and b/train_image_folder/applauding_025.jpg differ diff --git a/train_image_folder/applauding_026.jpg b/train_image_folder/applauding_026.jpg new file mode 100644 index 000000000..a7f19f90c Binary files /dev/null and b/train_image_folder/applauding_026.jpg differ diff --git a/train_image_folder/applauding_028.jpg b/train_image_folder/applauding_028.jpg new file mode 100644 index 000000000..a6fc3559b Binary files /dev/null and b/train_image_folder/applauding_028.jpg differ diff --git a/train_image_folder/applauding_029.jpg b/train_image_folder/applauding_029.jpg new file mode 100644 index 000000000..e8a8d3ae9 Binary files /dev/null and b/train_image_folder/applauding_029.jpg differ diff --git a/train_image_folder/applauding_030.jpg b/train_image_folder/applauding_030.jpg new file mode 100644 index 000000000..4b8566054 Binary files /dev/null and b/train_image_folder/applauding_030.jpg differ diff --git a/train_image_folder/applauding_032.jpg b/train_image_folder/applauding_032.jpg new file mode 100644 index 000000000..cc2b8d330 Binary files /dev/null and b/train_image_folder/applauding_032.jpg differ diff --git a/train_image_folder/applauding_035.jpg b/train_image_folder/applauding_035.jpg new file mode 100644 index 000000000..ce707dc22 Binary files /dev/null and b/train_image_folder/applauding_035.jpg differ diff --git a/train_image_folder/applauding_036.jpg b/train_image_folder/applauding_036.jpg new file mode 100644 index 000000000..da45fa53e Binary files /dev/null and b/train_image_folder/applauding_036.jpg differ diff --git a/train_image_folder/applauding_037.jpg b/train_image_folder/applauding_037.jpg new file mode 100644 index 000000000..8e85ab610 Binary files /dev/null and b/train_image_folder/applauding_037.jpg differ diff --git a/train_image_folder/applauding_038.jpg b/train_image_folder/applauding_038.jpg new file mode 100644 index 000000000..0806da4a5 Binary files /dev/null and b/train_image_folder/applauding_038.jpg differ diff --git a/train_image_folder/applauding_039.jpg b/train_image_folder/applauding_039.jpg new file mode 100644 index 000000000..782ce86be Binary files /dev/null and b/train_image_folder/applauding_039.jpg differ diff --git a/train_image_folder/applauding_040.jpg b/train_image_folder/applauding_040.jpg new file mode 100644 index 000000000..5def424fe Binary files /dev/null and b/train_image_folder/applauding_040.jpg differ diff --git a/train_image_folder/applauding_041.jpg b/train_image_folder/applauding_041.jpg new file mode 100644 index 000000000..1e56bc1a6 Binary files /dev/null and b/train_image_folder/applauding_041.jpg differ diff --git a/train_image_folder/applauding_042.jpg b/train_image_folder/applauding_042.jpg new file mode 100644 index 000000000..da9b2ad43 Binary files /dev/null and b/train_image_folder/applauding_042.jpg differ diff --git a/train_image_folder/applauding_043.jpg b/train_image_folder/applauding_043.jpg new file mode 100644 index 000000000..77948146e Binary files /dev/null and b/train_image_folder/applauding_043.jpg differ diff --git a/train_image_folder/applauding_044.jpg b/train_image_folder/applauding_044.jpg new file mode 100644 index 000000000..9920649b7 Binary files /dev/null and b/train_image_folder/applauding_044.jpg differ diff --git a/train_image_folder/applauding_045.jpg b/train_image_folder/applauding_045.jpg new file mode 100644 index 000000000..8e1969209 Binary files /dev/null and b/train_image_folder/applauding_045.jpg differ diff --git a/train_image_folder/applauding_046.jpg b/train_image_folder/applauding_046.jpg new file mode 100644 index 000000000..6e68ca52a Binary files /dev/null and b/train_image_folder/applauding_046.jpg differ diff --git a/train_image_folder/applauding_047.jpg b/train_image_folder/applauding_047.jpg new file mode 100644 index 000000000..4cd8d3310 Binary files /dev/null and b/train_image_folder/applauding_047.jpg differ diff --git a/train_image_folder/applauding_048.jpg b/train_image_folder/applauding_048.jpg new file mode 100644 index 000000000..8e9f23b5e Binary files /dev/null and b/train_image_folder/applauding_048.jpg differ diff --git a/train_image_folder/applauding_049.jpg b/train_image_folder/applauding_049.jpg new file mode 100644 index 000000000..6e344ab78 Binary files /dev/null and b/train_image_folder/applauding_049.jpg differ diff --git a/train_image_folder/applauding_050.jpg b/train_image_folder/applauding_050.jpg new file mode 100644 index 000000000..9148d152e Binary files /dev/null and b/train_image_folder/applauding_050.jpg differ diff --git a/train_image_folder/applauding_051.jpg b/train_image_folder/applauding_051.jpg new file mode 100644 index 000000000..6e9571955 Binary files /dev/null and b/train_image_folder/applauding_051.jpg differ diff --git a/train_image_folder/applauding_052.jpg b/train_image_folder/applauding_052.jpg new file mode 100644 index 000000000..db95cdc0a Binary files /dev/null and b/train_image_folder/applauding_052.jpg differ diff --git a/train_image_folder/applauding_053.jpg b/train_image_folder/applauding_053.jpg new file mode 100644 index 000000000..c55497466 Binary files /dev/null and b/train_image_folder/applauding_053.jpg differ diff --git a/train_image_folder/applauding_054.jpg b/train_image_folder/applauding_054.jpg new file mode 100644 index 000000000..504fd81f7 Binary files /dev/null and b/train_image_folder/applauding_054.jpg differ diff --git a/train_image_folder/applauding_055.jpg b/train_image_folder/applauding_055.jpg new file mode 100644 index 000000000..4de4e78f3 Binary files /dev/null and b/train_image_folder/applauding_055.jpg differ diff --git a/train_image_folder/applauding_056.jpg b/train_image_folder/applauding_056.jpg new file mode 100644 index 000000000..51d8edf46 Binary files /dev/null and b/train_image_folder/applauding_056.jpg differ diff --git a/train_image_folder/applauding_057.jpg b/train_image_folder/applauding_057.jpg new file mode 100644 index 000000000..9c5194c9e Binary files /dev/null and b/train_image_folder/applauding_057.jpg differ diff --git a/train_image_folder/applauding_058.jpg b/train_image_folder/applauding_058.jpg new file mode 100644 index 000000000..ae1dd69f4 Binary files /dev/null and b/train_image_folder/applauding_058.jpg differ diff --git a/train_image_folder/applauding_059.jpg b/train_image_folder/applauding_059.jpg new file mode 100644 index 000000000..deaeddd00 Binary files /dev/null and b/train_image_folder/applauding_059.jpg differ diff --git a/train_image_folder/applauding_060.jpg b/train_image_folder/applauding_060.jpg new file mode 100644 index 000000000..7ba0cfdbf Binary files /dev/null and b/train_image_folder/applauding_060.jpg differ diff --git a/train_image_folder/applauding_061.jpg b/train_image_folder/applauding_061.jpg new file mode 100644 index 000000000..58c2661ce Binary files /dev/null and b/train_image_folder/applauding_061.jpg differ diff --git a/train_image_folder/applauding_062.jpg b/train_image_folder/applauding_062.jpg new file mode 100644 index 000000000..a2f668fc2 Binary files /dev/null and b/train_image_folder/applauding_062.jpg differ diff --git a/train_image_folder/applauding_063.jpg b/train_image_folder/applauding_063.jpg new file mode 100644 index 000000000..436df96a4 Binary files /dev/null and b/train_image_folder/applauding_063.jpg differ diff --git a/train_image_folder/applauding_064.jpg b/train_image_folder/applauding_064.jpg new file mode 100644 index 000000000..4f2f57224 Binary files /dev/null and b/train_image_folder/applauding_064.jpg differ diff --git a/train_image_folder/applauding_065.jpg b/train_image_folder/applauding_065.jpg new file mode 100644 index 000000000..ff4824595 Binary files /dev/null and b/train_image_folder/applauding_065.jpg differ diff --git a/train_image_folder/applauding_066.jpg b/train_image_folder/applauding_066.jpg new file mode 100644 index 000000000..176711c1b Binary files /dev/null and b/train_image_folder/applauding_066.jpg differ diff --git a/train_image_folder/applauding_067.jpg b/train_image_folder/applauding_067.jpg new file mode 100644 index 000000000..8f915fa08 Binary files /dev/null and b/train_image_folder/applauding_067.jpg differ diff --git a/train_image_folder/applauding_068.jpg b/train_image_folder/applauding_068.jpg new file mode 100644 index 000000000..a63a3c110 Binary files /dev/null and b/train_image_folder/applauding_068.jpg differ diff --git a/train_image_folder/applauding_069.jpg b/train_image_folder/applauding_069.jpg new file mode 100644 index 000000000..d6a8b59c7 Binary files /dev/null and b/train_image_folder/applauding_069.jpg differ diff --git a/train_image_folder/applauding_070.jpg b/train_image_folder/applauding_070.jpg new file mode 100644 index 000000000..38fad76cf Binary files /dev/null and b/train_image_folder/applauding_070.jpg differ diff --git a/train_image_folder/applauding_071.jpg b/train_image_folder/applauding_071.jpg new file mode 100644 index 000000000..ea69eb98b Binary files /dev/null and b/train_image_folder/applauding_071.jpg differ diff --git a/train_image_folder/applauding_072.jpg b/train_image_folder/applauding_072.jpg new file mode 100644 index 000000000..066a325ae Binary files /dev/null and b/train_image_folder/applauding_072.jpg differ diff --git a/train_image_folder/applauding_073.jpg b/train_image_folder/applauding_073.jpg new file mode 100644 index 000000000..9f54595be Binary files /dev/null and b/train_image_folder/applauding_073.jpg differ diff --git a/train_image_folder/applauding_074.jpg b/train_image_folder/applauding_074.jpg new file mode 100644 index 000000000..24fe0754f Binary files /dev/null and b/train_image_folder/applauding_074.jpg differ diff --git a/train_image_folder/applauding_075.jpg b/train_image_folder/applauding_075.jpg new file mode 100644 index 000000000..d84208ffe Binary files /dev/null and b/train_image_folder/applauding_075.jpg differ diff --git a/train_image_folder/applauding_076.jpg b/train_image_folder/applauding_076.jpg new file mode 100644 index 000000000..eca4f7f65 Binary files /dev/null and b/train_image_folder/applauding_076.jpg differ diff --git a/train_image_folder/applauding_077.jpg b/train_image_folder/applauding_077.jpg new file mode 100644 index 000000000..80b340d93 Binary files /dev/null and b/train_image_folder/applauding_077.jpg differ diff --git a/train_image_folder/applauding_078.jpg b/train_image_folder/applauding_078.jpg new file mode 100644 index 000000000..4e1cac234 Binary files /dev/null and b/train_image_folder/applauding_078.jpg differ diff --git a/train_image_folder/applauding_079.jpg b/train_image_folder/applauding_079.jpg new file mode 100644 index 000000000..8354c80d0 Binary files /dev/null and b/train_image_folder/applauding_079.jpg differ diff --git a/train_image_folder/applauding_080.jpg b/train_image_folder/applauding_080.jpg new file mode 100644 index 000000000..052c06614 Binary files /dev/null and b/train_image_folder/applauding_080.jpg differ diff --git a/train_image_folder/applauding_081.jpg b/train_image_folder/applauding_081.jpg new file mode 100644 index 000000000..4f8d52f17 Binary files /dev/null and b/train_image_folder/applauding_081.jpg differ diff --git a/train_image_folder/applauding_082.jpg b/train_image_folder/applauding_082.jpg new file mode 100644 index 000000000..7de2d005f Binary files /dev/null and b/train_image_folder/applauding_082.jpg differ diff --git a/train_image_folder/applauding_083.jpg b/train_image_folder/applauding_083.jpg new file mode 100644 index 000000000..e0ff75b0d Binary files /dev/null and b/train_image_folder/applauding_083.jpg differ diff --git a/train_image_folder/applauding_084.jpg b/train_image_folder/applauding_084.jpg new file mode 100644 index 000000000..8eed57414 Binary files /dev/null and b/train_image_folder/applauding_084.jpg differ diff --git a/train_image_folder/applauding_085.jpg b/train_image_folder/applauding_085.jpg new file mode 100644 index 000000000..4a24894b7 Binary files /dev/null and b/train_image_folder/applauding_085.jpg differ diff --git a/train_image_folder/applauding_086.jpg b/train_image_folder/applauding_086.jpg new file mode 100644 index 000000000..177314d7c Binary files /dev/null and b/train_image_folder/applauding_086.jpg differ diff --git a/train_image_folder/applauding_087.jpg b/train_image_folder/applauding_087.jpg new file mode 100644 index 000000000..aa55986a7 Binary files /dev/null and b/train_image_folder/applauding_087.jpg differ diff --git a/train_image_folder/applauding_088.jpg b/train_image_folder/applauding_088.jpg new file mode 100644 index 000000000..5a8f74963 Binary files /dev/null and b/train_image_folder/applauding_088.jpg differ diff --git a/train_image_folder/applauding_089.jpg b/train_image_folder/applauding_089.jpg new file mode 100644 index 000000000..59aa167b7 Binary files /dev/null and b/train_image_folder/applauding_089.jpg differ diff --git a/train_image_folder/applauding_090.jpg b/train_image_folder/applauding_090.jpg new file mode 100644 index 000000000..56de81d3a Binary files /dev/null and b/train_image_folder/applauding_090.jpg differ diff --git a/train_image_folder/applauding_091.jpg b/train_image_folder/applauding_091.jpg new file mode 100644 index 000000000..ad90f4474 Binary files /dev/null and b/train_image_folder/applauding_091.jpg differ diff --git a/train_image_folder/applauding_093.jpg b/train_image_folder/applauding_093.jpg new file mode 100644 index 000000000..7cbe48820 Binary files /dev/null and b/train_image_folder/applauding_093.jpg differ diff --git a/train_image_folder/applauding_094.jpg b/train_image_folder/applauding_094.jpg new file mode 100644 index 000000000..9fc507757 Binary files /dev/null and b/train_image_folder/applauding_094.jpg differ diff --git a/train_image_folder/applauding_095.jpg b/train_image_folder/applauding_095.jpg new file mode 100644 index 000000000..6f52a3ca9 Binary files /dev/null and b/train_image_folder/applauding_095.jpg differ diff --git a/train_image_folder/applauding_096.jpg b/train_image_folder/applauding_096.jpg new file mode 100644 index 000000000..c536b583a Binary files /dev/null and b/train_image_folder/applauding_096.jpg differ diff --git a/train_image_folder/applauding_097.jpg b/train_image_folder/applauding_097.jpg new file mode 100644 index 000000000..7e5a8260d Binary files /dev/null and b/train_image_folder/applauding_097.jpg differ diff --git a/train_image_folder/applauding_098.jpg b/train_image_folder/applauding_098.jpg new file mode 100644 index 000000000..c6289ed39 Binary files /dev/null and b/train_image_folder/applauding_098.jpg differ diff --git a/train_image_folder/applauding_099.jpg b/train_image_folder/applauding_099.jpg new file mode 100644 index 000000000..ce82a8a4d Binary files /dev/null and b/train_image_folder/applauding_099.jpg differ diff --git a/train_image_folder/applauding_100.jpg b/train_image_folder/applauding_100.jpg new file mode 100644 index 000000000..f7d862981 Binary files /dev/null and b/train_image_folder/applauding_100.jpg differ diff --git a/train_image_folder/applauding_101.jpg b/train_image_folder/applauding_101.jpg new file mode 100644 index 000000000..0646f69f4 Binary files /dev/null and b/train_image_folder/applauding_101.jpg differ diff --git a/train_image_folder/applauding_102.jpg b/train_image_folder/applauding_102.jpg new file mode 100644 index 000000000..a11029356 Binary files /dev/null and b/train_image_folder/applauding_102.jpg differ diff --git a/train_image_folder/applauding_103.jpg b/train_image_folder/applauding_103.jpg new file mode 100644 index 000000000..da9fb78f6 Binary files /dev/null and b/train_image_folder/applauding_103.jpg differ diff --git a/train_image_folder/applauding_104.jpg b/train_image_folder/applauding_104.jpg new file mode 100644 index 000000000..e2b8e3ca1 Binary files /dev/null and b/train_image_folder/applauding_104.jpg differ diff --git a/train_image_folder/applauding_105.jpg b/train_image_folder/applauding_105.jpg new file mode 100644 index 000000000..bea999229 Binary files /dev/null and b/train_image_folder/applauding_105.jpg differ diff --git a/train_image_folder/applauding_106.jpg b/train_image_folder/applauding_106.jpg new file mode 100644 index 000000000..2da1fd0a4 Binary files /dev/null and b/train_image_folder/applauding_106.jpg differ diff --git a/train_image_folder/applauding_107.jpg b/train_image_folder/applauding_107.jpg new file mode 100644 index 000000000..916b137c5 Binary files /dev/null and b/train_image_folder/applauding_107.jpg differ diff --git a/train_image_folder/applauding_108.jpg b/train_image_folder/applauding_108.jpg new file mode 100644 index 000000000..0a931518e Binary files /dev/null and b/train_image_folder/applauding_108.jpg differ diff --git a/train_image_folder/applauding_109.jpg b/train_image_folder/applauding_109.jpg new file mode 100644 index 000000000..9d54bd07c Binary files /dev/null and b/train_image_folder/applauding_109.jpg differ diff --git a/train_image_folder/applauding_110.jpg b/train_image_folder/applauding_110.jpg new file mode 100644 index 000000000..a562f2ce2 Binary files /dev/null and b/train_image_folder/applauding_110.jpg differ diff --git a/train_image_folder/applauding_111.jpg b/train_image_folder/applauding_111.jpg new file mode 100644 index 000000000..cb0e39e6c Binary files /dev/null and b/train_image_folder/applauding_111.jpg differ diff --git a/train_image_folder/applauding_112.jpg b/train_image_folder/applauding_112.jpg new file mode 100644 index 000000000..e84086039 Binary files /dev/null and b/train_image_folder/applauding_112.jpg differ diff --git a/train_image_folder/applauding_113.jpg b/train_image_folder/applauding_113.jpg new file mode 100644 index 000000000..e8afe67e8 Binary files /dev/null and b/train_image_folder/applauding_113.jpg differ diff --git a/train_image_folder/applauding_114.jpg b/train_image_folder/applauding_114.jpg new file mode 100644 index 000000000..84867c9d6 Binary files /dev/null and b/train_image_folder/applauding_114.jpg differ diff --git a/train_image_folder/applauding_115.jpg b/train_image_folder/applauding_115.jpg new file mode 100644 index 000000000..9431a34a9 Binary files /dev/null and b/train_image_folder/applauding_115.jpg differ diff --git a/train_image_folder/applauding_116.jpg b/train_image_folder/applauding_116.jpg new file mode 100644 index 000000000..cab001ac9 Binary files /dev/null and b/train_image_folder/applauding_116.jpg differ diff --git a/train_image_folder/applauding_117.jpg b/train_image_folder/applauding_117.jpg new file mode 100644 index 000000000..89e311041 Binary files /dev/null and b/train_image_folder/applauding_117.jpg differ diff --git a/train_image_folder/applauding_118.jpg b/train_image_folder/applauding_118.jpg new file mode 100644 index 000000000..459ecfa2d Binary files /dev/null and b/train_image_folder/applauding_118.jpg differ diff --git a/train_image_folder/applauding_120.jpg b/train_image_folder/applauding_120.jpg new file mode 100644 index 000000000..713d79618 Binary files /dev/null and b/train_image_folder/applauding_120.jpg differ diff --git a/train_image_folder/applauding_121.jpg b/train_image_folder/applauding_121.jpg new file mode 100644 index 000000000..6a2cd34c6 Binary files /dev/null and b/train_image_folder/applauding_121.jpg differ diff --git a/train_image_folder/applauding_122.jpg b/train_image_folder/applauding_122.jpg new file mode 100644 index 000000000..d132486e1 Binary files /dev/null and b/train_image_folder/applauding_122.jpg differ diff --git a/train_image_folder/applauding_123.jpg b/train_image_folder/applauding_123.jpg new file mode 100644 index 000000000..13d66aa4d Binary files /dev/null and b/train_image_folder/applauding_123.jpg differ diff --git a/train_image_folder/applauding_124.jpg b/train_image_folder/applauding_124.jpg new file mode 100644 index 000000000..3bfd652ab Binary files /dev/null and b/train_image_folder/applauding_124.jpg differ diff --git a/train_image_folder/applauding_125.jpg b/train_image_folder/applauding_125.jpg new file mode 100644 index 000000000..adf434ab0 Binary files /dev/null and b/train_image_folder/applauding_125.jpg differ diff --git a/train_image_folder/applauding_126.jpg b/train_image_folder/applauding_126.jpg new file mode 100644 index 000000000..5f5e6efa6 Binary files /dev/null and b/train_image_folder/applauding_126.jpg differ diff --git a/train_image_folder/applauding_127.jpg b/train_image_folder/applauding_127.jpg new file mode 100644 index 000000000..d83ee7cce Binary files /dev/null and b/train_image_folder/applauding_127.jpg differ diff --git a/train_image_folder/applauding_128.jpg b/train_image_folder/applauding_128.jpg new file mode 100644 index 000000000..483a32199 Binary files /dev/null and b/train_image_folder/applauding_128.jpg differ diff --git a/train_image_folder/applauding_129.jpg b/train_image_folder/applauding_129.jpg new file mode 100644 index 000000000..9d7f97022 Binary files /dev/null and b/train_image_folder/applauding_129.jpg differ diff --git a/train_image_folder/applauding_130.jpg b/train_image_folder/applauding_130.jpg new file mode 100644 index 000000000..0c7a8fef3 Binary files /dev/null and b/train_image_folder/applauding_130.jpg differ diff --git a/train_image_folder/applauding_132.jpg b/train_image_folder/applauding_132.jpg new file mode 100644 index 000000000..a9399a58e Binary files /dev/null and b/train_image_folder/applauding_132.jpg differ diff --git a/train_image_folder/applauding_133.jpg b/train_image_folder/applauding_133.jpg new file mode 100644 index 000000000..fd05c9b6e Binary files /dev/null and b/train_image_folder/applauding_133.jpg differ diff --git a/train_image_folder/applauding_134.jpg b/train_image_folder/applauding_134.jpg new file mode 100644 index 000000000..23b450999 Binary files /dev/null and b/train_image_folder/applauding_134.jpg differ diff --git a/train_image_folder/applauding_135.jpg b/train_image_folder/applauding_135.jpg new file mode 100644 index 000000000..57059ace0 Binary files /dev/null and b/train_image_folder/applauding_135.jpg differ diff --git a/train_image_folder/applauding_136.jpg b/train_image_folder/applauding_136.jpg new file mode 100644 index 000000000..f31e3c664 Binary files /dev/null and b/train_image_folder/applauding_136.jpg differ diff --git a/train_image_folder/applauding_138.jpg b/train_image_folder/applauding_138.jpg new file mode 100644 index 000000000..f2ff38806 Binary files /dev/null and b/train_image_folder/applauding_138.jpg differ diff --git a/train_image_folder/applauding_139.jpg b/train_image_folder/applauding_139.jpg new file mode 100644 index 000000000..7b49ab8be Binary files /dev/null and b/train_image_folder/applauding_139.jpg differ diff --git a/train_image_folder/applauding_142.jpg b/train_image_folder/applauding_142.jpg new file mode 100644 index 000000000..404a31038 Binary files /dev/null and b/train_image_folder/applauding_142.jpg differ diff --git a/train_image_folder/applauding_143.jpg b/train_image_folder/applauding_143.jpg new file mode 100644 index 000000000..31c4820ce Binary files /dev/null and b/train_image_folder/applauding_143.jpg differ diff --git a/train_image_folder/applauding_144.jpg b/train_image_folder/applauding_144.jpg new file mode 100644 index 000000000..4af90a74d Binary files /dev/null and b/train_image_folder/applauding_144.jpg differ diff --git a/train_image_folder/applauding_151.jpg b/train_image_folder/applauding_151.jpg new file mode 100644 index 000000000..7515bcc82 Binary files /dev/null and b/train_image_folder/applauding_151.jpg differ diff --git a/train_image_folder/applauding_152.jpg b/train_image_folder/applauding_152.jpg new file mode 100644 index 000000000..28d3ea387 Binary files /dev/null and b/train_image_folder/applauding_152.jpg differ diff --git a/train_image_folder/applauding_153.jpg b/train_image_folder/applauding_153.jpg new file mode 100644 index 000000000..01122a3be Binary files /dev/null and b/train_image_folder/applauding_153.jpg differ diff --git a/train_image_folder/applauding_154.jpg b/train_image_folder/applauding_154.jpg new file mode 100644 index 000000000..dc733c802 Binary files /dev/null and b/train_image_folder/applauding_154.jpg differ diff --git a/train_image_folder/applauding_155.jpg b/train_image_folder/applauding_155.jpg new file mode 100644 index 000000000..9d919828d Binary files /dev/null and b/train_image_folder/applauding_155.jpg differ diff --git a/train_image_folder/applauding_156.jpg b/train_image_folder/applauding_156.jpg new file mode 100644 index 000000000..fffe69759 Binary files /dev/null and b/train_image_folder/applauding_156.jpg differ diff --git a/train_image_folder/applauding_158.jpg b/train_image_folder/applauding_158.jpg new file mode 100644 index 000000000..44ab893d1 Binary files /dev/null and b/train_image_folder/applauding_158.jpg differ diff --git a/train_image_folder/applauding_159.jpg b/train_image_folder/applauding_159.jpg new file mode 100644 index 000000000..8377da83d Binary files /dev/null and b/train_image_folder/applauding_159.jpg differ diff --git a/train_image_folder/applauding_160.jpg b/train_image_folder/applauding_160.jpg new file mode 100644 index 000000000..0dc1279b3 Binary files /dev/null and b/train_image_folder/applauding_160.jpg differ diff --git a/train_image_folder/applauding_162.jpg b/train_image_folder/applauding_162.jpg new file mode 100644 index 000000000..d1b21b7c5 Binary files /dev/null and b/train_image_folder/applauding_162.jpg differ diff --git a/train_image_folder/applauding_163.jpg b/train_image_folder/applauding_163.jpg new file mode 100644 index 000000000..f709e87a9 Binary files /dev/null and b/train_image_folder/applauding_163.jpg differ diff --git a/train_image_folder/applauding_169.jpg b/train_image_folder/applauding_169.jpg new file mode 100644 index 000000000..3a1ddf3b5 Binary files /dev/null and b/train_image_folder/applauding_169.jpg differ diff --git a/train_image_folder/applauding_170.jpg b/train_image_folder/applauding_170.jpg new file mode 100644 index 000000000..d3a571607 Binary files /dev/null and b/train_image_folder/applauding_170.jpg differ diff --git a/train_image_folder/applauding_171.jpg b/train_image_folder/applauding_171.jpg new file mode 100644 index 000000000..62a38294f Binary files /dev/null and b/train_image_folder/applauding_171.jpg differ diff --git a/train_image_folder/applauding_172.jpg b/train_image_folder/applauding_172.jpg new file mode 100644 index 000000000..d392c5333 Binary files /dev/null and b/train_image_folder/applauding_172.jpg differ diff --git a/train_image_folder/applauding_173.jpg b/train_image_folder/applauding_173.jpg new file mode 100644 index 000000000..fbb663b68 Binary files /dev/null and b/train_image_folder/applauding_173.jpg differ diff --git a/train_image_folder/applauding_176.jpg b/train_image_folder/applauding_176.jpg new file mode 100644 index 000000000..a15d3db01 Binary files /dev/null and b/train_image_folder/applauding_176.jpg differ diff --git a/train_image_folder/applauding_177.jpg b/train_image_folder/applauding_177.jpg new file mode 100644 index 000000000..e550e79f3 Binary files /dev/null and b/train_image_folder/applauding_177.jpg differ diff --git a/train_image_folder/applauding_178.jpg b/train_image_folder/applauding_178.jpg new file mode 100644 index 000000000..eb6266017 Binary files /dev/null and b/train_image_folder/applauding_178.jpg differ diff --git a/train_image_folder/applauding_179.jpg b/train_image_folder/applauding_179.jpg new file mode 100644 index 000000000..76336856f Binary files /dev/null and b/train_image_folder/applauding_179.jpg differ diff --git a/train_image_folder/applauding_181.jpg b/train_image_folder/applauding_181.jpg new file mode 100644 index 000000000..dc8834db0 Binary files /dev/null and b/train_image_folder/applauding_181.jpg differ diff --git a/train_image_folder/person_without_helmet (1).jpg b/train_image_folder/person_without_helmet (1).jpg new file mode 100644 index 000000000..fddeb241e Binary files /dev/null and b/train_image_folder/person_without_helmet (1).jpg differ diff --git a/train_image_folder/person_without_helmet (10).jpg b/train_image_folder/person_without_helmet (10).jpg new file mode 100644 index 000000000..5ca72a678 Binary files /dev/null and b/train_image_folder/person_without_helmet (10).jpg differ diff --git a/train_image_folder/person_without_helmet (100).jpg b/train_image_folder/person_without_helmet (100).jpg new file mode 100644 index 000000000..275345f7d Binary files /dev/null and b/train_image_folder/person_without_helmet (100).jpg differ diff --git a/train_image_folder/person_without_helmet (101).jpg b/train_image_folder/person_without_helmet (101).jpg new file mode 100644 index 000000000..1afdae622 Binary files /dev/null and b/train_image_folder/person_without_helmet (101).jpg differ diff --git a/train_image_folder/person_without_helmet (102).jpg b/train_image_folder/person_without_helmet (102).jpg new file mode 100644 index 000000000..8ebca3753 Binary files /dev/null and b/train_image_folder/person_without_helmet (102).jpg differ diff --git a/train_image_folder/person_without_helmet (103).jpg b/train_image_folder/person_without_helmet (103).jpg new file mode 100644 index 000000000..a38136c4e Binary files /dev/null and b/train_image_folder/person_without_helmet (103).jpg differ diff --git a/train_image_folder/person_without_helmet (104).jpg b/train_image_folder/person_without_helmet (104).jpg new file mode 100644 index 000000000..448630191 Binary files /dev/null and b/train_image_folder/person_without_helmet (104).jpg differ diff --git a/train_image_folder/person_without_helmet (105).jpg b/train_image_folder/person_without_helmet (105).jpg new file mode 100644 index 000000000..db040bfe3 Binary files /dev/null and b/train_image_folder/person_without_helmet (105).jpg differ diff --git a/train_image_folder/person_without_helmet (106).jpg b/train_image_folder/person_without_helmet (106).jpg new file mode 100644 index 000000000..ab7ae7590 Binary files /dev/null and b/train_image_folder/person_without_helmet (106).jpg differ diff --git a/train_image_folder/person_without_helmet (107).jpg b/train_image_folder/person_without_helmet (107).jpg new file mode 100644 index 000000000..53297753d Binary files /dev/null and b/train_image_folder/person_without_helmet (107).jpg differ diff --git a/train_image_folder/person_without_helmet (108).jpg b/train_image_folder/person_without_helmet (108).jpg new file mode 100644 index 000000000..963f8e58a Binary files /dev/null and b/train_image_folder/person_without_helmet (108).jpg differ diff --git a/train_image_folder/person_without_helmet (109).jpg b/train_image_folder/person_without_helmet (109).jpg new file mode 100644 index 000000000..6426536c9 Binary files /dev/null and b/train_image_folder/person_without_helmet (109).jpg differ diff --git a/train_image_folder/person_without_helmet (11).jpg b/train_image_folder/person_without_helmet (11).jpg new file mode 100644 index 000000000..8e98a0c3b Binary files /dev/null and b/train_image_folder/person_without_helmet (11).jpg differ diff --git a/train_image_folder/person_without_helmet (110).jpg b/train_image_folder/person_without_helmet (110).jpg new file mode 100644 index 000000000..9fcfb492e Binary files /dev/null and b/train_image_folder/person_without_helmet (110).jpg differ diff --git a/train_image_folder/person_without_helmet (111).jpg b/train_image_folder/person_without_helmet (111).jpg new file mode 100644 index 000000000..6b0e588af Binary files /dev/null and b/train_image_folder/person_without_helmet (111).jpg differ diff --git a/train_image_folder/person_without_helmet (112).jpg b/train_image_folder/person_without_helmet (112).jpg new file mode 100644 index 000000000..86ac34ffe Binary files /dev/null and b/train_image_folder/person_without_helmet (112).jpg differ diff --git a/train_image_folder/person_without_helmet (113).jpg b/train_image_folder/person_without_helmet (113).jpg new file mode 100644 index 000000000..73cf6dc8a Binary files /dev/null and b/train_image_folder/person_without_helmet (113).jpg differ diff --git a/train_image_folder/person_without_helmet (114).jpg b/train_image_folder/person_without_helmet (114).jpg new file mode 100644 index 000000000..93824f289 Binary files /dev/null and b/train_image_folder/person_without_helmet (114).jpg differ diff --git a/train_image_folder/person_without_helmet (115).jpg b/train_image_folder/person_without_helmet (115).jpg new file mode 100644 index 000000000..4b1ebac25 Binary files /dev/null and b/train_image_folder/person_without_helmet (115).jpg differ diff --git a/train_image_folder/person_without_helmet (116).jpg b/train_image_folder/person_without_helmet (116).jpg new file mode 100644 index 000000000..e3cd72c0e Binary files /dev/null and b/train_image_folder/person_without_helmet (116).jpg differ diff --git a/train_image_folder/person_without_helmet (117).jpg b/train_image_folder/person_without_helmet (117).jpg new file mode 100644 index 000000000..9db03378f Binary files /dev/null and b/train_image_folder/person_without_helmet (117).jpg differ diff --git a/train_image_folder/person_without_helmet (118).jpg b/train_image_folder/person_without_helmet (118).jpg new file mode 100644 index 000000000..ffd32c63f Binary files /dev/null and b/train_image_folder/person_without_helmet (118).jpg differ diff --git a/train_image_folder/person_without_helmet (119).jpg b/train_image_folder/person_without_helmet (119).jpg new file mode 100644 index 000000000..d578571b4 Binary files /dev/null and b/train_image_folder/person_without_helmet (119).jpg differ diff --git a/train_image_folder/person_without_helmet (12).jpg b/train_image_folder/person_without_helmet (12).jpg new file mode 100644 index 000000000..98f3ad924 Binary files /dev/null and b/train_image_folder/person_without_helmet (12).jpg differ diff --git a/train_image_folder/person_without_helmet (120).jpg b/train_image_folder/person_without_helmet (120).jpg new file mode 100644 index 000000000..8cad67e2f Binary files /dev/null and b/train_image_folder/person_without_helmet (120).jpg differ diff --git a/train_image_folder/person_without_helmet (121).jpg b/train_image_folder/person_without_helmet (121).jpg new file mode 100644 index 000000000..9c5f2452b Binary files /dev/null and b/train_image_folder/person_without_helmet (121).jpg differ diff --git a/train_image_folder/person_without_helmet (122).jpg b/train_image_folder/person_without_helmet (122).jpg new file mode 100644 index 000000000..586cc53d6 Binary files /dev/null and b/train_image_folder/person_without_helmet (122).jpg differ diff --git a/train_image_folder/person_without_helmet (123).jpg b/train_image_folder/person_without_helmet (123).jpg new file mode 100644 index 000000000..c31820694 Binary files /dev/null and b/train_image_folder/person_without_helmet (123).jpg differ diff --git a/train_image_folder/person_without_helmet (124).jpg b/train_image_folder/person_without_helmet (124).jpg new file mode 100644 index 000000000..8eb0b9b84 Binary files /dev/null and b/train_image_folder/person_without_helmet (124).jpg differ diff --git a/train_image_folder/person_without_helmet (126).jpg b/train_image_folder/person_without_helmet (126).jpg new file mode 100644 index 000000000..5b10bbf69 Binary files /dev/null and b/train_image_folder/person_without_helmet (126).jpg differ diff --git a/train_image_folder/person_without_helmet (127).jpg b/train_image_folder/person_without_helmet (127).jpg new file mode 100644 index 000000000..83b5f1400 Binary files /dev/null and b/train_image_folder/person_without_helmet (127).jpg differ diff --git a/train_image_folder/person_without_helmet (128).jpg b/train_image_folder/person_without_helmet (128).jpg new file mode 100644 index 000000000..55486e82f Binary files /dev/null and b/train_image_folder/person_without_helmet (128).jpg differ diff --git a/train_image_folder/person_without_helmet (129).jpg b/train_image_folder/person_without_helmet (129).jpg new file mode 100644 index 000000000..81941e592 Binary files /dev/null and b/train_image_folder/person_without_helmet (129).jpg differ diff --git a/train_image_folder/person_without_helmet (13).jpg b/train_image_folder/person_without_helmet (13).jpg new file mode 100644 index 000000000..92b97b389 Binary files /dev/null and b/train_image_folder/person_without_helmet (13).jpg differ diff --git a/train_image_folder/person_without_helmet (130).jpg b/train_image_folder/person_without_helmet (130).jpg new file mode 100644 index 000000000..2ea638a4e Binary files /dev/null and b/train_image_folder/person_without_helmet (130).jpg differ diff --git a/train_image_folder/person_without_helmet (131).jpg b/train_image_folder/person_without_helmet (131).jpg new file mode 100644 index 000000000..e2d15da93 Binary files /dev/null and b/train_image_folder/person_without_helmet (131).jpg differ diff --git a/train_image_folder/person_without_helmet (132).jpg b/train_image_folder/person_without_helmet (132).jpg new file mode 100644 index 000000000..bb5f5a7da Binary files /dev/null and b/train_image_folder/person_without_helmet (132).jpg differ diff --git a/train_image_folder/person_without_helmet (133).jpg b/train_image_folder/person_without_helmet (133).jpg new file mode 100644 index 000000000..317dbb8b7 Binary files /dev/null and b/train_image_folder/person_without_helmet (133).jpg differ diff --git a/train_image_folder/person_without_helmet (134).jpg b/train_image_folder/person_without_helmet (134).jpg new file mode 100644 index 000000000..9b7842584 Binary files /dev/null and b/train_image_folder/person_without_helmet (134).jpg differ diff --git a/train_image_folder/person_without_helmet (135).jpg b/train_image_folder/person_without_helmet (135).jpg new file mode 100644 index 000000000..737b15075 Binary files /dev/null and b/train_image_folder/person_without_helmet (135).jpg differ diff --git a/train_image_folder/person_without_helmet (136).jpg b/train_image_folder/person_without_helmet (136).jpg new file mode 100644 index 000000000..df00cb394 Binary files /dev/null and b/train_image_folder/person_without_helmet (136).jpg differ diff --git a/train_image_folder/person_without_helmet (137).jpg b/train_image_folder/person_without_helmet (137).jpg new file mode 100644 index 000000000..a1619f3b4 Binary files /dev/null and b/train_image_folder/person_without_helmet (137).jpg differ diff --git a/train_image_folder/person_without_helmet (138).jpg b/train_image_folder/person_without_helmet (138).jpg new file mode 100644 index 000000000..e84b44edd Binary files /dev/null and b/train_image_folder/person_without_helmet (138).jpg differ diff --git a/train_image_folder/person_without_helmet (139).jpg b/train_image_folder/person_without_helmet (139).jpg new file mode 100644 index 000000000..5a620488b Binary files /dev/null and b/train_image_folder/person_without_helmet (139).jpg differ diff --git a/train_image_folder/person_without_helmet (14).jpg b/train_image_folder/person_without_helmet (14).jpg new file mode 100644 index 000000000..930ae9d08 Binary files /dev/null and b/train_image_folder/person_without_helmet (14).jpg differ diff --git a/train_image_folder/person_without_helmet (140).jpg b/train_image_folder/person_without_helmet (140).jpg new file mode 100644 index 000000000..c8e5143bb Binary files /dev/null and b/train_image_folder/person_without_helmet (140).jpg differ diff --git a/train_image_folder/person_without_helmet (141).jpg b/train_image_folder/person_without_helmet (141).jpg new file mode 100644 index 000000000..0644e46a7 Binary files /dev/null and b/train_image_folder/person_without_helmet (141).jpg differ diff --git a/train_image_folder/person_without_helmet (142).jpg b/train_image_folder/person_without_helmet (142).jpg new file mode 100644 index 000000000..b684e6600 Binary files /dev/null and b/train_image_folder/person_without_helmet (142).jpg differ diff --git a/train_image_folder/person_without_helmet (143).jpg b/train_image_folder/person_without_helmet (143).jpg new file mode 100644 index 000000000..a60366d26 Binary files /dev/null and b/train_image_folder/person_without_helmet (143).jpg differ diff --git a/train_image_folder/person_without_helmet (144).jpg b/train_image_folder/person_without_helmet (144).jpg new file mode 100644 index 000000000..169e70614 Binary files /dev/null and b/train_image_folder/person_without_helmet (144).jpg differ diff --git a/train_image_folder/person_without_helmet (145).jpg b/train_image_folder/person_without_helmet (145).jpg new file mode 100644 index 000000000..bef1aa321 Binary files /dev/null and b/train_image_folder/person_without_helmet (145).jpg differ diff --git a/train_image_folder/person_without_helmet (146).jpg b/train_image_folder/person_without_helmet (146).jpg new file mode 100644 index 000000000..fc8de72e4 Binary files /dev/null and b/train_image_folder/person_without_helmet (146).jpg differ diff --git a/train_image_folder/person_without_helmet (147).jpg b/train_image_folder/person_without_helmet (147).jpg new file mode 100644 index 000000000..91f646e4c Binary files /dev/null and b/train_image_folder/person_without_helmet (147).jpg differ diff --git a/train_image_folder/person_without_helmet (148).jpg b/train_image_folder/person_without_helmet (148).jpg new file mode 100644 index 000000000..e3109a139 Binary files /dev/null and b/train_image_folder/person_without_helmet (148).jpg differ diff --git a/train_image_folder/person_without_helmet (149).jpg b/train_image_folder/person_without_helmet (149).jpg new file mode 100644 index 000000000..e623ab0b7 Binary files /dev/null and b/train_image_folder/person_without_helmet (149).jpg differ diff --git a/train_image_folder/person_without_helmet (155).jpg b/train_image_folder/person_without_helmet (155).jpg new file mode 100644 index 000000000..329acc527 Binary files /dev/null and b/train_image_folder/person_without_helmet (155).jpg differ diff --git a/train_image_folder/person_without_helmet (156).jpg b/train_image_folder/person_without_helmet (156).jpg new file mode 100644 index 000000000..f92dd5b4f Binary files /dev/null and b/train_image_folder/person_without_helmet (156).jpg differ diff --git a/train_image_folder/person_without_helmet (157).jpg b/train_image_folder/person_without_helmet (157).jpg new file mode 100644 index 000000000..171303a90 Binary files /dev/null and b/train_image_folder/person_without_helmet (157).jpg differ diff --git a/train_image_folder/person_without_helmet (158).jpg b/train_image_folder/person_without_helmet (158).jpg new file mode 100644 index 000000000..4810de814 Binary files /dev/null and b/train_image_folder/person_without_helmet (158).jpg differ diff --git a/train_image_folder/person_without_helmet (159).jpg b/train_image_folder/person_without_helmet (159).jpg new file mode 100644 index 000000000..232c85837 Binary files /dev/null and b/train_image_folder/person_without_helmet (159).jpg differ diff --git a/train_image_folder/person_without_helmet (160).jpg b/train_image_folder/person_without_helmet (160).jpg new file mode 100644 index 000000000..0fb2d1449 Binary files /dev/null and b/train_image_folder/person_without_helmet (160).jpg differ diff --git a/train_image_folder/person_without_helmet (161).jpg b/train_image_folder/person_without_helmet (161).jpg new file mode 100644 index 000000000..cce15c321 Binary files /dev/null and b/train_image_folder/person_without_helmet (161).jpg differ diff --git a/train_image_folder/person_without_helmet (162).jpg b/train_image_folder/person_without_helmet (162).jpg new file mode 100644 index 000000000..6b8878a34 Binary files /dev/null and b/train_image_folder/person_without_helmet (162).jpg differ diff --git a/train_image_folder/person_without_helmet (163).jpg b/train_image_folder/person_without_helmet (163).jpg new file mode 100644 index 000000000..078d64d39 Binary files /dev/null and b/train_image_folder/person_without_helmet (163).jpg differ diff --git a/train_image_folder/person_without_helmet (164).jpg b/train_image_folder/person_without_helmet (164).jpg new file mode 100644 index 000000000..30cb219b6 Binary files /dev/null and b/train_image_folder/person_without_helmet (164).jpg differ diff --git a/train_image_folder/person_without_helmet (165).jpg b/train_image_folder/person_without_helmet (165).jpg new file mode 100644 index 000000000..1623273ee Binary files /dev/null and b/train_image_folder/person_without_helmet (165).jpg differ diff --git a/train_image_folder/person_without_helmet (166).jpg b/train_image_folder/person_without_helmet (166).jpg new file mode 100644 index 000000000..2facafb7f Binary files /dev/null and b/train_image_folder/person_without_helmet (166).jpg differ diff --git a/train_image_folder/person_without_helmet (167).jpg b/train_image_folder/person_without_helmet (167).jpg new file mode 100644 index 000000000..3347c5a40 Binary files /dev/null and b/train_image_folder/person_without_helmet (167).jpg differ diff --git a/train_image_folder/person_without_helmet (168).jpg b/train_image_folder/person_without_helmet (168).jpg new file mode 100644 index 000000000..433c211a5 Binary files /dev/null and b/train_image_folder/person_without_helmet (168).jpg differ diff --git a/train_image_folder/person_without_helmet (169).jpg b/train_image_folder/person_without_helmet (169).jpg new file mode 100644 index 000000000..3e5bdb1ea Binary files /dev/null and b/train_image_folder/person_without_helmet (169).jpg differ diff --git a/train_image_folder/person_without_helmet (170).jpg b/train_image_folder/person_without_helmet (170).jpg new file mode 100644 index 000000000..0c1d7e6d9 Binary files /dev/null and b/train_image_folder/person_without_helmet (170).jpg differ diff --git a/train_image_folder/person_without_helmet (171).jpg b/train_image_folder/person_without_helmet (171).jpg new file mode 100644 index 000000000..9b64e97bf Binary files /dev/null and b/train_image_folder/person_without_helmet (171).jpg differ diff --git a/train_image_folder/person_without_helmet (172).jpg b/train_image_folder/person_without_helmet (172).jpg new file mode 100644 index 000000000..40432f630 Binary files /dev/null and b/train_image_folder/person_without_helmet (172).jpg differ diff --git a/train_image_folder/person_without_helmet (173).jpg b/train_image_folder/person_without_helmet (173).jpg new file mode 100644 index 000000000..453091de8 Binary files /dev/null and b/train_image_folder/person_without_helmet (173).jpg differ diff --git a/train_image_folder/person_without_helmet (174).jpg b/train_image_folder/person_without_helmet (174).jpg new file mode 100644 index 000000000..3ed6b38f7 Binary files /dev/null and b/train_image_folder/person_without_helmet (174).jpg differ diff --git a/train_image_folder/person_without_helmet (175).jpg b/train_image_folder/person_without_helmet (175).jpg new file mode 100644 index 000000000..1ccddc891 Binary files /dev/null and b/train_image_folder/person_without_helmet (175).jpg differ diff --git a/train_image_folder/person_without_helmet (176).jpg b/train_image_folder/person_without_helmet (176).jpg new file mode 100644 index 000000000..a2d8ddd9b Binary files /dev/null and b/train_image_folder/person_without_helmet (176).jpg differ diff --git a/train_image_folder/person_without_helmet (177).jpg b/train_image_folder/person_without_helmet (177).jpg new file mode 100644 index 000000000..7af50c9d2 Binary files /dev/null and b/train_image_folder/person_without_helmet (177).jpg differ diff --git a/train_image_folder/person_without_helmet (180).jpg b/train_image_folder/person_without_helmet (180).jpg new file mode 100644 index 000000000..6421045de Binary files /dev/null and b/train_image_folder/person_without_helmet (180).jpg differ diff --git a/train_image_folder/person_without_helmet (181).jpg b/train_image_folder/person_without_helmet (181).jpg new file mode 100644 index 000000000..5f4fcff6f Binary files /dev/null and b/train_image_folder/person_without_helmet (181).jpg differ diff --git a/train_image_folder/person_without_helmet (182).jpg b/train_image_folder/person_without_helmet (182).jpg new file mode 100644 index 000000000..f9997149a Binary files /dev/null and b/train_image_folder/person_without_helmet (182).jpg differ diff --git a/train_image_folder/person_without_helmet (183).jpg b/train_image_folder/person_without_helmet (183).jpg new file mode 100644 index 000000000..bb0e28953 Binary files /dev/null and b/train_image_folder/person_without_helmet (183).jpg differ diff --git a/train_image_folder/person_without_helmet (184).jpg b/train_image_folder/person_without_helmet (184).jpg new file mode 100644 index 000000000..dda37a155 Binary files /dev/null and b/train_image_folder/person_without_helmet (184).jpg differ diff --git a/train_image_folder/person_without_helmet (185).jpg b/train_image_folder/person_without_helmet (185).jpg new file mode 100644 index 000000000..8db7289fe Binary files /dev/null and b/train_image_folder/person_without_helmet (185).jpg differ diff --git a/train_image_folder/person_without_helmet (186).jpg b/train_image_folder/person_without_helmet (186).jpg new file mode 100644 index 000000000..d7dc94e3e Binary files /dev/null and b/train_image_folder/person_without_helmet (186).jpg differ diff --git a/train_image_folder/person_without_helmet (187).jpg b/train_image_folder/person_without_helmet (187).jpg new file mode 100644 index 000000000..bb010368c Binary files /dev/null and b/train_image_folder/person_without_helmet (187).jpg differ diff --git a/train_image_folder/person_without_helmet (188).jpg b/train_image_folder/person_without_helmet (188).jpg new file mode 100644 index 000000000..b4d392b15 Binary files /dev/null and b/train_image_folder/person_without_helmet (188).jpg differ diff --git a/train_image_folder/person_without_helmet (189).jpg b/train_image_folder/person_without_helmet (189).jpg new file mode 100644 index 000000000..b6c118eba Binary files /dev/null and b/train_image_folder/person_without_helmet (189).jpg differ diff --git a/train_image_folder/person_without_helmet (190).jpg b/train_image_folder/person_without_helmet (190).jpg new file mode 100644 index 000000000..33c3009f1 Binary files /dev/null and b/train_image_folder/person_without_helmet (190).jpg differ diff --git a/train_image_folder/person_without_helmet (191).jpg b/train_image_folder/person_without_helmet (191).jpg new file mode 100644 index 000000000..d468f5514 Binary files /dev/null and b/train_image_folder/person_without_helmet (191).jpg differ diff --git a/train_image_folder/person_without_helmet (192).jpg b/train_image_folder/person_without_helmet (192).jpg new file mode 100644 index 000000000..6733d08f3 Binary files /dev/null and b/train_image_folder/person_without_helmet (192).jpg differ diff --git a/train_image_folder/person_without_helmet (193).jpg b/train_image_folder/person_without_helmet (193).jpg new file mode 100644 index 000000000..1f4fd01be Binary files /dev/null and b/train_image_folder/person_without_helmet (193).jpg differ diff --git a/train_image_folder/person_without_helmet (194).jpg b/train_image_folder/person_without_helmet (194).jpg new file mode 100644 index 000000000..b473454ae Binary files /dev/null and b/train_image_folder/person_without_helmet (194).jpg differ diff --git a/train_image_folder/person_without_helmet (195).jpg b/train_image_folder/person_without_helmet (195).jpg new file mode 100644 index 000000000..ebc304d19 Binary files /dev/null and b/train_image_folder/person_without_helmet (195).jpg differ diff --git a/train_image_folder/person_without_helmet (196).jpg b/train_image_folder/person_without_helmet (196).jpg new file mode 100644 index 000000000..01d6c8826 Binary files /dev/null and b/train_image_folder/person_without_helmet (196).jpg differ diff --git a/train_image_folder/person_without_helmet (197).jpg b/train_image_folder/person_without_helmet (197).jpg new file mode 100644 index 000000000..54c6afeec Binary files /dev/null and b/train_image_folder/person_without_helmet (197).jpg differ diff --git a/train_image_folder/person_without_helmet (198).jpg b/train_image_folder/person_without_helmet (198).jpg new file mode 100644 index 000000000..131bedc13 Binary files /dev/null and b/train_image_folder/person_without_helmet (198).jpg differ diff --git a/train_image_folder/person_without_helmet (199).jpg b/train_image_folder/person_without_helmet (199).jpg new file mode 100644 index 000000000..b72a00410 Binary files /dev/null and b/train_image_folder/person_without_helmet (199).jpg differ diff --git a/train_image_folder/person_without_helmet (200).jpg b/train_image_folder/person_without_helmet (200).jpg new file mode 100644 index 000000000..5ed4dd4a9 Binary files /dev/null and b/train_image_folder/person_without_helmet (200).jpg differ diff --git a/train_image_folder/person_without_helmet (201).jpg b/train_image_folder/person_without_helmet (201).jpg new file mode 100644 index 000000000..7b12c4b40 Binary files /dev/null and b/train_image_folder/person_without_helmet (201).jpg differ diff --git a/train_image_folder/person_without_helmet (202).jpg b/train_image_folder/person_without_helmet (202).jpg new file mode 100644 index 000000000..76df805cb Binary files /dev/null and b/train_image_folder/person_without_helmet (202).jpg differ diff --git a/train_image_folder/person_without_helmet (203).jpg b/train_image_folder/person_without_helmet (203).jpg new file mode 100644 index 000000000..c9ea6dd23 Binary files /dev/null and b/train_image_folder/person_without_helmet (203).jpg differ diff --git a/train_image_folder/person_without_helmet (204).jpg b/train_image_folder/person_without_helmet (204).jpg new file mode 100644 index 000000000..34ccfce8a Binary files /dev/null and b/train_image_folder/person_without_helmet (204).jpg differ diff --git a/train_image_folder/person_without_helmet (205).jpg b/train_image_folder/person_without_helmet (205).jpg new file mode 100644 index 000000000..8c35fd017 Binary files /dev/null and b/train_image_folder/person_without_helmet (205).jpg differ diff --git a/train_image_folder/person_without_helmet (206).jpg b/train_image_folder/person_without_helmet (206).jpg new file mode 100644 index 000000000..7a95fb9ba Binary files /dev/null and b/train_image_folder/person_without_helmet (206).jpg differ diff --git a/train_image_folder/person_without_helmet (207).jpg b/train_image_folder/person_without_helmet (207).jpg new file mode 100644 index 000000000..ac079f0a1 Binary files /dev/null and b/train_image_folder/person_without_helmet (207).jpg differ diff --git a/train_image_folder/person_without_helmet (208).jpg b/train_image_folder/person_without_helmet (208).jpg new file mode 100644 index 000000000..18b2b7eb0 Binary files /dev/null and b/train_image_folder/person_without_helmet (208).jpg differ diff --git a/train_image_folder/person_without_helmet (209).jpg b/train_image_folder/person_without_helmet (209).jpg new file mode 100644 index 000000000..2a3adec1f Binary files /dev/null and b/train_image_folder/person_without_helmet (209).jpg differ diff --git a/train_image_folder/person_without_helmet (210).jpg b/train_image_folder/person_without_helmet (210).jpg new file mode 100644 index 000000000..941d094d8 Binary files /dev/null and b/train_image_folder/person_without_helmet (210).jpg differ diff --git a/train_image_folder/person_without_helmet (211).jpg b/train_image_folder/person_without_helmet (211).jpg new file mode 100644 index 000000000..efdef16c3 Binary files /dev/null and b/train_image_folder/person_without_helmet (211).jpg differ diff --git a/train_image_folder/person_without_helmet (212).jpg b/train_image_folder/person_without_helmet (212).jpg new file mode 100644 index 000000000..7c2bb90c7 Binary files /dev/null and b/train_image_folder/person_without_helmet (212).jpg differ diff --git a/train_image_folder/person_without_helmet (213).jpg b/train_image_folder/person_without_helmet (213).jpg new file mode 100644 index 000000000..f88481bb7 Binary files /dev/null and b/train_image_folder/person_without_helmet (213).jpg differ diff --git a/train_image_folder/person_without_helmet (214).jpg b/train_image_folder/person_without_helmet (214).jpg new file mode 100644 index 000000000..c1adc7330 Binary files /dev/null and b/train_image_folder/person_without_helmet (214).jpg differ diff --git a/train_image_folder/person_without_helmet (215).jpg b/train_image_folder/person_without_helmet (215).jpg new file mode 100644 index 000000000..e04ca8a22 Binary files /dev/null and b/train_image_folder/person_without_helmet (215).jpg differ diff --git a/train_image_folder/person_without_helmet (216).jpg b/train_image_folder/person_without_helmet (216).jpg new file mode 100644 index 000000000..3144b92ca Binary files /dev/null and b/train_image_folder/person_without_helmet (216).jpg differ diff --git a/train_image_folder/person_without_helmet (217).jpg b/train_image_folder/person_without_helmet (217).jpg new file mode 100644 index 000000000..075aba9e9 Binary files /dev/null and b/train_image_folder/person_without_helmet (217).jpg differ diff --git a/train_image_folder/person_without_helmet (218).jpg b/train_image_folder/person_without_helmet (218).jpg new file mode 100644 index 000000000..7ddeb572f Binary files /dev/null and b/train_image_folder/person_without_helmet (218).jpg differ diff --git a/train_image_folder/person_without_helmet (219).jpg b/train_image_folder/person_without_helmet (219).jpg new file mode 100644 index 000000000..235ee34c7 Binary files /dev/null and b/train_image_folder/person_without_helmet (219).jpg differ diff --git a/train_image_folder/person_without_helmet (220).jpg b/train_image_folder/person_without_helmet (220).jpg new file mode 100644 index 000000000..beb2a49e7 Binary files /dev/null and b/train_image_folder/person_without_helmet (220).jpg differ diff --git a/train_image_folder/person_without_helmet (221).jpg b/train_image_folder/person_without_helmet (221).jpg new file mode 100644 index 000000000..ba7fb001a Binary files /dev/null and b/train_image_folder/person_without_helmet (221).jpg differ diff --git a/train_image_folder/person_without_helmet (222).jpg b/train_image_folder/person_without_helmet (222).jpg new file mode 100644 index 000000000..d63bd7687 Binary files /dev/null and b/train_image_folder/person_without_helmet (222).jpg differ diff --git a/train_image_folder/person_without_helmet (223).jpg b/train_image_folder/person_without_helmet (223).jpg new file mode 100644 index 000000000..727536fbd Binary files /dev/null and b/train_image_folder/person_without_helmet (223).jpg differ diff --git a/train_image_folder/person_without_helmet (224).jpg b/train_image_folder/person_without_helmet (224).jpg new file mode 100644 index 000000000..369c736e9 Binary files /dev/null and b/train_image_folder/person_without_helmet (224).jpg differ diff --git a/train_image_folder/person_without_helmet (225).jpg b/train_image_folder/person_without_helmet (225).jpg new file mode 100644 index 000000000..289037356 Binary files /dev/null and b/train_image_folder/person_without_helmet (225).jpg differ diff --git a/train_image_folder/person_without_helmet (226).jpg b/train_image_folder/person_without_helmet (226).jpg new file mode 100644 index 000000000..1f350b0a7 Binary files /dev/null and b/train_image_folder/person_without_helmet (226).jpg differ diff --git a/train_image_folder/person_without_helmet (227).jpg b/train_image_folder/person_without_helmet (227).jpg new file mode 100644 index 000000000..9a09623b2 Binary files /dev/null and b/train_image_folder/person_without_helmet (227).jpg differ diff --git a/train_image_folder/person_without_helmet (228).jpg b/train_image_folder/person_without_helmet (228).jpg new file mode 100644 index 000000000..d29139ac0 Binary files /dev/null and b/train_image_folder/person_without_helmet (228).jpg differ diff --git a/train_image_folder/person_without_helmet (229).jpg b/train_image_folder/person_without_helmet (229).jpg new file mode 100644 index 000000000..7d7ac868f Binary files /dev/null and b/train_image_folder/person_without_helmet (229).jpg differ diff --git a/train_image_folder/person_without_helmet (230).jpg b/train_image_folder/person_without_helmet (230).jpg new file mode 100644 index 000000000..f48834cec Binary files /dev/null and b/train_image_folder/person_without_helmet (230).jpg differ diff --git a/train_image_folder/person_without_helmet (231).jpg b/train_image_folder/person_without_helmet (231).jpg new file mode 100644 index 000000000..4a086f0ce Binary files /dev/null and b/train_image_folder/person_without_helmet (231).jpg differ diff --git a/train_image_folder/person_without_helmet (232).jpg b/train_image_folder/person_without_helmet (232).jpg new file mode 100644 index 000000000..18bda6cf5 Binary files /dev/null and b/train_image_folder/person_without_helmet (232).jpg differ diff --git a/train_image_folder/person_without_helmet (233).jpg b/train_image_folder/person_without_helmet (233).jpg new file mode 100644 index 000000000..4a17ff217 Binary files /dev/null and b/train_image_folder/person_without_helmet (233).jpg differ diff --git a/train_image_folder/person_without_helmet (234).jpg b/train_image_folder/person_without_helmet (234).jpg new file mode 100644 index 000000000..b9def56d4 Binary files /dev/null and b/train_image_folder/person_without_helmet (234).jpg differ diff --git a/train_image_folder/person_without_helmet (235).jpg b/train_image_folder/person_without_helmet (235).jpg new file mode 100644 index 000000000..45a1d6656 Binary files /dev/null and b/train_image_folder/person_without_helmet (235).jpg differ diff --git a/train_image_folder/person_without_helmet (236).jpg b/train_image_folder/person_without_helmet (236).jpg new file mode 100644 index 000000000..7a88efae5 Binary files /dev/null and b/train_image_folder/person_without_helmet (236).jpg differ diff --git a/train_image_folder/person_without_helmet (237).jpg b/train_image_folder/person_without_helmet (237).jpg new file mode 100644 index 000000000..0197b24a4 Binary files /dev/null and b/train_image_folder/person_without_helmet (237).jpg differ diff --git a/train_image_folder/person_without_helmet (238).jpg b/train_image_folder/person_without_helmet (238).jpg new file mode 100644 index 000000000..cbec65596 Binary files /dev/null and b/train_image_folder/person_without_helmet (238).jpg differ diff --git a/train_image_folder/person_without_helmet (239).jpg b/train_image_folder/person_without_helmet (239).jpg new file mode 100644 index 000000000..f1e31e826 Binary files /dev/null and b/train_image_folder/person_without_helmet (239).jpg differ diff --git a/train_image_folder/person_without_helmet (240).jpg b/train_image_folder/person_without_helmet (240).jpg new file mode 100644 index 000000000..2ffc287bb Binary files /dev/null and b/train_image_folder/person_without_helmet (240).jpg differ diff --git a/train_image_folder/person_without_helmet (241).jpg b/train_image_folder/person_without_helmet (241).jpg new file mode 100644 index 000000000..163699902 Binary files /dev/null and b/train_image_folder/person_without_helmet (241).jpg differ diff --git a/train_image_folder/person_without_helmet (242).jpg b/train_image_folder/person_without_helmet (242).jpg new file mode 100644 index 000000000..04cba48ef Binary files /dev/null and b/train_image_folder/person_without_helmet (242).jpg differ diff --git a/train_image_folder/person_without_helmet (243).jpg b/train_image_folder/person_without_helmet (243).jpg new file mode 100644 index 000000000..132f5095e Binary files /dev/null and b/train_image_folder/person_without_helmet (243).jpg differ diff --git a/train_image_folder/person_without_helmet (244).jpg b/train_image_folder/person_without_helmet (244).jpg new file mode 100644 index 000000000..b3091b5f8 Binary files /dev/null and b/train_image_folder/person_without_helmet (244).jpg differ diff --git a/train_image_folder/person_without_helmet (245).jpg b/train_image_folder/person_without_helmet (245).jpg new file mode 100644 index 000000000..76d74593c Binary files /dev/null and b/train_image_folder/person_without_helmet (245).jpg differ diff --git a/train_image_folder/person_without_helmet (246).jpg b/train_image_folder/person_without_helmet (246).jpg new file mode 100644 index 000000000..34a8d5959 Binary files /dev/null and b/train_image_folder/person_without_helmet (246).jpg differ diff --git a/train_image_folder/person_without_helmet (247).jpg b/train_image_folder/person_without_helmet (247).jpg new file mode 100644 index 000000000..0c0202257 Binary files /dev/null and b/train_image_folder/person_without_helmet (247).jpg differ diff --git a/train_image_folder/person_without_helmet (248).jpg b/train_image_folder/person_without_helmet (248).jpg new file mode 100644 index 000000000..a210b4cfb Binary files /dev/null and b/train_image_folder/person_without_helmet (248).jpg differ diff --git a/train_image_folder/person_without_helmet (249).jpg b/train_image_folder/person_without_helmet (249).jpg new file mode 100644 index 000000000..ddb9a2456 Binary files /dev/null and b/train_image_folder/person_without_helmet (249).jpg differ diff --git a/train_image_folder/person_without_helmet (250).jpg b/train_image_folder/person_without_helmet (250).jpg new file mode 100644 index 000000000..bc0e14270 Binary files /dev/null and b/train_image_folder/person_without_helmet (250).jpg differ diff --git a/train_image_folder/person_without_helmet (251).jpg b/train_image_folder/person_without_helmet (251).jpg new file mode 100644 index 000000000..ca6ed9255 Binary files /dev/null and b/train_image_folder/person_without_helmet (251).jpg differ diff --git a/train_image_folder/person_without_helmet (252).jpg b/train_image_folder/person_without_helmet (252).jpg new file mode 100644 index 000000000..495c5eb8e Binary files /dev/null and b/train_image_folder/person_without_helmet (252).jpg differ diff --git a/train_image_folder/person_without_helmet (253).jpg b/train_image_folder/person_without_helmet (253).jpg new file mode 100644 index 000000000..31f56fda1 Binary files /dev/null and b/train_image_folder/person_without_helmet (253).jpg differ diff --git a/train_image_folder/person_without_helmet (254).jpg b/train_image_folder/person_without_helmet (254).jpg new file mode 100644 index 000000000..51fde8589 Binary files /dev/null and b/train_image_folder/person_without_helmet (254).jpg differ diff --git a/train_image_folder/person_without_helmet (255).jpg b/train_image_folder/person_without_helmet (255).jpg new file mode 100644 index 000000000..5fed21201 Binary files /dev/null and b/train_image_folder/person_without_helmet (255).jpg differ diff --git a/train_image_folder/person_without_helmet (256).jpg b/train_image_folder/person_without_helmet (256).jpg new file mode 100644 index 000000000..b8d8a72b6 Binary files /dev/null and b/train_image_folder/person_without_helmet (256).jpg differ diff --git a/train_image_folder/person_without_helmet (257).jpg b/train_image_folder/person_without_helmet (257).jpg new file mode 100644 index 000000000..3cc621ae2 Binary files /dev/null and b/train_image_folder/person_without_helmet (257).jpg differ diff --git a/train_image_folder/person_without_helmet (258).jpg b/train_image_folder/person_without_helmet (258).jpg new file mode 100644 index 000000000..0f6cb3af5 Binary files /dev/null and b/train_image_folder/person_without_helmet (258).jpg differ diff --git a/train_image_folder/person_without_helmet (259).jpg b/train_image_folder/person_without_helmet (259).jpg new file mode 100644 index 000000000..e9b0f5f7f Binary files /dev/null and b/train_image_folder/person_without_helmet (259).jpg differ diff --git a/train_image_folder/person_without_helmet (260).jpg b/train_image_folder/person_without_helmet (260).jpg new file mode 100644 index 000000000..e5c52c238 Binary files /dev/null and b/train_image_folder/person_without_helmet (260).jpg differ diff --git a/train_image_folder/person_without_helmet (261).jpg b/train_image_folder/person_without_helmet (261).jpg new file mode 100644 index 000000000..9a98d3350 Binary files /dev/null and b/train_image_folder/person_without_helmet (261).jpg differ diff --git a/train_image_folder/person_without_helmet (262).jpg b/train_image_folder/person_without_helmet (262).jpg new file mode 100644 index 000000000..4947ba55b Binary files /dev/null and b/train_image_folder/person_without_helmet (262).jpg differ diff --git a/train_image_folder/person_without_helmet (263).jpg b/train_image_folder/person_without_helmet (263).jpg new file mode 100644 index 000000000..61aca3440 Binary files /dev/null and b/train_image_folder/person_without_helmet (263).jpg differ diff --git a/train_image_folder/person_without_helmet (264).jpg b/train_image_folder/person_without_helmet (264).jpg new file mode 100644 index 000000000..92cf3559e Binary files /dev/null and b/train_image_folder/person_without_helmet (264).jpg differ diff --git a/train_image_folder/person_without_helmet (265).jpg b/train_image_folder/person_without_helmet (265).jpg new file mode 100644 index 000000000..ce9d5229e Binary files /dev/null and b/train_image_folder/person_without_helmet (265).jpg differ diff --git a/train_image_folder/person_without_helmet (266).jpg b/train_image_folder/person_without_helmet (266).jpg new file mode 100644 index 000000000..345632e18 Binary files /dev/null and b/train_image_folder/person_without_helmet (266).jpg differ diff --git a/train_image_folder/person_without_helmet (267).jpg b/train_image_folder/person_without_helmet (267).jpg new file mode 100644 index 000000000..28dac50e1 Binary files /dev/null and b/train_image_folder/person_without_helmet (267).jpg differ diff --git a/train_image_folder/person_without_helmet (268).jpg b/train_image_folder/person_without_helmet (268).jpg new file mode 100644 index 000000000..feea5c149 Binary files /dev/null and b/train_image_folder/person_without_helmet (268).jpg differ diff --git a/train_image_folder/person_without_helmet (269).jpg b/train_image_folder/person_without_helmet (269).jpg new file mode 100644 index 000000000..ce904ed60 Binary files /dev/null and b/train_image_folder/person_without_helmet (269).jpg differ diff --git a/train_image_folder/person_without_helmet (270).jpg b/train_image_folder/person_without_helmet (270).jpg new file mode 100644 index 000000000..fef02505a Binary files /dev/null and b/train_image_folder/person_without_helmet (270).jpg differ diff --git a/train_image_folder/person_without_helmet (271).jpg b/train_image_folder/person_without_helmet (271).jpg new file mode 100644 index 000000000..cc2f0eb82 Binary files /dev/null and b/train_image_folder/person_without_helmet (271).jpg differ diff --git a/train_image_folder/person_without_helmet (272).jpg b/train_image_folder/person_without_helmet (272).jpg new file mode 100644 index 000000000..81656acf3 Binary files /dev/null and b/train_image_folder/person_without_helmet (272).jpg differ diff --git a/train_image_folder/person_without_helmet (273).jpg b/train_image_folder/person_without_helmet (273).jpg new file mode 100644 index 000000000..f43b91e50 Binary files /dev/null and b/train_image_folder/person_without_helmet (273).jpg differ diff --git a/train_image_folder/person_without_helmet (274).jpg b/train_image_folder/person_without_helmet (274).jpg new file mode 100644 index 000000000..550384d16 Binary files /dev/null and b/train_image_folder/person_without_helmet (274).jpg differ diff --git a/train_image_folder/person_without_helmet (275).jpg b/train_image_folder/person_without_helmet (275).jpg new file mode 100644 index 000000000..08640be84 Binary files /dev/null and b/train_image_folder/person_without_helmet (275).jpg differ diff --git a/train_image_folder/person_without_helmet (276).jpg b/train_image_folder/person_without_helmet (276).jpg new file mode 100644 index 000000000..611458566 Binary files /dev/null and b/train_image_folder/person_without_helmet (276).jpg differ diff --git a/train_image_folder/person_without_helmet (277).jpg b/train_image_folder/person_without_helmet (277).jpg new file mode 100644 index 000000000..c1661cab4 Binary files /dev/null and b/train_image_folder/person_without_helmet (277).jpg differ diff --git a/train_image_folder/person_without_helmet (278).jpg b/train_image_folder/person_without_helmet (278).jpg new file mode 100644 index 000000000..2a415c8e6 Binary files /dev/null and b/train_image_folder/person_without_helmet (278).jpg differ diff --git a/train_image_folder/person_without_helmet (279).jpg b/train_image_folder/person_without_helmet (279).jpg new file mode 100644 index 000000000..d9f818cdf Binary files /dev/null and b/train_image_folder/person_without_helmet (279).jpg differ diff --git a/train_image_folder/person_without_helmet (280).jpg b/train_image_folder/person_without_helmet (280).jpg new file mode 100644 index 000000000..bd4ebaa8c Binary files /dev/null and b/train_image_folder/person_without_helmet (280).jpg differ diff --git a/train_image_folder/person_without_helmet (281).jpg b/train_image_folder/person_without_helmet (281).jpg new file mode 100644 index 000000000..44dca53af Binary files /dev/null and b/train_image_folder/person_without_helmet (281).jpg differ diff --git a/train_image_folder/person_without_helmet (282).jpg b/train_image_folder/person_without_helmet (282).jpg new file mode 100644 index 000000000..b904be55c Binary files /dev/null and b/train_image_folder/person_without_helmet (282).jpg differ diff --git a/train_image_folder/person_without_helmet (283).jpg b/train_image_folder/person_without_helmet (283).jpg new file mode 100644 index 000000000..0565ab476 Binary files /dev/null and b/train_image_folder/person_without_helmet (283).jpg differ diff --git a/train_image_folder/person_without_helmet (284).jpg b/train_image_folder/person_without_helmet (284).jpg new file mode 100644 index 000000000..2ee05a668 Binary files /dev/null and b/train_image_folder/person_without_helmet (284).jpg differ diff --git a/train_image_folder/person_without_helmet (285).jpg b/train_image_folder/person_without_helmet (285).jpg new file mode 100644 index 000000000..06a91b1fa Binary files /dev/null and b/train_image_folder/person_without_helmet (285).jpg differ diff --git a/train_image_folder/person_without_helmet (286).jpg b/train_image_folder/person_without_helmet (286).jpg new file mode 100644 index 000000000..f98d9e1ef Binary files /dev/null and b/train_image_folder/person_without_helmet (286).jpg differ diff --git a/train_image_folder/person_without_helmet (287).jpg b/train_image_folder/person_without_helmet (287).jpg new file mode 100644 index 000000000..61a6c8266 Binary files /dev/null and b/train_image_folder/person_without_helmet (287).jpg differ diff --git a/train_image_folder/person_without_helmet (288).jpg b/train_image_folder/person_without_helmet (288).jpg new file mode 100644 index 000000000..c395d12db Binary files /dev/null and b/train_image_folder/person_without_helmet (288).jpg differ diff --git a/train_image_folder/person_without_helmet (289).jpg b/train_image_folder/person_without_helmet (289).jpg new file mode 100644 index 000000000..69171ea1d Binary files /dev/null and b/train_image_folder/person_without_helmet (289).jpg differ diff --git a/train_image_folder/person_without_helmet (290).jpg b/train_image_folder/person_without_helmet (290).jpg new file mode 100644 index 000000000..41cce6f00 Binary files /dev/null and b/train_image_folder/person_without_helmet (290).jpg differ diff --git a/train_image_folder/person_without_helmet (291).jpg b/train_image_folder/person_without_helmet (291).jpg new file mode 100644 index 000000000..7d2f3eb7e Binary files /dev/null and b/train_image_folder/person_without_helmet (291).jpg differ diff --git a/train_image_folder/person_without_helmet (292).jpg b/train_image_folder/person_without_helmet (292).jpg new file mode 100644 index 000000000..edb56fbc8 Binary files /dev/null and b/train_image_folder/person_without_helmet (292).jpg differ diff --git a/train_image_folder/person_without_helmet (293).jpg b/train_image_folder/person_without_helmet (293).jpg new file mode 100644 index 000000000..f752277dc Binary files /dev/null and b/train_image_folder/person_without_helmet (293).jpg differ diff --git a/train_image_folder/person_without_helmet (294).jpg b/train_image_folder/person_without_helmet (294).jpg new file mode 100644 index 000000000..8d9386603 Binary files /dev/null and b/train_image_folder/person_without_helmet (294).jpg differ diff --git a/train_image_folder/person_without_helmet (295).jpg b/train_image_folder/person_without_helmet (295).jpg new file mode 100644 index 000000000..1d57aeba9 Binary files /dev/null and b/train_image_folder/person_without_helmet (295).jpg differ diff --git a/train_image_folder/person_without_helmet (296).jpg b/train_image_folder/person_without_helmet (296).jpg new file mode 100644 index 000000000..8e12b97e1 Binary files /dev/null and b/train_image_folder/person_without_helmet (296).jpg differ diff --git a/train_image_folder/person_without_helmet (297).jpg b/train_image_folder/person_without_helmet (297).jpg new file mode 100644 index 000000000..353aca353 Binary files /dev/null and b/train_image_folder/person_without_helmet (297).jpg differ diff --git a/train_image_folder/person_without_helmet (3).jpg b/train_image_folder/person_without_helmet (3).jpg new file mode 100644 index 000000000..da9b2ad43 Binary files /dev/null and b/train_image_folder/person_without_helmet (3).jpg differ diff --git a/train_image_folder/person_without_helmet (30).jpg b/train_image_folder/person_without_helmet (30).jpg new file mode 100644 index 000000000..e77f49954 Binary files /dev/null and b/train_image_folder/person_without_helmet (30).jpg differ diff --git a/train_image_folder/person_without_helmet (31).jpg b/train_image_folder/person_without_helmet (31).jpg new file mode 100644 index 000000000..b4ae78e63 Binary files /dev/null and b/train_image_folder/person_without_helmet (31).jpg differ diff --git a/train_image_folder/person_without_helmet (32).jpg b/train_image_folder/person_without_helmet (32).jpg new file mode 100644 index 000000000..c763112b9 Binary files /dev/null and b/train_image_folder/person_without_helmet (32).jpg differ diff --git a/train_image_folder/person_without_helmet (33).jpg b/train_image_folder/person_without_helmet (33).jpg new file mode 100644 index 000000000..072275a45 Binary files /dev/null and b/train_image_folder/person_without_helmet (33).jpg differ diff --git a/train_image_folder/person_without_helmet (34).jpg b/train_image_folder/person_without_helmet (34).jpg new file mode 100644 index 000000000..660c82790 Binary files /dev/null and b/train_image_folder/person_without_helmet (34).jpg differ diff --git a/train_image_folder/person_without_helmet (35).jpg b/train_image_folder/person_without_helmet (35).jpg new file mode 100644 index 000000000..6b35b53b6 Binary files /dev/null and b/train_image_folder/person_without_helmet (35).jpg differ diff --git a/train_image_folder/person_without_helmet (36).jpg b/train_image_folder/person_without_helmet (36).jpg new file mode 100644 index 000000000..8a3c52433 Binary files /dev/null and b/train_image_folder/person_without_helmet (36).jpg differ diff --git a/train_image_folder/person_without_helmet (37).jpg b/train_image_folder/person_without_helmet (37).jpg new file mode 100644 index 000000000..4155ba415 Binary files /dev/null and b/train_image_folder/person_without_helmet (37).jpg differ diff --git a/train_image_folder/person_without_helmet (38).jpg b/train_image_folder/person_without_helmet (38).jpg new file mode 100644 index 000000000..db5577865 Binary files /dev/null and b/train_image_folder/person_without_helmet (38).jpg differ diff --git a/train_image_folder/person_without_helmet (39).jpg b/train_image_folder/person_without_helmet (39).jpg new file mode 100644 index 000000000..53c772445 Binary files /dev/null and b/train_image_folder/person_without_helmet (39).jpg differ diff --git a/train_image_folder/person_without_helmet (4).jpg b/train_image_folder/person_without_helmet (4).jpg new file mode 100644 index 000000000..4f2f57224 Binary files /dev/null and b/train_image_folder/person_without_helmet (4).jpg differ diff --git a/train_image_folder/person_without_helmet (40).jpg b/train_image_folder/person_without_helmet (40).jpg new file mode 100644 index 000000000..6eddd9165 Binary files /dev/null and b/train_image_folder/person_without_helmet (40).jpg differ diff --git a/train_image_folder/person_without_helmet (41).jpg b/train_image_folder/person_without_helmet (41).jpg new file mode 100644 index 000000000..c76f6e170 Binary files /dev/null and b/train_image_folder/person_without_helmet (41).jpg differ diff --git a/train_image_folder/person_without_helmet (42).jpg b/train_image_folder/person_without_helmet (42).jpg new file mode 100644 index 000000000..b7f0fb9f6 Binary files /dev/null and b/train_image_folder/person_without_helmet (42).jpg differ diff --git a/train_image_folder/person_without_helmet (43).jpg b/train_image_folder/person_without_helmet (43).jpg new file mode 100644 index 000000000..d0ff278ba Binary files /dev/null and b/train_image_folder/person_without_helmet (43).jpg differ diff --git a/train_image_folder/person_without_helmet (44).jpg b/train_image_folder/person_without_helmet (44).jpg new file mode 100644 index 000000000..2397c74e8 Binary files /dev/null and b/train_image_folder/person_without_helmet (44).jpg differ diff --git a/train_image_folder/person_without_helmet (45).jpg b/train_image_folder/person_without_helmet (45).jpg new file mode 100644 index 000000000..f4427c0c0 Binary files /dev/null and b/train_image_folder/person_without_helmet (45).jpg differ diff --git a/train_image_folder/person_without_helmet (46).jpg b/train_image_folder/person_without_helmet (46).jpg new file mode 100644 index 000000000..5ad1b4d46 Binary files /dev/null and b/train_image_folder/person_without_helmet (46).jpg differ diff --git a/train_image_folder/person_without_helmet (47).jpg b/train_image_folder/person_without_helmet (47).jpg new file mode 100644 index 000000000..9eb0d205c Binary files /dev/null and b/train_image_folder/person_without_helmet (47).jpg differ diff --git a/train_image_folder/person_without_helmet (48).jpg b/train_image_folder/person_without_helmet (48).jpg new file mode 100644 index 000000000..5b31b5d5a Binary files /dev/null and b/train_image_folder/person_without_helmet (48).jpg differ diff --git a/train_image_folder/person_without_helmet (49).jpg b/train_image_folder/person_without_helmet (49).jpg new file mode 100644 index 000000000..15d896b1b Binary files /dev/null and b/train_image_folder/person_without_helmet (49).jpg differ diff --git a/train_image_folder/person_without_helmet (5).jpg b/train_image_folder/person_without_helmet (5).jpg new file mode 100644 index 000000000..459ecfa2d Binary files /dev/null and b/train_image_folder/person_without_helmet (5).jpg differ diff --git a/train_image_folder/person_without_helmet (50).jpg b/train_image_folder/person_without_helmet (50).jpg new file mode 100644 index 000000000..fe097994e Binary files /dev/null and b/train_image_folder/person_without_helmet (50).jpg differ diff --git a/train_image_folder/person_without_helmet (51).jpg b/train_image_folder/person_without_helmet (51).jpg new file mode 100644 index 000000000..295926772 Binary files /dev/null and b/train_image_folder/person_without_helmet (51).jpg differ diff --git a/train_image_folder/person_without_helmet (52).jpg b/train_image_folder/person_without_helmet (52).jpg new file mode 100644 index 000000000..e0faff739 Binary files /dev/null and b/train_image_folder/person_without_helmet (52).jpg differ diff --git a/train_image_folder/person_without_helmet (53).jpg b/train_image_folder/person_without_helmet (53).jpg new file mode 100644 index 000000000..0ba6eea2f Binary files /dev/null and b/train_image_folder/person_without_helmet (53).jpg differ diff --git a/train_image_folder/person_without_helmet (54).jpg b/train_image_folder/person_without_helmet (54).jpg new file mode 100644 index 000000000..8d4131b2a Binary files /dev/null and b/train_image_folder/person_without_helmet (54).jpg differ diff --git a/train_image_folder/person_without_helmet (55).jpg b/train_image_folder/person_without_helmet (55).jpg new file mode 100644 index 000000000..1fd12dad2 Binary files /dev/null and b/train_image_folder/person_without_helmet (55).jpg differ diff --git a/train_image_folder/person_without_helmet (56).jpg b/train_image_folder/person_without_helmet (56).jpg new file mode 100644 index 000000000..34d2bcb9b Binary files /dev/null and b/train_image_folder/person_without_helmet (56).jpg differ diff --git a/train_image_folder/person_without_helmet (57).jpg b/train_image_folder/person_without_helmet (57).jpg new file mode 100644 index 000000000..4acf8755c Binary files /dev/null and b/train_image_folder/person_without_helmet (57).jpg differ diff --git a/train_image_folder/person_without_helmet (58).jpg b/train_image_folder/person_without_helmet (58).jpg new file mode 100644 index 000000000..ed750e9cd Binary files /dev/null and b/train_image_folder/person_without_helmet (58).jpg differ diff --git a/train_image_folder/person_without_helmet (59).jpg b/train_image_folder/person_without_helmet (59).jpg new file mode 100644 index 000000000..169ae9ed5 Binary files /dev/null and b/train_image_folder/person_without_helmet (59).jpg differ diff --git a/train_image_folder/person_without_helmet (6).jpg b/train_image_folder/person_without_helmet (6).jpg new file mode 100644 index 000000000..976803e1e Binary files /dev/null and b/train_image_folder/person_without_helmet (6).jpg differ diff --git a/train_image_folder/person_without_helmet (60).jpg b/train_image_folder/person_without_helmet (60).jpg new file mode 100644 index 000000000..03292b17c Binary files /dev/null and b/train_image_folder/person_without_helmet (60).jpg differ diff --git a/train_image_folder/person_without_helmet (61).jpg b/train_image_folder/person_without_helmet (61).jpg new file mode 100644 index 000000000..248e067f1 Binary files /dev/null and b/train_image_folder/person_without_helmet (61).jpg differ diff --git a/train_image_folder/person_without_helmet (62).jpg b/train_image_folder/person_without_helmet (62).jpg new file mode 100644 index 000000000..a659cfe4b Binary files /dev/null and b/train_image_folder/person_without_helmet (62).jpg differ diff --git a/train_image_folder/person_without_helmet (63).jpg b/train_image_folder/person_without_helmet (63).jpg new file mode 100644 index 000000000..939fee809 Binary files /dev/null and b/train_image_folder/person_without_helmet (63).jpg differ diff --git a/train_image_folder/person_without_helmet (64).jpg b/train_image_folder/person_without_helmet (64).jpg new file mode 100644 index 000000000..dac441702 Binary files /dev/null and b/train_image_folder/person_without_helmet (64).jpg differ diff --git a/train_image_folder/person_without_helmet (65).jpg b/train_image_folder/person_without_helmet (65).jpg new file mode 100644 index 000000000..7345c78a0 Binary files /dev/null and b/train_image_folder/person_without_helmet (65).jpg differ diff --git a/train_image_folder/person_without_helmet (66).jpg b/train_image_folder/person_without_helmet (66).jpg new file mode 100644 index 000000000..e8ddc8925 Binary files /dev/null and b/train_image_folder/person_without_helmet (66).jpg differ diff --git a/train_image_folder/person_without_helmet (67).jpg b/train_image_folder/person_without_helmet (67).jpg new file mode 100644 index 000000000..251214c2c Binary files /dev/null and b/train_image_folder/person_without_helmet (67).jpg differ diff --git a/train_image_folder/person_without_helmet (68).jpg b/train_image_folder/person_without_helmet (68).jpg new file mode 100644 index 000000000..cc8e74b0f Binary files /dev/null and b/train_image_folder/person_without_helmet (68).jpg differ diff --git a/train_image_folder/person_without_helmet (69).jpg b/train_image_folder/person_without_helmet (69).jpg new file mode 100644 index 000000000..ae3cda582 Binary files /dev/null and b/train_image_folder/person_without_helmet (69).jpg differ diff --git a/train_image_folder/person_without_helmet (7).jpg b/train_image_folder/person_without_helmet (7).jpg new file mode 100644 index 000000000..4e08c1d95 Binary files /dev/null and b/train_image_folder/person_without_helmet (7).jpg differ diff --git a/train_image_folder/person_without_helmet (70).jpg b/train_image_folder/person_without_helmet (70).jpg new file mode 100644 index 000000000..cdc38f94f Binary files /dev/null and b/train_image_folder/person_without_helmet (70).jpg differ diff --git a/train_image_folder/person_without_helmet (71).jpg b/train_image_folder/person_without_helmet (71).jpg new file mode 100644 index 000000000..883c32ea8 Binary files /dev/null and b/train_image_folder/person_without_helmet (71).jpg differ diff --git a/train_image_folder/person_without_helmet (72).jpg b/train_image_folder/person_without_helmet (72).jpg new file mode 100644 index 000000000..f9fc67b3f Binary files /dev/null and b/train_image_folder/person_without_helmet (72).jpg differ diff --git a/train_image_folder/person_without_helmet (73).jpg b/train_image_folder/person_without_helmet (73).jpg new file mode 100644 index 000000000..8b48559bb Binary files /dev/null and b/train_image_folder/person_without_helmet (73).jpg differ diff --git a/train_image_folder/person_without_helmet (74).jpg b/train_image_folder/person_without_helmet (74).jpg new file mode 100644 index 000000000..2277a8887 Binary files /dev/null and b/train_image_folder/person_without_helmet (74).jpg differ diff --git a/train_image_folder/person_without_helmet (75).jpg b/train_image_folder/person_without_helmet (75).jpg new file mode 100644 index 000000000..b356ef44d Binary files /dev/null and b/train_image_folder/person_without_helmet (75).jpg differ diff --git a/train_image_folder/person_without_helmet (76).jpg b/train_image_folder/person_without_helmet (76).jpg new file mode 100644 index 000000000..94b55d673 Binary files /dev/null and b/train_image_folder/person_without_helmet (76).jpg differ diff --git a/train_image_folder/person_without_helmet (77).jpg b/train_image_folder/person_without_helmet (77).jpg new file mode 100644 index 000000000..6fd0d05c1 Binary files /dev/null and b/train_image_folder/person_without_helmet (77).jpg differ diff --git a/train_image_folder/person_without_helmet (78).jpg b/train_image_folder/person_without_helmet (78).jpg new file mode 100644 index 000000000..14a6b3f94 Binary files /dev/null and b/train_image_folder/person_without_helmet (78).jpg differ diff --git a/train_image_folder/person_without_helmet (79).jpg b/train_image_folder/person_without_helmet (79).jpg new file mode 100644 index 000000000..465731cbf Binary files /dev/null and b/train_image_folder/person_without_helmet (79).jpg differ diff --git a/train_image_folder/person_without_helmet (8).jpg b/train_image_folder/person_without_helmet (8).jpg new file mode 100644 index 000000000..de67316af Binary files /dev/null and b/train_image_folder/person_without_helmet (8).jpg differ diff --git a/train_image_folder/person_without_helmet (80).jpg b/train_image_folder/person_without_helmet (80).jpg new file mode 100644 index 000000000..f2410200e Binary files /dev/null and b/train_image_folder/person_without_helmet (80).jpg differ diff --git a/train_image_folder/person_without_helmet (81).jpg b/train_image_folder/person_without_helmet (81).jpg new file mode 100644 index 000000000..3b5fc3c7a Binary files /dev/null and b/train_image_folder/person_without_helmet (81).jpg differ diff --git a/train_image_folder/person_without_helmet (82).jpg b/train_image_folder/person_without_helmet (82).jpg new file mode 100644 index 000000000..b258e6b5c Binary files /dev/null and b/train_image_folder/person_without_helmet (82).jpg differ diff --git a/train_image_folder/person_without_helmet (83).jpg b/train_image_folder/person_without_helmet (83).jpg new file mode 100644 index 000000000..34218aa80 Binary files /dev/null and b/train_image_folder/person_without_helmet (83).jpg differ diff --git a/train_image_folder/person_without_helmet (84).jpg b/train_image_folder/person_without_helmet (84).jpg new file mode 100644 index 000000000..cdf8536bc Binary files /dev/null and b/train_image_folder/person_without_helmet (84).jpg differ diff --git a/train_image_folder/person_without_helmet (85).jpg b/train_image_folder/person_without_helmet (85).jpg new file mode 100644 index 000000000..c57b5310f Binary files /dev/null and b/train_image_folder/person_without_helmet (85).jpg differ diff --git a/train_image_folder/person_without_helmet (86).jpg b/train_image_folder/person_without_helmet (86).jpg new file mode 100644 index 000000000..1efbabdb3 Binary files /dev/null and b/train_image_folder/person_without_helmet (86).jpg differ diff --git a/train_image_folder/person_without_helmet (87).jpg b/train_image_folder/person_without_helmet (87).jpg new file mode 100644 index 000000000..09c3b5882 Binary files /dev/null and b/train_image_folder/person_without_helmet (87).jpg differ diff --git a/train_image_folder/person_without_helmet (88).jpg b/train_image_folder/person_without_helmet (88).jpg new file mode 100644 index 000000000..8c99a80ba Binary files /dev/null and b/train_image_folder/person_without_helmet (88).jpg differ diff --git a/train_image_folder/person_without_helmet (89).jpg b/train_image_folder/person_without_helmet (89).jpg new file mode 100644 index 000000000..efb28b1e0 Binary files /dev/null and b/train_image_folder/person_without_helmet (89).jpg differ diff --git a/train_image_folder/person_without_helmet (9).jpg b/train_image_folder/person_without_helmet (9).jpg new file mode 100644 index 000000000..d1b21b7c5 Binary files /dev/null and b/train_image_folder/person_without_helmet (9).jpg differ diff --git a/train_image_folder/person_without_helmet (90).jpg b/train_image_folder/person_without_helmet (90).jpg new file mode 100644 index 000000000..8f03f910d Binary files /dev/null and b/train_image_folder/person_without_helmet (90).jpg differ diff --git a/train_image_folder/person_without_helmet (91).jpg b/train_image_folder/person_without_helmet (91).jpg new file mode 100644 index 000000000..01c2856af Binary files /dev/null and b/train_image_folder/person_without_helmet (91).jpg differ diff --git a/train_image_folder/person_without_helmet (92).jpg b/train_image_folder/person_without_helmet (92).jpg new file mode 100644 index 000000000..78a4b372b Binary files /dev/null and b/train_image_folder/person_without_helmet (92).jpg differ diff --git a/train_image_folder/person_without_helmet (93).jpg b/train_image_folder/person_without_helmet (93).jpg new file mode 100644 index 000000000..5241c9004 Binary files /dev/null and b/train_image_folder/person_without_helmet (93).jpg differ diff --git a/train_image_folder/person_without_helmet (94).jpg b/train_image_folder/person_without_helmet (94).jpg new file mode 100644 index 000000000..bc8f946c2 Binary files /dev/null and b/train_image_folder/person_without_helmet (94).jpg differ diff --git a/train_image_folder/person_without_helmet (96).jpg b/train_image_folder/person_without_helmet (96).jpg new file mode 100644 index 000000000..a4a7f3a04 Binary files /dev/null and b/train_image_folder/person_without_helmet (96).jpg differ diff --git a/train_image_folder/person_without_helmet (97).jpg b/train_image_folder/person_without_helmet (97).jpg new file mode 100644 index 000000000..d45c2e435 Binary files /dev/null and b/train_image_folder/person_without_helmet (97).jpg differ diff --git a/train_image_folder/person_without_helmet (98).jpg b/train_image_folder/person_without_helmet (98).jpg new file mode 100644 index 000000000..94a27b432 Binary files /dev/null and b/train_image_folder/person_without_helmet (98).jpg differ diff --git a/train_image_folder/worker (1).jpg b/train_image_folder/worker (1).jpg new file mode 100644 index 000000000..442da1fa1 Binary files /dev/null and b/train_image_folder/worker (1).jpg differ diff --git a/train_image_folder/worker (10).jpg b/train_image_folder/worker (10).jpg new file mode 100644 index 000000000..c1b032fa3 Binary files /dev/null and b/train_image_folder/worker (10).jpg differ diff --git a/train_image_folder/worker (100).jpg b/train_image_folder/worker (100).jpg new file mode 100644 index 000000000..d64c60d66 Binary files /dev/null and b/train_image_folder/worker (100).jpg differ diff --git a/train_image_folder/worker (101).jpg b/train_image_folder/worker (101).jpg new file mode 100644 index 000000000..591a55766 Binary files /dev/null and b/train_image_folder/worker (101).jpg differ diff --git a/train_image_folder/worker (102).jpg b/train_image_folder/worker (102).jpg new file mode 100644 index 000000000..347aaa695 Binary files /dev/null and b/train_image_folder/worker (102).jpg differ diff --git a/train_image_folder/worker (103).jpg b/train_image_folder/worker (103).jpg new file mode 100644 index 000000000..854768e17 Binary files /dev/null and b/train_image_folder/worker (103).jpg differ diff --git a/train_image_folder/worker (104).jpg b/train_image_folder/worker (104).jpg new file mode 100644 index 000000000..e39289a58 Binary files /dev/null and b/train_image_folder/worker (104).jpg differ diff --git a/train_image_folder/worker (105).jpg b/train_image_folder/worker (105).jpg new file mode 100644 index 000000000..3a0a54437 Binary files /dev/null and b/train_image_folder/worker (105).jpg differ diff --git a/train_image_folder/worker (106).jpg b/train_image_folder/worker (106).jpg new file mode 100644 index 000000000..2c94989d0 Binary files /dev/null and b/train_image_folder/worker (106).jpg differ diff --git a/train_image_folder/worker (107).jpg b/train_image_folder/worker (107).jpg new file mode 100644 index 000000000..5f760ad22 Binary files /dev/null and b/train_image_folder/worker (107).jpg differ diff --git a/train_image_folder/worker (108).jpg b/train_image_folder/worker (108).jpg new file mode 100644 index 000000000..9fbbbb84f Binary files /dev/null and b/train_image_folder/worker (108).jpg differ diff --git a/train_image_folder/worker (109).jpg b/train_image_folder/worker (109).jpg new file mode 100644 index 000000000..be7b6527b Binary files /dev/null and b/train_image_folder/worker (109).jpg differ diff --git a/train_image_folder/worker (11).jpg b/train_image_folder/worker (11).jpg new file mode 100644 index 000000000..a78f1a723 Binary files /dev/null and b/train_image_folder/worker (11).jpg differ diff --git a/train_image_folder/worker (110).jpg b/train_image_folder/worker (110).jpg new file mode 100644 index 000000000..0192db733 Binary files /dev/null and b/train_image_folder/worker (110).jpg differ diff --git a/train_image_folder/worker (111).jpg b/train_image_folder/worker (111).jpg new file mode 100644 index 000000000..55799f719 Binary files /dev/null and b/train_image_folder/worker (111).jpg differ diff --git a/train_image_folder/worker (112).jpg b/train_image_folder/worker (112).jpg new file mode 100644 index 000000000..409a67d30 Binary files /dev/null and b/train_image_folder/worker (112).jpg differ diff --git a/train_image_folder/worker (113).jpg b/train_image_folder/worker (113).jpg new file mode 100644 index 000000000..5c117fbd8 Binary files /dev/null and b/train_image_folder/worker (113).jpg differ diff --git a/train_image_folder/worker (114).jpg b/train_image_folder/worker (114).jpg new file mode 100644 index 000000000..3102dac48 Binary files /dev/null and b/train_image_folder/worker (114).jpg differ diff --git a/train_image_folder/worker (115).jpg b/train_image_folder/worker (115).jpg new file mode 100644 index 000000000..c13ce717a Binary files /dev/null and b/train_image_folder/worker (115).jpg differ diff --git a/train_image_folder/worker (116).jpg b/train_image_folder/worker (116).jpg new file mode 100644 index 000000000..8d14b1553 Binary files /dev/null and b/train_image_folder/worker (116).jpg differ diff --git a/train_image_folder/worker (117).jpg b/train_image_folder/worker (117).jpg new file mode 100644 index 000000000..1504cfd73 Binary files /dev/null and b/train_image_folder/worker (117).jpg differ diff --git a/train_image_folder/worker (118).jpg b/train_image_folder/worker (118).jpg new file mode 100644 index 000000000..14e2c2a00 Binary files /dev/null and b/train_image_folder/worker (118).jpg differ diff --git a/train_image_folder/worker (119).jpg b/train_image_folder/worker (119).jpg new file mode 100644 index 000000000..b90716361 Binary files /dev/null and b/train_image_folder/worker (119).jpg differ diff --git a/train_image_folder/worker (12).jpg b/train_image_folder/worker (12).jpg new file mode 100644 index 000000000..e82b27dfa Binary files /dev/null and b/train_image_folder/worker (12).jpg differ diff --git a/train_image_folder/worker (120).jpg b/train_image_folder/worker (120).jpg new file mode 100644 index 000000000..b36f0527e Binary files /dev/null and b/train_image_folder/worker (120).jpg differ diff --git a/train_image_folder/worker (121).jpg b/train_image_folder/worker (121).jpg new file mode 100644 index 000000000..2c94e525d Binary files /dev/null and b/train_image_folder/worker (121).jpg differ diff --git a/train_image_folder/worker (122).jpg b/train_image_folder/worker (122).jpg new file mode 100644 index 000000000..4e90cb729 Binary files /dev/null and b/train_image_folder/worker (122).jpg differ diff --git a/train_image_folder/worker (123).jpg b/train_image_folder/worker (123).jpg new file mode 100644 index 000000000..a89d1093d Binary files /dev/null and b/train_image_folder/worker (123).jpg differ diff --git a/train_image_folder/worker (124).jpg b/train_image_folder/worker (124).jpg new file mode 100644 index 000000000..c2b82194a Binary files /dev/null and b/train_image_folder/worker (124).jpg differ diff --git a/train_image_folder/worker (125).jpg b/train_image_folder/worker (125).jpg new file mode 100644 index 000000000..55861bb83 Binary files /dev/null and b/train_image_folder/worker (125).jpg differ diff --git a/train_image_folder/worker (126).jpg b/train_image_folder/worker (126).jpg new file mode 100644 index 000000000..3b23e843d Binary files /dev/null and b/train_image_folder/worker (126).jpg differ diff --git a/train_image_folder/worker (127).jpg b/train_image_folder/worker (127).jpg new file mode 100644 index 000000000..072e37878 Binary files /dev/null and b/train_image_folder/worker (127).jpg differ diff --git a/train_image_folder/worker (128).jpg b/train_image_folder/worker (128).jpg new file mode 100644 index 000000000..4107fa9d4 Binary files /dev/null and b/train_image_folder/worker (128).jpg differ diff --git a/train_image_folder/worker (129).jpg b/train_image_folder/worker (129).jpg new file mode 100644 index 000000000..4bc0d445e Binary files /dev/null and b/train_image_folder/worker (129).jpg differ diff --git a/train_image_folder/worker (13).jpg b/train_image_folder/worker (13).jpg new file mode 100644 index 000000000..005bea8e7 Binary files /dev/null and b/train_image_folder/worker (13).jpg differ diff --git a/train_image_folder/worker (130).jpg b/train_image_folder/worker (130).jpg new file mode 100644 index 000000000..406686e7d Binary files /dev/null and b/train_image_folder/worker (130).jpg differ diff --git a/train_image_folder/worker (131).jpg b/train_image_folder/worker (131).jpg new file mode 100644 index 000000000..562449c6c Binary files /dev/null and b/train_image_folder/worker (131).jpg differ diff --git a/train_image_folder/worker (132).jpg b/train_image_folder/worker (132).jpg new file mode 100644 index 000000000..a0a78e3bd Binary files /dev/null and b/train_image_folder/worker (132).jpg differ diff --git a/train_image_folder/worker (133).jpg b/train_image_folder/worker (133).jpg new file mode 100644 index 000000000..6ba5aa867 Binary files /dev/null and b/train_image_folder/worker (133).jpg differ diff --git a/train_image_folder/worker (134).jpg b/train_image_folder/worker (134).jpg new file mode 100644 index 000000000..08abb1b3e Binary files /dev/null and b/train_image_folder/worker (134).jpg differ diff --git a/train_image_folder/worker (135).jpg b/train_image_folder/worker (135).jpg new file mode 100644 index 000000000..f7ed19a20 Binary files /dev/null and b/train_image_folder/worker (135).jpg differ diff --git a/train_image_folder/worker (136).jpg b/train_image_folder/worker (136).jpg new file mode 100644 index 000000000..1ed9b7ca5 Binary files /dev/null and b/train_image_folder/worker (136).jpg differ diff --git a/train_image_folder/worker (137).jpg b/train_image_folder/worker (137).jpg new file mode 100644 index 000000000..807a2b765 Binary files /dev/null and b/train_image_folder/worker (137).jpg differ diff --git a/train_image_folder/worker (138).jpg b/train_image_folder/worker (138).jpg new file mode 100644 index 000000000..44cb28653 Binary files /dev/null and b/train_image_folder/worker (138).jpg differ diff --git a/train_image_folder/worker (139).jpg b/train_image_folder/worker (139).jpg new file mode 100644 index 000000000..6f607c311 Binary files /dev/null and b/train_image_folder/worker (139).jpg differ diff --git a/train_image_folder/worker (14).jpg b/train_image_folder/worker (14).jpg new file mode 100644 index 000000000..550a72b06 Binary files /dev/null and b/train_image_folder/worker (14).jpg differ diff --git a/train_image_folder/worker (140).jpg b/train_image_folder/worker (140).jpg new file mode 100644 index 000000000..dd33bc1a7 Binary files /dev/null and b/train_image_folder/worker (140).jpg differ diff --git a/train_image_folder/worker (141).jpg b/train_image_folder/worker (141).jpg new file mode 100644 index 000000000..7c7dad2b9 Binary files /dev/null and b/train_image_folder/worker (141).jpg differ diff --git a/train_image_folder/worker (142).jpg b/train_image_folder/worker (142).jpg new file mode 100644 index 000000000..e0a383681 Binary files /dev/null and b/train_image_folder/worker (142).jpg differ diff --git a/train_image_folder/worker (143).jpg b/train_image_folder/worker (143).jpg new file mode 100644 index 000000000..b610ae2f1 Binary files /dev/null and b/train_image_folder/worker (143).jpg differ diff --git a/train_image_folder/worker (144).jpg b/train_image_folder/worker (144).jpg new file mode 100644 index 000000000..2d3c8f14f Binary files /dev/null and b/train_image_folder/worker (144).jpg differ diff --git a/train_image_folder/worker (145).jpg b/train_image_folder/worker (145).jpg new file mode 100644 index 000000000..7047dbb5d Binary files /dev/null and b/train_image_folder/worker (145).jpg differ diff --git a/train_image_folder/worker (146).jpg b/train_image_folder/worker (146).jpg new file mode 100644 index 000000000..262ad6a59 Binary files /dev/null and b/train_image_folder/worker (146).jpg differ diff --git a/train_image_folder/worker (147).jpg b/train_image_folder/worker (147).jpg new file mode 100644 index 000000000..3a834ccf3 Binary files /dev/null and b/train_image_folder/worker (147).jpg differ diff --git a/train_image_folder/worker (148).jpg b/train_image_folder/worker (148).jpg new file mode 100644 index 000000000..4b354c30b Binary files /dev/null and b/train_image_folder/worker (148).jpg differ diff --git a/train_image_folder/worker (149).jpg b/train_image_folder/worker (149).jpg new file mode 100644 index 000000000..ec9d091fa Binary files /dev/null and b/train_image_folder/worker (149).jpg differ diff --git a/train_image_folder/worker (15).jpg b/train_image_folder/worker (15).jpg new file mode 100644 index 000000000..abdc34024 Binary files /dev/null and b/train_image_folder/worker (15).jpg differ diff --git a/train_image_folder/worker (150).jpg b/train_image_folder/worker (150).jpg new file mode 100644 index 000000000..85d071928 Binary files /dev/null and b/train_image_folder/worker (150).jpg differ diff --git a/train_image_folder/worker (151).jpg b/train_image_folder/worker (151).jpg new file mode 100644 index 000000000..141b02788 Binary files /dev/null and b/train_image_folder/worker (151).jpg differ diff --git a/train_image_folder/worker (152).jpg b/train_image_folder/worker (152).jpg new file mode 100644 index 000000000..e3bce800e Binary files /dev/null and b/train_image_folder/worker (152).jpg differ diff --git a/train_image_folder/worker (153).jpg b/train_image_folder/worker (153).jpg new file mode 100644 index 000000000..6c2aec11a Binary files /dev/null and b/train_image_folder/worker (153).jpg differ diff --git a/train_image_folder/worker (154).jpg b/train_image_folder/worker (154).jpg new file mode 100644 index 000000000..0e0550641 Binary files /dev/null and b/train_image_folder/worker (154).jpg differ diff --git a/train_image_folder/worker (155).jpg b/train_image_folder/worker (155).jpg new file mode 100644 index 000000000..eec770e21 Binary files /dev/null and b/train_image_folder/worker (155).jpg differ diff --git a/train_image_folder/worker (156).jpg b/train_image_folder/worker (156).jpg new file mode 100644 index 000000000..d2f0358d6 Binary files /dev/null and b/train_image_folder/worker (156).jpg differ diff --git a/train_image_folder/worker (158).jpg b/train_image_folder/worker (158).jpg new file mode 100644 index 000000000..5f938f971 Binary files /dev/null and b/train_image_folder/worker (158).jpg differ diff --git a/train_image_folder/worker (159).jpg b/train_image_folder/worker (159).jpg new file mode 100644 index 000000000..61cb6213d Binary files /dev/null and b/train_image_folder/worker (159).jpg differ diff --git a/train_image_folder/worker (16).jpg b/train_image_folder/worker (16).jpg new file mode 100644 index 000000000..7c3b33ae9 Binary files /dev/null and b/train_image_folder/worker (16).jpg differ diff --git a/train_image_folder/worker (160).jpg b/train_image_folder/worker (160).jpg new file mode 100644 index 000000000..511ee0164 Binary files /dev/null and b/train_image_folder/worker (160).jpg differ diff --git a/train_image_folder/worker (161).jpg b/train_image_folder/worker (161).jpg new file mode 100644 index 000000000..8cbe68997 Binary files /dev/null and b/train_image_folder/worker (161).jpg differ diff --git a/train_image_folder/worker (162).jpg b/train_image_folder/worker (162).jpg new file mode 100644 index 000000000..6c324c6eb Binary files /dev/null and b/train_image_folder/worker (162).jpg differ diff --git a/train_image_folder/worker (163).jpg b/train_image_folder/worker (163).jpg new file mode 100644 index 000000000..d60b42dac Binary files /dev/null and b/train_image_folder/worker (163).jpg differ diff --git a/train_image_folder/worker (164).jpg b/train_image_folder/worker (164).jpg new file mode 100644 index 000000000..f4c84a58f Binary files /dev/null and b/train_image_folder/worker (164).jpg differ diff --git a/train_image_folder/worker (165).jpg b/train_image_folder/worker (165).jpg new file mode 100644 index 000000000..caa221679 Binary files /dev/null and b/train_image_folder/worker (165).jpg differ diff --git a/train_image_folder/worker (166).jpg b/train_image_folder/worker (166).jpg new file mode 100644 index 000000000..24f189991 Binary files /dev/null and b/train_image_folder/worker (166).jpg differ diff --git a/train_image_folder/worker (167).jpg b/train_image_folder/worker (167).jpg new file mode 100644 index 000000000..2fd943dea Binary files /dev/null and b/train_image_folder/worker (167).jpg differ diff --git a/train_image_folder/worker (168).jpg b/train_image_folder/worker (168).jpg new file mode 100644 index 000000000..571d5336f Binary files /dev/null and b/train_image_folder/worker (168).jpg differ diff --git a/train_image_folder/worker (169).jpg b/train_image_folder/worker (169).jpg new file mode 100644 index 000000000..78f58abcf Binary files /dev/null and b/train_image_folder/worker (169).jpg differ diff --git a/train_image_folder/worker (17).jpg b/train_image_folder/worker (17).jpg new file mode 100644 index 000000000..be84a997f Binary files /dev/null and b/train_image_folder/worker (17).jpg differ diff --git a/train_image_folder/worker (170).jpg b/train_image_folder/worker (170).jpg new file mode 100644 index 000000000..49e017a5f Binary files /dev/null and b/train_image_folder/worker (170).jpg differ diff --git a/train_image_folder/worker (171).jpg b/train_image_folder/worker (171).jpg new file mode 100644 index 000000000..06f1abe50 Binary files /dev/null and b/train_image_folder/worker (171).jpg differ diff --git a/train_image_folder/worker (172).jpg b/train_image_folder/worker (172).jpg new file mode 100644 index 000000000..8002c88d2 Binary files /dev/null and b/train_image_folder/worker (172).jpg differ diff --git a/train_image_folder/worker (173).jpg b/train_image_folder/worker (173).jpg new file mode 100644 index 000000000..6891b3b4d Binary files /dev/null and b/train_image_folder/worker (173).jpg differ diff --git a/train_image_folder/worker (175).jpg b/train_image_folder/worker (175).jpg new file mode 100644 index 000000000..b5b3600b9 Binary files /dev/null and b/train_image_folder/worker (175).jpg differ diff --git a/train_image_folder/worker (176).jpg b/train_image_folder/worker (176).jpg new file mode 100644 index 000000000..87d9fbfed Binary files /dev/null and b/train_image_folder/worker (176).jpg differ diff --git a/train_image_folder/worker (177).jpg b/train_image_folder/worker (177).jpg new file mode 100644 index 000000000..22d2ed2b4 Binary files /dev/null and b/train_image_folder/worker (177).jpg differ diff --git a/train_image_folder/worker (178).jpg b/train_image_folder/worker (178).jpg new file mode 100644 index 000000000..e6a7441c5 Binary files /dev/null and b/train_image_folder/worker (178).jpg differ diff --git a/train_image_folder/worker (179).jpg b/train_image_folder/worker (179).jpg new file mode 100644 index 000000000..12db704d7 Binary files /dev/null and b/train_image_folder/worker (179).jpg differ diff --git a/train_image_folder/worker (18).jpg b/train_image_folder/worker (18).jpg new file mode 100644 index 000000000..d98f5c20b Binary files /dev/null and b/train_image_folder/worker (18).jpg differ diff --git a/train_image_folder/worker (180).jpg b/train_image_folder/worker (180).jpg new file mode 100644 index 000000000..aed42d7ca Binary files /dev/null and b/train_image_folder/worker (180).jpg differ diff --git a/train_image_folder/worker (181).jpg b/train_image_folder/worker (181).jpg new file mode 100644 index 000000000..2a3e5370e Binary files /dev/null and b/train_image_folder/worker (181).jpg differ diff --git a/train_image_folder/worker (182).jpg b/train_image_folder/worker (182).jpg new file mode 100644 index 000000000..36c58118a Binary files /dev/null and b/train_image_folder/worker (182).jpg differ diff --git a/train_image_folder/worker (183).jpg b/train_image_folder/worker (183).jpg new file mode 100644 index 000000000..1b8aad5ec Binary files /dev/null and b/train_image_folder/worker (183).jpg differ diff --git a/train_image_folder/worker (184).jpg b/train_image_folder/worker (184).jpg new file mode 100644 index 000000000..2cb43dc80 Binary files /dev/null and b/train_image_folder/worker (184).jpg differ diff --git a/train_image_folder/worker (185).jpg b/train_image_folder/worker (185).jpg new file mode 100644 index 000000000..1afdff42f Binary files /dev/null and b/train_image_folder/worker (185).jpg differ diff --git a/train_image_folder/worker (186).jpg b/train_image_folder/worker (186).jpg new file mode 100644 index 000000000..5cff45188 Binary files /dev/null and b/train_image_folder/worker (186).jpg differ diff --git a/train_image_folder/worker (187).jpg b/train_image_folder/worker (187).jpg new file mode 100644 index 000000000..5970ce585 Binary files /dev/null and b/train_image_folder/worker (187).jpg differ diff --git a/train_image_folder/worker (188).jpg b/train_image_folder/worker (188).jpg new file mode 100644 index 000000000..6baccc56d Binary files /dev/null and b/train_image_folder/worker (188).jpg differ diff --git a/train_image_folder/worker (189).jpg b/train_image_folder/worker (189).jpg new file mode 100644 index 000000000..2ba185f17 Binary files /dev/null and b/train_image_folder/worker (189).jpg differ diff --git a/train_image_folder/worker (19).jpg b/train_image_folder/worker (19).jpg new file mode 100644 index 000000000..e5d965c44 Binary files /dev/null and b/train_image_folder/worker (19).jpg differ diff --git a/train_image_folder/worker (190).jpg b/train_image_folder/worker (190).jpg new file mode 100644 index 000000000..d75fa168c Binary files /dev/null and b/train_image_folder/worker (190).jpg differ diff --git a/train_image_folder/worker (191).jpg b/train_image_folder/worker (191).jpg new file mode 100644 index 000000000..aa915fb2c Binary files /dev/null and b/train_image_folder/worker (191).jpg differ diff --git a/train_image_folder/worker (192).jpg b/train_image_folder/worker (192).jpg new file mode 100644 index 000000000..0ffb73e93 Binary files /dev/null and b/train_image_folder/worker (192).jpg differ diff --git a/train_image_folder/worker (193).jpg b/train_image_folder/worker (193).jpg new file mode 100644 index 000000000..656f2ba6b Binary files /dev/null and b/train_image_folder/worker (193).jpg differ diff --git a/train_image_folder/worker (194).jpg b/train_image_folder/worker (194).jpg new file mode 100644 index 000000000..1f4c4f7b4 Binary files /dev/null and b/train_image_folder/worker (194).jpg differ diff --git a/train_image_folder/worker (195).jpg b/train_image_folder/worker (195).jpg new file mode 100644 index 000000000..e40e9acfc Binary files /dev/null and b/train_image_folder/worker (195).jpg differ diff --git a/train_image_folder/worker (196).jpg b/train_image_folder/worker (196).jpg new file mode 100644 index 000000000..7d5634dc1 Binary files /dev/null and b/train_image_folder/worker (196).jpg differ diff --git a/train_image_folder/worker (197).jpg b/train_image_folder/worker (197).jpg new file mode 100644 index 000000000..71f6d6654 Binary files /dev/null and b/train_image_folder/worker (197).jpg differ diff --git a/train_image_folder/worker (198).jpg b/train_image_folder/worker (198).jpg new file mode 100644 index 000000000..ae976bfac Binary files /dev/null and b/train_image_folder/worker (198).jpg differ diff --git a/train_image_folder/worker (199).jpg b/train_image_folder/worker (199).jpg new file mode 100644 index 000000000..634d0e37d Binary files /dev/null and b/train_image_folder/worker (199).jpg differ diff --git a/train_image_folder/worker (2).jpg b/train_image_folder/worker (2).jpg new file mode 100644 index 000000000..9a8b4e086 Binary files /dev/null and b/train_image_folder/worker (2).jpg differ diff --git a/train_image_folder/worker (20).jpg b/train_image_folder/worker (20).jpg new file mode 100644 index 000000000..a21e752a6 Binary files /dev/null and b/train_image_folder/worker (20).jpg differ diff --git a/train_image_folder/worker (200).jpg b/train_image_folder/worker (200).jpg new file mode 100644 index 000000000..94572e4e5 Binary files /dev/null and b/train_image_folder/worker (200).jpg differ diff --git a/train_image_folder/worker (201).jpg b/train_image_folder/worker (201).jpg new file mode 100644 index 000000000..dc478711f Binary files /dev/null and b/train_image_folder/worker (201).jpg differ diff --git a/train_image_folder/worker (203).jpg b/train_image_folder/worker (203).jpg new file mode 100644 index 000000000..a4e2fb3ac Binary files /dev/null and b/train_image_folder/worker (203).jpg differ diff --git a/train_image_folder/worker (204).jpg b/train_image_folder/worker (204).jpg new file mode 100644 index 000000000..2a9c52e6c Binary files /dev/null and b/train_image_folder/worker (204).jpg differ diff --git a/train_image_folder/worker (205).jpg b/train_image_folder/worker (205).jpg new file mode 100644 index 000000000..f5f0d766c Binary files /dev/null and b/train_image_folder/worker (205).jpg differ diff --git a/train_image_folder/worker (206).jpg b/train_image_folder/worker (206).jpg new file mode 100644 index 000000000..4bdc2a4c4 Binary files /dev/null and b/train_image_folder/worker (206).jpg differ diff --git a/train_image_folder/worker (207).jpg b/train_image_folder/worker (207).jpg new file mode 100644 index 000000000..6cb5db289 Binary files /dev/null and b/train_image_folder/worker (207).jpg differ diff --git a/train_image_folder/worker (208).jpg b/train_image_folder/worker (208).jpg new file mode 100644 index 000000000..10bd6cf91 Binary files /dev/null and b/train_image_folder/worker (208).jpg differ diff --git a/train_image_folder/worker (209).jpg b/train_image_folder/worker (209).jpg new file mode 100644 index 000000000..5d943df2a Binary files /dev/null and b/train_image_folder/worker (209).jpg differ diff --git a/train_image_folder/worker (21).jpg b/train_image_folder/worker (21).jpg new file mode 100644 index 000000000..c589db04d Binary files /dev/null and b/train_image_folder/worker (21).jpg differ diff --git a/train_image_folder/worker (211).jpg b/train_image_folder/worker (211).jpg new file mode 100644 index 000000000..e2e3e302c Binary files /dev/null and b/train_image_folder/worker (211).jpg differ diff --git a/train_image_folder/worker (212).jpg b/train_image_folder/worker (212).jpg new file mode 100644 index 000000000..9c5f84b99 Binary files /dev/null and b/train_image_folder/worker (212).jpg differ diff --git a/train_image_folder/worker (213).jpg b/train_image_folder/worker (213).jpg new file mode 100644 index 000000000..26612f767 Binary files /dev/null and b/train_image_folder/worker (213).jpg differ diff --git a/train_image_folder/worker (214).jpg b/train_image_folder/worker (214).jpg new file mode 100644 index 000000000..dd9fbe548 Binary files /dev/null and b/train_image_folder/worker (214).jpg differ diff --git a/train_image_folder/worker (215).jpg b/train_image_folder/worker (215).jpg new file mode 100644 index 000000000..77b678d27 Binary files /dev/null and b/train_image_folder/worker (215).jpg differ diff --git a/train_image_folder/worker (216).jpg b/train_image_folder/worker (216).jpg new file mode 100644 index 000000000..a61486097 Binary files /dev/null and b/train_image_folder/worker (216).jpg differ diff --git a/train_image_folder/worker (217).jpg b/train_image_folder/worker (217).jpg new file mode 100644 index 000000000..32ea5516c Binary files /dev/null and b/train_image_folder/worker (217).jpg differ diff --git a/train_image_folder/worker (218).jpg b/train_image_folder/worker (218).jpg new file mode 100644 index 000000000..b604cce11 Binary files /dev/null and b/train_image_folder/worker (218).jpg differ diff --git a/train_image_folder/worker (219).jpg b/train_image_folder/worker (219).jpg new file mode 100644 index 000000000..ffe7d5971 Binary files /dev/null and b/train_image_folder/worker (219).jpg differ diff --git a/train_image_folder/worker (220).jpg b/train_image_folder/worker (220).jpg new file mode 100644 index 000000000..851233dc2 Binary files /dev/null and b/train_image_folder/worker (220).jpg differ diff --git a/train_image_folder/worker (221).jpg b/train_image_folder/worker (221).jpg new file mode 100644 index 000000000..f411e3370 Binary files /dev/null and b/train_image_folder/worker (221).jpg differ diff --git a/train_image_folder/worker (222).jpg b/train_image_folder/worker (222).jpg new file mode 100644 index 000000000..8bec5cdc6 Binary files /dev/null and b/train_image_folder/worker (222).jpg differ diff --git a/train_image_folder/worker (223).jpg b/train_image_folder/worker (223).jpg new file mode 100644 index 000000000..ceae5d65f Binary files /dev/null and b/train_image_folder/worker (223).jpg differ diff --git a/train_image_folder/worker (224).jpg b/train_image_folder/worker (224).jpg new file mode 100644 index 000000000..f6aff1f6d Binary files /dev/null and b/train_image_folder/worker (224).jpg differ diff --git a/train_image_folder/worker (225).jpg b/train_image_folder/worker (225).jpg new file mode 100644 index 000000000..3b4eb9fb9 Binary files /dev/null and b/train_image_folder/worker (225).jpg differ diff --git a/train_image_folder/worker (226).jpg b/train_image_folder/worker (226).jpg new file mode 100644 index 000000000..069424b4c Binary files /dev/null and b/train_image_folder/worker (226).jpg differ diff --git a/train_image_folder/worker (227).jpg b/train_image_folder/worker (227).jpg new file mode 100644 index 000000000..eca99963e Binary files /dev/null and b/train_image_folder/worker (227).jpg differ diff --git a/train_image_folder/worker (228).jpg b/train_image_folder/worker (228).jpg new file mode 100644 index 000000000..2f944f2cf Binary files /dev/null and b/train_image_folder/worker (228).jpg differ diff --git a/train_image_folder/worker (229).jpg b/train_image_folder/worker (229).jpg new file mode 100644 index 000000000..087299c40 Binary files /dev/null and b/train_image_folder/worker (229).jpg differ diff --git a/train_image_folder/worker (23).jpg b/train_image_folder/worker (23).jpg new file mode 100644 index 000000000..9ab890354 Binary files /dev/null and b/train_image_folder/worker (23).jpg differ diff --git a/train_image_folder/worker (230).jpg b/train_image_folder/worker (230).jpg new file mode 100644 index 000000000..1ee583d92 Binary files /dev/null and b/train_image_folder/worker (230).jpg differ diff --git a/train_image_folder/worker (231).jpg b/train_image_folder/worker (231).jpg new file mode 100644 index 000000000..0bf307a1f Binary files /dev/null and b/train_image_folder/worker (231).jpg differ diff --git a/train_image_folder/worker (232).jpg b/train_image_folder/worker (232).jpg new file mode 100644 index 000000000..359567975 Binary files /dev/null and b/train_image_folder/worker (232).jpg differ diff --git a/train_image_folder/worker (233).jpg b/train_image_folder/worker (233).jpg new file mode 100644 index 000000000..044677bcb Binary files /dev/null and b/train_image_folder/worker (233).jpg differ diff --git a/train_image_folder/worker (234).jpg b/train_image_folder/worker (234).jpg new file mode 100644 index 000000000..35056cb8a Binary files /dev/null and b/train_image_folder/worker (234).jpg differ diff --git a/train_image_folder/worker (235).jpg b/train_image_folder/worker (235).jpg new file mode 100644 index 000000000..fc6e2e6ee Binary files /dev/null and b/train_image_folder/worker (235).jpg differ diff --git a/train_image_folder/worker (236).jpg b/train_image_folder/worker (236).jpg new file mode 100644 index 000000000..2e93d3907 Binary files /dev/null and b/train_image_folder/worker (236).jpg differ diff --git a/train_image_folder/worker (237).jpg b/train_image_folder/worker (237).jpg new file mode 100644 index 000000000..65381be07 Binary files /dev/null and b/train_image_folder/worker (237).jpg differ diff --git a/train_image_folder/worker (238).jpg b/train_image_folder/worker (238).jpg new file mode 100644 index 000000000..fb2fe3796 Binary files /dev/null and b/train_image_folder/worker (238).jpg differ diff --git a/train_image_folder/worker (239).jpg b/train_image_folder/worker (239).jpg new file mode 100644 index 000000000..2dfca2a92 Binary files /dev/null and b/train_image_folder/worker (239).jpg differ diff --git a/train_image_folder/worker (24).jpg b/train_image_folder/worker (24).jpg new file mode 100644 index 000000000..b46298a6b Binary files /dev/null and b/train_image_folder/worker (24).jpg differ diff --git a/train_image_folder/worker (240).jpg b/train_image_folder/worker (240).jpg new file mode 100644 index 000000000..55838c2fb Binary files /dev/null and b/train_image_folder/worker (240).jpg differ diff --git a/train_image_folder/worker (241).jpg b/train_image_folder/worker (241).jpg new file mode 100644 index 000000000..e15b84271 Binary files /dev/null and b/train_image_folder/worker (241).jpg differ diff --git a/train_image_folder/worker (242).jpg b/train_image_folder/worker (242).jpg new file mode 100644 index 000000000..fd45333c8 Binary files /dev/null and b/train_image_folder/worker (242).jpg differ diff --git a/train_image_folder/worker (243).jpg b/train_image_folder/worker (243).jpg new file mode 100644 index 000000000..6e211d135 Binary files /dev/null and b/train_image_folder/worker (243).jpg differ diff --git a/train_image_folder/worker (244).jpg b/train_image_folder/worker (244).jpg new file mode 100644 index 000000000..c5ee0a3a3 Binary files /dev/null and b/train_image_folder/worker (244).jpg differ diff --git a/train_image_folder/worker (245).jpg b/train_image_folder/worker (245).jpg new file mode 100644 index 000000000..de7cb9cb8 Binary files /dev/null and b/train_image_folder/worker (245).jpg differ diff --git a/train_image_folder/worker (247).jpg b/train_image_folder/worker (247).jpg new file mode 100644 index 000000000..dba475a76 Binary files /dev/null and b/train_image_folder/worker (247).jpg differ diff --git a/train_image_folder/worker (248).jpg b/train_image_folder/worker (248).jpg new file mode 100644 index 000000000..44f401c39 Binary files /dev/null and b/train_image_folder/worker (248).jpg differ diff --git a/train_image_folder/worker (249).jpg b/train_image_folder/worker (249).jpg new file mode 100644 index 000000000..42add2c83 Binary files /dev/null and b/train_image_folder/worker (249).jpg differ diff --git a/train_image_folder/worker (25).jpg b/train_image_folder/worker (25).jpg new file mode 100644 index 000000000..42ef97b10 Binary files /dev/null and b/train_image_folder/worker (25).jpg differ diff --git a/train_image_folder/worker (250).jpg b/train_image_folder/worker (250).jpg new file mode 100644 index 000000000..b69aa6fd8 Binary files /dev/null and b/train_image_folder/worker (250).jpg differ diff --git a/train_image_folder/worker (251).jpg b/train_image_folder/worker (251).jpg new file mode 100644 index 000000000..9c00b76a2 Binary files /dev/null and b/train_image_folder/worker (251).jpg differ diff --git a/train_image_folder/worker (252).jpg b/train_image_folder/worker (252).jpg new file mode 100644 index 000000000..31ad24daf Binary files /dev/null and b/train_image_folder/worker (252).jpg differ diff --git a/train_image_folder/worker (253).jpg b/train_image_folder/worker (253).jpg new file mode 100644 index 000000000..90fe8e7cc Binary files /dev/null and b/train_image_folder/worker (253).jpg differ diff --git a/train_image_folder/worker (254).jpg b/train_image_folder/worker (254).jpg new file mode 100644 index 000000000..e49ba2b92 Binary files /dev/null and b/train_image_folder/worker (254).jpg differ diff --git a/train_image_folder/worker (255).jpg b/train_image_folder/worker (255).jpg new file mode 100644 index 000000000..f28e106f6 Binary files /dev/null and b/train_image_folder/worker (255).jpg differ diff --git a/train_image_folder/worker (256).jpg b/train_image_folder/worker (256).jpg new file mode 100644 index 000000000..f2c786da3 Binary files /dev/null and b/train_image_folder/worker (256).jpg differ diff --git a/train_image_folder/worker (257).jpg b/train_image_folder/worker (257).jpg new file mode 100644 index 000000000..6642921c2 Binary files /dev/null and b/train_image_folder/worker (257).jpg differ diff --git a/train_image_folder/worker (258).jpg b/train_image_folder/worker (258).jpg new file mode 100644 index 000000000..8617a58e3 Binary files /dev/null and b/train_image_folder/worker (258).jpg differ diff --git a/train_image_folder/worker (259).jpg b/train_image_folder/worker (259).jpg new file mode 100644 index 000000000..a98bce97b Binary files /dev/null and b/train_image_folder/worker (259).jpg differ diff --git a/train_image_folder/worker (26).jpg b/train_image_folder/worker (26).jpg new file mode 100644 index 000000000..f8e1da281 Binary files /dev/null and b/train_image_folder/worker (26).jpg differ diff --git a/train_image_folder/worker (260).jpg b/train_image_folder/worker (260).jpg new file mode 100644 index 000000000..2d45b1dc7 Binary files /dev/null and b/train_image_folder/worker (260).jpg differ diff --git a/train_image_folder/worker (261).jpg b/train_image_folder/worker (261).jpg new file mode 100644 index 000000000..4cf41f2e0 Binary files /dev/null and b/train_image_folder/worker (261).jpg differ diff --git a/train_image_folder/worker (262).jpg b/train_image_folder/worker (262).jpg new file mode 100644 index 000000000..cedddd7c7 Binary files /dev/null and b/train_image_folder/worker (262).jpg differ diff --git a/train_image_folder/worker (263).jpg b/train_image_folder/worker (263).jpg new file mode 100644 index 000000000..e31f5bf06 Binary files /dev/null and b/train_image_folder/worker (263).jpg differ diff --git a/train_image_folder/worker (264).jpg b/train_image_folder/worker (264).jpg new file mode 100644 index 000000000..d97b04242 Binary files /dev/null and b/train_image_folder/worker (264).jpg differ diff --git a/train_image_folder/worker (265).jpg b/train_image_folder/worker (265).jpg new file mode 100644 index 000000000..c36f75949 Binary files /dev/null and b/train_image_folder/worker (265).jpg differ diff --git a/train_image_folder/worker (266).jpg b/train_image_folder/worker (266).jpg new file mode 100644 index 000000000..3f498cf3a Binary files /dev/null and b/train_image_folder/worker (266).jpg differ diff --git a/train_image_folder/worker (267).jpg b/train_image_folder/worker (267).jpg new file mode 100644 index 000000000..7786ac985 Binary files /dev/null and b/train_image_folder/worker (267).jpg differ diff --git a/train_image_folder/worker (268).jpg b/train_image_folder/worker (268).jpg new file mode 100644 index 000000000..08990628a Binary files /dev/null and b/train_image_folder/worker (268).jpg differ diff --git a/train_image_folder/worker (269).jpg b/train_image_folder/worker (269).jpg new file mode 100644 index 000000000..7850011c7 Binary files /dev/null and b/train_image_folder/worker (269).jpg differ diff --git a/train_image_folder/worker (27).jpg b/train_image_folder/worker (27).jpg new file mode 100644 index 000000000..f63322276 Binary files /dev/null and b/train_image_folder/worker (27).jpg differ diff --git a/train_image_folder/worker (270).jpg b/train_image_folder/worker (270).jpg new file mode 100644 index 000000000..77ccc0722 Binary files /dev/null and b/train_image_folder/worker (270).jpg differ diff --git a/train_image_folder/worker (271).jpg b/train_image_folder/worker (271).jpg new file mode 100644 index 000000000..a01497c8e Binary files /dev/null and b/train_image_folder/worker (271).jpg differ diff --git a/train_image_folder/worker (272).jpg b/train_image_folder/worker (272).jpg new file mode 100644 index 000000000..6ddb5740d Binary files /dev/null and b/train_image_folder/worker (272).jpg differ diff --git a/train_image_folder/worker (273).jpg b/train_image_folder/worker (273).jpg new file mode 100644 index 000000000..89a69b793 Binary files /dev/null and b/train_image_folder/worker (273).jpg differ diff --git a/train_image_folder/worker (275).jpg b/train_image_folder/worker (275).jpg new file mode 100644 index 000000000..642a7e689 Binary files /dev/null and b/train_image_folder/worker (275).jpg differ diff --git a/train_image_folder/worker (276).jpg b/train_image_folder/worker (276).jpg new file mode 100644 index 000000000..0727a1a78 Binary files /dev/null and b/train_image_folder/worker (276).jpg differ diff --git a/train_image_folder/worker (278).jpg b/train_image_folder/worker (278).jpg new file mode 100644 index 000000000..3c6b9d6ea Binary files /dev/null and b/train_image_folder/worker (278).jpg differ diff --git a/train_image_folder/worker (279).jpg b/train_image_folder/worker (279).jpg new file mode 100644 index 000000000..0bfc7234b Binary files /dev/null and b/train_image_folder/worker (279).jpg differ diff --git a/train_image_folder/worker (28).jpg b/train_image_folder/worker (28).jpg new file mode 100644 index 000000000..6d42c7639 Binary files /dev/null and b/train_image_folder/worker (28).jpg differ diff --git a/train_image_folder/worker (280).jpg b/train_image_folder/worker (280).jpg new file mode 100644 index 000000000..6c8a5b8c1 Binary files /dev/null and b/train_image_folder/worker (280).jpg differ diff --git a/train_image_folder/worker (281).jpg b/train_image_folder/worker (281).jpg new file mode 100644 index 000000000..76086c4b5 Binary files /dev/null and b/train_image_folder/worker (281).jpg differ diff --git a/train_image_folder/worker (282).jpg b/train_image_folder/worker (282).jpg new file mode 100644 index 000000000..a477ffd4d Binary files /dev/null and b/train_image_folder/worker (282).jpg differ diff --git a/train_image_folder/worker (283).jpg b/train_image_folder/worker (283).jpg new file mode 100644 index 000000000..3e8d39bd4 Binary files /dev/null and b/train_image_folder/worker (283).jpg differ diff --git a/train_image_folder/worker (284).jpg b/train_image_folder/worker (284).jpg new file mode 100644 index 000000000..e0450ab75 Binary files /dev/null and b/train_image_folder/worker (284).jpg differ diff --git a/train_image_folder/worker (285).jpg b/train_image_folder/worker (285).jpg new file mode 100644 index 000000000..89a68737a Binary files /dev/null and b/train_image_folder/worker (285).jpg differ diff --git a/train_image_folder/worker (289).jpg b/train_image_folder/worker (289).jpg new file mode 100644 index 000000000..d9e0a080d Binary files /dev/null and b/train_image_folder/worker (289).jpg differ diff --git a/train_image_folder/worker (29).jpg b/train_image_folder/worker (29).jpg new file mode 100644 index 000000000..d5297c1e4 Binary files /dev/null and b/train_image_folder/worker (29).jpg differ diff --git a/train_image_folder/worker (290).jpg b/train_image_folder/worker (290).jpg new file mode 100644 index 000000000..8e50aa2ff Binary files /dev/null and b/train_image_folder/worker (290).jpg differ diff --git a/train_image_folder/worker (291).jpg b/train_image_folder/worker (291).jpg new file mode 100644 index 000000000..7dfcaecd5 Binary files /dev/null and b/train_image_folder/worker (291).jpg differ diff --git a/train_image_folder/worker (293).jpg b/train_image_folder/worker (293).jpg new file mode 100644 index 000000000..29ce652c8 Binary files /dev/null and b/train_image_folder/worker (293).jpg differ diff --git a/train_image_folder/worker (295).jpg b/train_image_folder/worker (295).jpg new file mode 100644 index 000000000..4f21fba4b Binary files /dev/null and b/train_image_folder/worker (295).jpg differ diff --git a/train_image_folder/worker (296).jpg b/train_image_folder/worker (296).jpg new file mode 100644 index 000000000..4b25753bb Binary files /dev/null and b/train_image_folder/worker (296).jpg differ diff --git a/train_image_folder/worker (298).jpg b/train_image_folder/worker (298).jpg new file mode 100644 index 000000000..82290d7ab Binary files /dev/null and b/train_image_folder/worker (298).jpg differ diff --git a/train_image_folder/worker (299).jpg b/train_image_folder/worker (299).jpg new file mode 100644 index 000000000..fa3d10b82 Binary files /dev/null and b/train_image_folder/worker (299).jpg differ diff --git a/train_image_folder/worker (3).jpg b/train_image_folder/worker (3).jpg new file mode 100644 index 000000000..8d4542f87 Binary files /dev/null and b/train_image_folder/worker (3).jpg differ diff --git a/train_image_folder/worker (30).jpg b/train_image_folder/worker (30).jpg new file mode 100644 index 000000000..e2cb45ce4 Binary files /dev/null and b/train_image_folder/worker (30).jpg differ diff --git a/train_image_folder/worker (300).jpg b/train_image_folder/worker (300).jpg new file mode 100644 index 000000000..d56191ede Binary files /dev/null and b/train_image_folder/worker (300).jpg differ diff --git a/train_image_folder/worker (301).jpg b/train_image_folder/worker (301).jpg new file mode 100644 index 000000000..6e40ecafc Binary files /dev/null and b/train_image_folder/worker (301).jpg differ diff --git a/train_image_folder/worker (302).jpg b/train_image_folder/worker (302).jpg new file mode 100644 index 000000000..22c7289fd Binary files /dev/null and b/train_image_folder/worker (302).jpg differ diff --git a/train_image_folder/worker (304).jpg b/train_image_folder/worker (304).jpg new file mode 100644 index 000000000..88894ea85 Binary files /dev/null and b/train_image_folder/worker (304).jpg differ diff --git a/train_image_folder/worker (305).jpg b/train_image_folder/worker (305).jpg new file mode 100644 index 000000000..cde0a7aa3 Binary files /dev/null and b/train_image_folder/worker (305).jpg differ diff --git a/train_image_folder/worker (306).jpg b/train_image_folder/worker (306).jpg new file mode 100644 index 000000000..38262aed5 Binary files /dev/null and b/train_image_folder/worker (306).jpg differ diff --git a/train_image_folder/worker (307).jpg b/train_image_folder/worker (307).jpg new file mode 100644 index 000000000..6a67de8a2 Binary files /dev/null and b/train_image_folder/worker (307).jpg differ diff --git a/train_image_folder/worker (308).jpg b/train_image_folder/worker (308).jpg new file mode 100644 index 000000000..ad689a414 Binary files /dev/null and b/train_image_folder/worker (308).jpg differ diff --git a/train_image_folder/worker (309).jpg b/train_image_folder/worker (309).jpg new file mode 100644 index 000000000..11ad8a0e2 Binary files /dev/null and b/train_image_folder/worker (309).jpg differ diff --git a/train_image_folder/worker (310).jpg b/train_image_folder/worker (310).jpg new file mode 100644 index 000000000..ed85ebca7 Binary files /dev/null and b/train_image_folder/worker (310).jpg differ diff --git a/train_image_folder/worker (312).jpg b/train_image_folder/worker (312).jpg new file mode 100644 index 000000000..e47b906d4 Binary files /dev/null and b/train_image_folder/worker (312).jpg differ diff --git a/train_image_folder/worker (313).jpg b/train_image_folder/worker (313).jpg new file mode 100644 index 000000000..f0780afd5 Binary files /dev/null and b/train_image_folder/worker (313).jpg differ diff --git a/train_image_folder/worker (314).jpg b/train_image_folder/worker (314).jpg new file mode 100644 index 000000000..db988b91d Binary files /dev/null and b/train_image_folder/worker (314).jpg differ diff --git a/train_image_folder/worker (315).jpg b/train_image_folder/worker (315).jpg new file mode 100644 index 000000000..7f673b192 Binary files /dev/null and b/train_image_folder/worker (315).jpg differ diff --git a/train_image_folder/worker (316).jpg b/train_image_folder/worker (316).jpg new file mode 100644 index 000000000..71ed2a306 Binary files /dev/null and b/train_image_folder/worker (316).jpg differ diff --git a/train_image_folder/worker (317).jpg b/train_image_folder/worker (317).jpg new file mode 100644 index 000000000..04f3f9b34 Binary files /dev/null and b/train_image_folder/worker (317).jpg differ diff --git a/train_image_folder/worker (318).jpg b/train_image_folder/worker (318).jpg new file mode 100644 index 000000000..9571671fe Binary files /dev/null and b/train_image_folder/worker (318).jpg differ diff --git a/train_image_folder/worker (319).jpg b/train_image_folder/worker (319).jpg new file mode 100644 index 000000000..4ff8ab792 Binary files /dev/null and b/train_image_folder/worker (319).jpg differ diff --git a/train_image_folder/worker (32).jpg b/train_image_folder/worker (32).jpg new file mode 100644 index 000000000..ad3be3965 Binary files /dev/null and b/train_image_folder/worker (32).jpg differ diff --git a/train_image_folder/worker (320).jpg b/train_image_folder/worker (320).jpg new file mode 100644 index 000000000..0258d1374 Binary files /dev/null and b/train_image_folder/worker (320).jpg differ diff --git a/train_image_folder/worker (321).jpg b/train_image_folder/worker (321).jpg new file mode 100644 index 000000000..e1ec41709 Binary files /dev/null and b/train_image_folder/worker (321).jpg differ diff --git a/train_image_folder/worker (322).jpg b/train_image_folder/worker (322).jpg new file mode 100644 index 000000000..0104b0b24 Binary files /dev/null and b/train_image_folder/worker (322).jpg differ diff --git a/train_image_folder/worker (323).jpg b/train_image_folder/worker (323).jpg new file mode 100644 index 000000000..946ed6862 Binary files /dev/null and b/train_image_folder/worker (323).jpg differ diff --git a/train_image_folder/worker (324).jpg b/train_image_folder/worker (324).jpg new file mode 100644 index 000000000..107a527c1 Binary files /dev/null and b/train_image_folder/worker (324).jpg differ diff --git a/train_image_folder/worker (327).jpg b/train_image_folder/worker (327).jpg new file mode 100644 index 000000000..c8b22d4ba Binary files /dev/null and b/train_image_folder/worker (327).jpg differ diff --git a/train_image_folder/worker (328).jpg b/train_image_folder/worker (328).jpg new file mode 100644 index 000000000..9f467bd37 Binary files /dev/null and b/train_image_folder/worker (328).jpg differ diff --git a/train_image_folder/worker (33).jpg b/train_image_folder/worker (33).jpg new file mode 100644 index 000000000..f9f982b49 Binary files /dev/null and b/train_image_folder/worker (33).jpg differ diff --git a/train_image_folder/worker (330).jpg b/train_image_folder/worker (330).jpg new file mode 100644 index 000000000..aace0e1b4 Binary files /dev/null and b/train_image_folder/worker (330).jpg differ diff --git a/train_image_folder/worker (331).jpg b/train_image_folder/worker (331).jpg new file mode 100644 index 000000000..2a1505fcc Binary files /dev/null and b/train_image_folder/worker (331).jpg differ diff --git a/train_image_folder/worker (332).jpg b/train_image_folder/worker (332).jpg new file mode 100644 index 000000000..5150d81a4 Binary files /dev/null and b/train_image_folder/worker (332).jpg differ diff --git a/train_image_folder/worker (333).jpg b/train_image_folder/worker (333).jpg new file mode 100644 index 000000000..993c58d35 Binary files /dev/null and b/train_image_folder/worker (333).jpg differ diff --git a/train_image_folder/worker (334).jpg b/train_image_folder/worker (334).jpg new file mode 100644 index 000000000..ab7e84afd Binary files /dev/null and b/train_image_folder/worker (334).jpg differ diff --git a/train_image_folder/worker (335).jpg b/train_image_folder/worker (335).jpg new file mode 100644 index 000000000..47476cec6 Binary files /dev/null and b/train_image_folder/worker (335).jpg differ diff --git a/train_image_folder/worker (337).jpg b/train_image_folder/worker (337).jpg new file mode 100644 index 000000000..f3d3feebe Binary files /dev/null and b/train_image_folder/worker (337).jpg differ diff --git a/train_image_folder/worker (338).jpg b/train_image_folder/worker (338).jpg new file mode 100644 index 000000000..033644819 Binary files /dev/null and b/train_image_folder/worker (338).jpg differ diff --git a/train_image_folder/worker (339).jpg b/train_image_folder/worker (339).jpg new file mode 100644 index 000000000..335af3149 Binary files /dev/null and b/train_image_folder/worker (339).jpg differ diff --git a/train_image_folder/worker (34).jpg b/train_image_folder/worker (34).jpg new file mode 100644 index 000000000..ebea79448 Binary files /dev/null and b/train_image_folder/worker (34).jpg differ diff --git a/train_image_folder/worker (340).jpg b/train_image_folder/worker (340).jpg new file mode 100644 index 000000000..fb41bfce1 Binary files /dev/null and b/train_image_folder/worker (340).jpg differ diff --git a/train_image_folder/worker (341).jpg b/train_image_folder/worker (341).jpg new file mode 100644 index 000000000..4774ad379 Binary files /dev/null and b/train_image_folder/worker (341).jpg differ diff --git a/train_image_folder/worker (345).jpg b/train_image_folder/worker (345).jpg new file mode 100644 index 000000000..6e82bd33e Binary files /dev/null and b/train_image_folder/worker (345).jpg differ diff --git a/train_image_folder/worker (346).jpg b/train_image_folder/worker (346).jpg new file mode 100644 index 000000000..3298663d0 Binary files /dev/null and b/train_image_folder/worker (346).jpg differ diff --git a/train_image_folder/worker (348).jpg b/train_image_folder/worker (348).jpg new file mode 100644 index 000000000..2f58bf5f4 Binary files /dev/null and b/train_image_folder/worker (348).jpg differ diff --git a/train_image_folder/worker (349).jpg b/train_image_folder/worker (349).jpg new file mode 100644 index 000000000..502aa95ae Binary files /dev/null and b/train_image_folder/worker (349).jpg differ diff --git a/train_image_folder/worker (35).jpg b/train_image_folder/worker (35).jpg new file mode 100644 index 000000000..5114fd162 Binary files /dev/null and b/train_image_folder/worker (35).jpg differ diff --git a/train_image_folder/worker (350).jpg b/train_image_folder/worker (350).jpg new file mode 100644 index 000000000..5f9cb36e2 Binary files /dev/null and b/train_image_folder/worker (350).jpg differ diff --git a/train_image_folder/worker (351).jpg b/train_image_folder/worker (351).jpg new file mode 100644 index 000000000..33118ec7f Binary files /dev/null and b/train_image_folder/worker (351).jpg differ diff --git a/train_image_folder/worker (353).jpg b/train_image_folder/worker (353).jpg new file mode 100644 index 000000000..145c10bec Binary files /dev/null and b/train_image_folder/worker (353).jpg differ diff --git a/train_image_folder/worker (354).jpg b/train_image_folder/worker (354).jpg new file mode 100644 index 000000000..310761bb0 Binary files /dev/null and b/train_image_folder/worker (354).jpg differ diff --git a/train_image_folder/worker (355).jpg b/train_image_folder/worker (355).jpg new file mode 100644 index 000000000..70514fc89 Binary files /dev/null and b/train_image_folder/worker (355).jpg differ diff --git a/train_image_folder/worker (357).jpg b/train_image_folder/worker (357).jpg new file mode 100644 index 000000000..f08c9384b Binary files /dev/null and b/train_image_folder/worker (357).jpg differ diff --git a/train_image_folder/worker (359).jpg b/train_image_folder/worker (359).jpg new file mode 100644 index 000000000..761f33fa3 Binary files /dev/null and b/train_image_folder/worker (359).jpg differ diff --git a/train_image_folder/worker (36).jpg b/train_image_folder/worker (36).jpg new file mode 100644 index 000000000..2907bc9cb Binary files /dev/null and b/train_image_folder/worker (36).jpg differ diff --git a/train_image_folder/worker (361).jpg b/train_image_folder/worker (361).jpg new file mode 100644 index 000000000..986312949 Binary files /dev/null and b/train_image_folder/worker (361).jpg differ diff --git a/train_image_folder/worker (362).jpg b/train_image_folder/worker (362).jpg new file mode 100644 index 000000000..1fbe5a9fb Binary files /dev/null and b/train_image_folder/worker (362).jpg differ diff --git a/train_image_folder/worker (363).jpg b/train_image_folder/worker (363).jpg new file mode 100644 index 000000000..9cdb2d163 Binary files /dev/null and b/train_image_folder/worker (363).jpg differ diff --git a/train_image_folder/worker (364).jpg b/train_image_folder/worker (364).jpg new file mode 100644 index 000000000..8cc42cfc7 Binary files /dev/null and b/train_image_folder/worker (364).jpg differ diff --git a/train_image_folder/worker (365).jpg b/train_image_folder/worker (365).jpg new file mode 100644 index 000000000..c470c4a45 Binary files /dev/null and b/train_image_folder/worker (365).jpg differ diff --git a/train_image_folder/worker (366).jpg b/train_image_folder/worker (366).jpg new file mode 100644 index 000000000..b0a107a58 Binary files /dev/null and b/train_image_folder/worker (366).jpg differ diff --git a/train_image_folder/worker (368).jpg b/train_image_folder/worker (368).jpg new file mode 100644 index 000000000..f72adde1e Binary files /dev/null and b/train_image_folder/worker (368).jpg differ diff --git a/train_image_folder/worker (369).jpg b/train_image_folder/worker (369).jpg new file mode 100644 index 000000000..69199afae Binary files /dev/null and b/train_image_folder/worker (369).jpg differ diff --git a/train_image_folder/worker (37).jpg b/train_image_folder/worker (37).jpg new file mode 100644 index 000000000..11f9799bc Binary files /dev/null and b/train_image_folder/worker (37).jpg differ diff --git a/train_image_folder/worker (371).jpg b/train_image_folder/worker (371).jpg new file mode 100644 index 000000000..4adf8d5df Binary files /dev/null and b/train_image_folder/worker (371).jpg differ diff --git a/train_image_folder/worker (372).jpg b/train_image_folder/worker (372).jpg new file mode 100644 index 000000000..c787d4aad Binary files /dev/null and b/train_image_folder/worker (372).jpg differ diff --git a/train_image_folder/worker (373).jpg b/train_image_folder/worker (373).jpg new file mode 100644 index 000000000..971682c3b Binary files /dev/null and b/train_image_folder/worker (373).jpg differ diff --git a/train_image_folder/worker (374).jpg b/train_image_folder/worker (374).jpg new file mode 100644 index 000000000..aecb06b28 Binary files /dev/null and b/train_image_folder/worker (374).jpg differ diff --git a/train_image_folder/worker (375).jpg b/train_image_folder/worker (375).jpg new file mode 100644 index 000000000..2e043ce18 Binary files /dev/null and b/train_image_folder/worker (375).jpg differ diff --git a/train_image_folder/worker (376).jpg b/train_image_folder/worker (376).jpg new file mode 100644 index 000000000..1df2bac65 Binary files /dev/null and b/train_image_folder/worker (376).jpg differ diff --git a/train_image_folder/worker (377).jpg b/train_image_folder/worker (377).jpg new file mode 100644 index 000000000..89e2d5b98 Binary files /dev/null and b/train_image_folder/worker (377).jpg differ diff --git a/train_image_folder/worker (378).jpg b/train_image_folder/worker (378).jpg new file mode 100644 index 000000000..03e69d70d Binary files /dev/null and b/train_image_folder/worker (378).jpg differ diff --git a/train_image_folder/worker (379).jpg b/train_image_folder/worker (379).jpg new file mode 100644 index 000000000..45de17cc3 Binary files /dev/null and b/train_image_folder/worker (379).jpg differ diff --git a/train_image_folder/worker (38).jpg b/train_image_folder/worker (38).jpg new file mode 100644 index 000000000..59f5c36ce Binary files /dev/null and b/train_image_folder/worker (38).jpg differ diff --git a/train_image_folder/worker (380).jpg b/train_image_folder/worker (380).jpg new file mode 100644 index 000000000..03f0b7cd8 Binary files /dev/null and b/train_image_folder/worker (380).jpg differ diff --git a/train_image_folder/worker (381).jpg b/train_image_folder/worker (381).jpg new file mode 100644 index 000000000..d841169eb Binary files /dev/null and b/train_image_folder/worker (381).jpg differ diff --git a/train_image_folder/worker (382).jpg b/train_image_folder/worker (382).jpg new file mode 100644 index 000000000..b027eed15 Binary files /dev/null and b/train_image_folder/worker (382).jpg differ diff --git a/train_image_folder/worker (383).jpg b/train_image_folder/worker (383).jpg new file mode 100644 index 000000000..da0aa82aa Binary files /dev/null and b/train_image_folder/worker (383).jpg differ diff --git a/train_image_folder/worker (384).jpg b/train_image_folder/worker (384).jpg new file mode 100644 index 000000000..5261f155e Binary files /dev/null and b/train_image_folder/worker (384).jpg differ diff --git a/train_image_folder/worker (385).jpg b/train_image_folder/worker (385).jpg new file mode 100644 index 000000000..3c9d544b3 Binary files /dev/null and b/train_image_folder/worker (385).jpg differ diff --git a/train_image_folder/worker (386).jpg b/train_image_folder/worker (386).jpg new file mode 100644 index 000000000..d27f2658d Binary files /dev/null and b/train_image_folder/worker (386).jpg differ diff --git a/train_image_folder/worker (387).jpg b/train_image_folder/worker (387).jpg new file mode 100644 index 000000000..4277b1d48 Binary files /dev/null and b/train_image_folder/worker (387).jpg differ diff --git a/train_image_folder/worker (388).jpg b/train_image_folder/worker (388).jpg new file mode 100644 index 000000000..8690ee367 Binary files /dev/null and b/train_image_folder/worker (388).jpg differ diff --git a/train_image_folder/worker (389).jpg b/train_image_folder/worker (389).jpg new file mode 100644 index 000000000..61ada342c Binary files /dev/null and b/train_image_folder/worker (389).jpg differ diff --git a/train_image_folder/worker (39).jpg b/train_image_folder/worker (39).jpg new file mode 100644 index 000000000..91630e261 Binary files /dev/null and b/train_image_folder/worker (39).jpg differ diff --git a/train_image_folder/worker (390).jpg b/train_image_folder/worker (390).jpg new file mode 100644 index 000000000..06c50309b Binary files /dev/null and b/train_image_folder/worker (390).jpg differ diff --git a/train_image_folder/worker (391).jpg b/train_image_folder/worker (391).jpg new file mode 100644 index 000000000..d68902ede Binary files /dev/null and b/train_image_folder/worker (391).jpg differ diff --git a/train_image_folder/worker (392).jpg b/train_image_folder/worker (392).jpg new file mode 100644 index 000000000..b78b971d6 Binary files /dev/null and b/train_image_folder/worker (392).jpg differ diff --git a/train_image_folder/worker (393).jpg b/train_image_folder/worker (393).jpg new file mode 100644 index 000000000..66cccda91 Binary files /dev/null and b/train_image_folder/worker (393).jpg differ diff --git a/train_image_folder/worker (394).jpg b/train_image_folder/worker (394).jpg new file mode 100644 index 000000000..6ffff3144 Binary files /dev/null and b/train_image_folder/worker (394).jpg differ diff --git a/train_image_folder/worker (395).jpg b/train_image_folder/worker (395).jpg new file mode 100644 index 000000000..f209c6464 Binary files /dev/null and b/train_image_folder/worker (395).jpg differ diff --git a/train_image_folder/worker (396).jpg b/train_image_folder/worker (396).jpg new file mode 100644 index 000000000..4d8af3900 Binary files /dev/null and b/train_image_folder/worker (396).jpg differ diff --git a/train_image_folder/worker (397).jpg b/train_image_folder/worker (397).jpg new file mode 100644 index 000000000..072289bc8 Binary files /dev/null and b/train_image_folder/worker (397).jpg differ diff --git a/train_image_folder/worker (398).jpg b/train_image_folder/worker (398).jpg new file mode 100644 index 000000000..df2c88f16 Binary files /dev/null and b/train_image_folder/worker (398).jpg differ diff --git a/train_image_folder/worker (399).jpg b/train_image_folder/worker (399).jpg new file mode 100644 index 000000000..6bf4d99f6 Binary files /dev/null and b/train_image_folder/worker (399).jpg differ diff --git a/train_image_folder/worker (4).jpg b/train_image_folder/worker (4).jpg new file mode 100644 index 000000000..d1abd06aa Binary files /dev/null and b/train_image_folder/worker (4).jpg differ diff --git a/train_image_folder/worker (40).jpg b/train_image_folder/worker (40).jpg new file mode 100644 index 000000000..c3b804fb1 Binary files /dev/null and b/train_image_folder/worker (40).jpg differ diff --git a/train_image_folder/worker (400).jpg b/train_image_folder/worker (400).jpg new file mode 100644 index 000000000..2a5d8d035 Binary files /dev/null and b/train_image_folder/worker (400).jpg differ diff --git a/train_image_folder/worker (401).jpg b/train_image_folder/worker (401).jpg new file mode 100644 index 000000000..065027ec5 Binary files /dev/null and b/train_image_folder/worker (401).jpg differ diff --git a/train_image_folder/worker (402).jpg b/train_image_folder/worker (402).jpg new file mode 100644 index 000000000..a78f1a723 Binary files /dev/null and b/train_image_folder/worker (402).jpg differ diff --git a/train_image_folder/worker (403).jpg b/train_image_folder/worker (403).jpg new file mode 100644 index 000000000..e0ac901cd Binary files /dev/null and b/train_image_folder/worker (403).jpg differ diff --git a/train_image_folder/worker (404).jpg b/train_image_folder/worker (404).jpg new file mode 100644 index 000000000..c3146a323 Binary files /dev/null and b/train_image_folder/worker (404).jpg differ diff --git a/train_image_folder/worker (405).jpg b/train_image_folder/worker (405).jpg new file mode 100644 index 000000000..e2cb45ce4 Binary files /dev/null and b/train_image_folder/worker (405).jpg differ diff --git a/train_image_folder/worker (406).jpg b/train_image_folder/worker (406).jpg new file mode 100644 index 000000000..4892ad703 Binary files /dev/null and b/train_image_folder/worker (406).jpg differ diff --git a/train_image_folder/worker (407).jpg b/train_image_folder/worker (407).jpg new file mode 100644 index 000000000..a0e6d0bb6 Binary files /dev/null and b/train_image_folder/worker (407).jpg differ diff --git a/train_image_folder/worker (408).jpg b/train_image_folder/worker (408).jpg new file mode 100644 index 000000000..c4a3e3a04 Binary files /dev/null and b/train_image_folder/worker (408).jpg differ diff --git a/train_image_folder/worker (409).jpg b/train_image_folder/worker (409).jpg new file mode 100644 index 000000000..26c885bc2 Binary files /dev/null and b/train_image_folder/worker (409).jpg differ diff --git a/train_image_folder/worker (41).jpg b/train_image_folder/worker (41).jpg new file mode 100644 index 000000000..d7908b8b3 Binary files /dev/null and b/train_image_folder/worker (41).jpg differ diff --git a/train_image_folder/worker (410).jpg b/train_image_folder/worker (410).jpg new file mode 100644 index 000000000..99f130130 Binary files /dev/null and b/train_image_folder/worker (410).jpg differ diff --git a/train_image_folder/worker (411).jpg b/train_image_folder/worker (411).jpg new file mode 100644 index 000000000..a53025af4 Binary files /dev/null and b/train_image_folder/worker (411).jpg differ diff --git a/train_image_folder/worker (412).jpg b/train_image_folder/worker (412).jpg new file mode 100644 index 000000000..d11811609 Binary files /dev/null and b/train_image_folder/worker (412).jpg differ diff --git a/train_image_folder/worker (413).jpg b/train_image_folder/worker (413).jpg new file mode 100644 index 000000000..224100f09 Binary files /dev/null and b/train_image_folder/worker (413).jpg differ diff --git a/train_image_folder/worker (414).jpg b/train_image_folder/worker (414).jpg new file mode 100644 index 000000000..5364391a8 Binary files /dev/null and b/train_image_folder/worker (414).jpg differ diff --git a/train_image_folder/worker (415).jpg b/train_image_folder/worker (415).jpg new file mode 100644 index 000000000..578bd708e Binary files /dev/null and b/train_image_folder/worker (415).jpg differ diff --git a/train_image_folder/worker (416).jpg b/train_image_folder/worker (416).jpg new file mode 100644 index 000000000..b41f855c3 Binary files /dev/null and b/train_image_folder/worker (416).jpg differ diff --git a/train_image_folder/worker (417).jpg b/train_image_folder/worker (417).jpg new file mode 100644 index 000000000..8cdf25cfd Binary files /dev/null and b/train_image_folder/worker (417).jpg differ diff --git a/train_image_folder/worker (418).jpg b/train_image_folder/worker (418).jpg new file mode 100644 index 000000000..d6bf461a7 Binary files /dev/null and b/train_image_folder/worker (418).jpg differ diff --git a/train_image_folder/worker (419).jpg b/train_image_folder/worker (419).jpg new file mode 100644 index 000000000..d7c6dfcf8 Binary files /dev/null and b/train_image_folder/worker (419).jpg differ diff --git a/train_image_folder/worker (42).jpg b/train_image_folder/worker (42).jpg new file mode 100644 index 000000000..d86489a10 Binary files /dev/null and b/train_image_folder/worker (42).jpg differ diff --git a/train_image_folder/worker (420).jpg b/train_image_folder/worker (420).jpg new file mode 100644 index 000000000..98db34427 Binary files /dev/null and b/train_image_folder/worker (420).jpg differ diff --git a/train_image_folder/worker (421).jpg b/train_image_folder/worker (421).jpg new file mode 100644 index 000000000..0192db733 Binary files /dev/null and b/train_image_folder/worker (421).jpg differ diff --git a/train_image_folder/worker (422).jpg b/train_image_folder/worker (422).jpg new file mode 100644 index 000000000..aedce1bb9 Binary files /dev/null and b/train_image_folder/worker (422).jpg differ diff --git a/train_image_folder/worker (423).jpg b/train_image_folder/worker (423).jpg new file mode 100644 index 000000000..d86489a10 Binary files /dev/null and b/train_image_folder/worker (423).jpg differ diff --git a/train_image_folder/worker (424).jpg b/train_image_folder/worker (424).jpg new file mode 100644 index 000000000..3b203d7fe Binary files /dev/null and b/train_image_folder/worker (424).jpg differ diff --git a/train_image_folder/worker (425).jpg b/train_image_folder/worker (425).jpg new file mode 100644 index 000000000..e9ce979b9 Binary files /dev/null and b/train_image_folder/worker (425).jpg differ diff --git a/train_image_folder/worker (426).jpg b/train_image_folder/worker (426).jpg new file mode 100644 index 000000000..01386d433 Binary files /dev/null and b/train_image_folder/worker (426).jpg differ diff --git a/train_image_folder/worker (427).jpg b/train_image_folder/worker (427).jpg new file mode 100644 index 000000000..f7123fda6 Binary files /dev/null and b/train_image_folder/worker (427).jpg differ diff --git a/train_image_folder/worker (428).jpg b/train_image_folder/worker (428).jpg new file mode 100644 index 000000000..8b634dd0c Binary files /dev/null and b/train_image_folder/worker (428).jpg differ diff --git a/train_image_folder/worker (429).jpg b/train_image_folder/worker (429).jpg new file mode 100644 index 000000000..8a7357cb6 Binary files /dev/null and b/train_image_folder/worker (429).jpg differ diff --git a/train_image_folder/worker (43).jpg b/train_image_folder/worker (43).jpg new file mode 100644 index 000000000..ab117e7d7 Binary files /dev/null and b/train_image_folder/worker (43).jpg differ diff --git a/train_image_folder/worker (430).jpg b/train_image_folder/worker (430).jpg new file mode 100644 index 000000000..d5297c1e4 Binary files /dev/null and b/train_image_folder/worker (430).jpg differ diff --git a/train_image_folder/worker (431).jpg b/train_image_folder/worker (431).jpg new file mode 100644 index 000000000..e6eafc4ba Binary files /dev/null and b/train_image_folder/worker (431).jpg differ diff --git a/train_image_folder/worker (432).jpg b/train_image_folder/worker (432).jpg new file mode 100644 index 000000000..e69ad916f Binary files /dev/null and b/train_image_folder/worker (432).jpg differ diff --git a/train_image_folder/worker (433).jpg b/train_image_folder/worker (433).jpg new file mode 100644 index 000000000..33c2d954d Binary files /dev/null and b/train_image_folder/worker (433).jpg differ diff --git a/train_image_folder/worker (434).jpg b/train_image_folder/worker (434).jpg new file mode 100644 index 000000000..4e74affa8 Binary files /dev/null and b/train_image_folder/worker (434).jpg differ diff --git a/train_image_folder/worker (435).jpg b/train_image_folder/worker (435).jpg new file mode 100644 index 000000000..410bdc01b Binary files /dev/null and b/train_image_folder/worker (435).jpg differ diff --git a/train_image_folder/worker (436).jpg b/train_image_folder/worker (436).jpg new file mode 100644 index 000000000..6fa703b65 Binary files /dev/null and b/train_image_folder/worker (436).jpg differ diff --git a/train_image_folder/worker (437).jpg b/train_image_folder/worker (437).jpg new file mode 100644 index 000000000..afdf6e41b Binary files /dev/null and b/train_image_folder/worker (437).jpg differ diff --git a/train_image_folder/worker (438).jpg b/train_image_folder/worker (438).jpg new file mode 100644 index 000000000..4ee80152d Binary files /dev/null and b/train_image_folder/worker (438).jpg differ diff --git a/train_image_folder/worker (439).jpg b/train_image_folder/worker (439).jpg new file mode 100644 index 000000000..3039461a3 Binary files /dev/null and b/train_image_folder/worker (439).jpg differ diff --git a/train_image_folder/worker (44).jpg b/train_image_folder/worker (44).jpg new file mode 100644 index 000000000..87213fd37 Binary files /dev/null and b/train_image_folder/worker (44).jpg differ diff --git a/train_image_folder/worker (440).jpg b/train_image_folder/worker (440).jpg new file mode 100644 index 000000000..bef11f698 Binary files /dev/null and b/train_image_folder/worker (440).jpg differ diff --git a/train_image_folder/worker (441).jpg b/train_image_folder/worker (441).jpg new file mode 100644 index 000000000..b6796eebf Binary files /dev/null and b/train_image_folder/worker (441).jpg differ diff --git a/train_image_folder/worker (442).jpg b/train_image_folder/worker (442).jpg new file mode 100644 index 000000000..ae83a5ca5 Binary files /dev/null and b/train_image_folder/worker (442).jpg differ diff --git a/train_image_folder/worker (443).jpg b/train_image_folder/worker (443).jpg new file mode 100644 index 000000000..01b15d8f1 Binary files /dev/null and b/train_image_folder/worker (443).jpg differ diff --git a/train_image_folder/worker (444).jpg b/train_image_folder/worker (444).jpg new file mode 100644 index 000000000..a2a7f5362 Binary files /dev/null and b/train_image_folder/worker (444).jpg differ diff --git a/train_image_folder/worker (445).jpg b/train_image_folder/worker (445).jpg new file mode 100644 index 000000000..47cc91d8b Binary files /dev/null and b/train_image_folder/worker (445).jpg differ diff --git a/train_image_folder/worker (446).jpg b/train_image_folder/worker (446).jpg new file mode 100644 index 000000000..e00af1fa1 Binary files /dev/null and b/train_image_folder/worker (446).jpg differ diff --git a/train_image_folder/worker (447).jpg b/train_image_folder/worker (447).jpg new file mode 100644 index 000000000..340fe8a88 Binary files /dev/null and b/train_image_folder/worker (447).jpg differ diff --git a/train_image_folder/worker (448).jpg b/train_image_folder/worker (448).jpg new file mode 100644 index 000000000..5b914f13b Binary files /dev/null and b/train_image_folder/worker (448).jpg differ diff --git a/train_image_folder/worker (449).jpg b/train_image_folder/worker (449).jpg new file mode 100644 index 000000000..c65b607dc Binary files /dev/null and b/train_image_folder/worker (449).jpg differ diff --git a/train_image_folder/worker (45).jpg b/train_image_folder/worker (45).jpg new file mode 100644 index 000000000..d33904d19 Binary files /dev/null and b/train_image_folder/worker (45).jpg differ diff --git a/train_image_folder/worker (450).jpg b/train_image_folder/worker (450).jpg new file mode 100644 index 000000000..bec653d49 Binary files /dev/null and b/train_image_folder/worker (450).jpg differ diff --git a/train_image_folder/worker (451).jpg b/train_image_folder/worker (451).jpg new file mode 100644 index 000000000..34a47c65d Binary files /dev/null and b/train_image_folder/worker (451).jpg differ diff --git a/train_image_folder/worker (452).jpg b/train_image_folder/worker (452).jpg new file mode 100644 index 000000000..148b3579f Binary files /dev/null and b/train_image_folder/worker (452).jpg differ diff --git a/train_image_folder/worker (453).jpg b/train_image_folder/worker (453).jpg new file mode 100644 index 000000000..817752425 Binary files /dev/null and b/train_image_folder/worker (453).jpg differ diff --git a/train_image_folder/worker (454).jpg b/train_image_folder/worker (454).jpg new file mode 100644 index 000000000..ab9326ff2 Binary files /dev/null and b/train_image_folder/worker (454).jpg differ diff --git a/train_image_folder/worker (455).jpg b/train_image_folder/worker (455).jpg new file mode 100644 index 000000000..d34b58940 Binary files /dev/null and b/train_image_folder/worker (455).jpg differ diff --git a/train_image_folder/worker (456).jpg b/train_image_folder/worker (456).jpg new file mode 100644 index 000000000..9e5f083bc Binary files /dev/null and b/train_image_folder/worker (456).jpg differ diff --git a/train_image_folder/worker (457).jpg b/train_image_folder/worker (457).jpg new file mode 100644 index 000000000..863e029ae Binary files /dev/null and b/train_image_folder/worker (457).jpg differ diff --git a/train_image_folder/worker (458).jpg b/train_image_folder/worker (458).jpg new file mode 100644 index 000000000..e3b95376f Binary files /dev/null and b/train_image_folder/worker (458).jpg differ diff --git a/train_image_folder/worker (459).jpg b/train_image_folder/worker (459).jpg new file mode 100644 index 000000000..35fcd1d85 Binary files /dev/null and b/train_image_folder/worker (459).jpg differ diff --git a/train_image_folder/worker (46).jpg b/train_image_folder/worker (46).jpg new file mode 100644 index 000000000..b6c0dcee9 Binary files /dev/null and b/train_image_folder/worker (46).jpg differ diff --git a/train_image_folder/worker (460).jpg b/train_image_folder/worker (460).jpg new file mode 100644 index 000000000..fd149885c Binary files /dev/null and b/train_image_folder/worker (460).jpg differ diff --git a/train_image_folder/worker (461).jpg b/train_image_folder/worker (461).jpg new file mode 100644 index 000000000..072e37878 Binary files /dev/null and b/train_image_folder/worker (461).jpg differ diff --git a/train_image_folder/worker (462).jpg b/train_image_folder/worker (462).jpg new file mode 100644 index 000000000..d0e6ad78d Binary files /dev/null and b/train_image_folder/worker (462).jpg differ diff --git a/train_image_folder/worker (463).jpg b/train_image_folder/worker (463).jpg new file mode 100644 index 000000000..4e90cb729 Binary files /dev/null and b/train_image_folder/worker (463).jpg differ diff --git a/train_image_folder/worker (464).jpg b/train_image_folder/worker (464).jpg new file mode 100644 index 000000000..2bfdc8edb Binary files /dev/null and b/train_image_folder/worker (464).jpg differ diff --git a/train_image_folder/worker (465).jpg b/train_image_folder/worker (465).jpg new file mode 100644 index 000000000..18b712c46 Binary files /dev/null and b/train_image_folder/worker (465).jpg differ diff --git a/train_image_folder/worker (466).jpg b/train_image_folder/worker (466).jpg new file mode 100644 index 000000000..4be73454b Binary files /dev/null and b/train_image_folder/worker (466).jpg differ diff --git a/train_image_folder/worker (467).jpg b/train_image_folder/worker (467).jpg new file mode 100644 index 000000000..109a2b3c9 Binary files /dev/null and b/train_image_folder/worker (467).jpg differ diff --git a/train_image_folder/worker (468).jpg b/train_image_folder/worker (468).jpg new file mode 100644 index 000000000..02d823f09 Binary files /dev/null and b/train_image_folder/worker (468).jpg differ diff --git a/train_image_folder/worker (469).jpg b/train_image_folder/worker (469).jpg new file mode 100644 index 000000000..516da0151 Binary files /dev/null and b/train_image_folder/worker (469).jpg differ diff --git a/train_image_folder/worker (47).jpg b/train_image_folder/worker (47).jpg new file mode 100644 index 000000000..fd149885c Binary files /dev/null and b/train_image_folder/worker (47).jpg differ diff --git a/train_image_folder/worker (470).jpg b/train_image_folder/worker (470).jpg new file mode 100644 index 000000000..612ce6bea Binary files /dev/null and b/train_image_folder/worker (470).jpg differ diff --git a/train_image_folder/worker (471).jpg b/train_image_folder/worker (471).jpg new file mode 100644 index 000000000..24e498c37 Binary files /dev/null and b/train_image_folder/worker (471).jpg differ diff --git a/train_image_folder/worker (472).jpg b/train_image_folder/worker (472).jpg new file mode 100644 index 000000000..ff9f72872 Binary files /dev/null and b/train_image_folder/worker (472).jpg differ diff --git a/train_image_folder/worker (473).jpg b/train_image_folder/worker (473).jpg new file mode 100644 index 000000000..6a6759f56 Binary files /dev/null and b/train_image_folder/worker (473).jpg differ diff --git a/train_image_folder/worker (474).jpg b/train_image_folder/worker (474).jpg new file mode 100644 index 000000000..7be97f093 Binary files /dev/null and b/train_image_folder/worker (474).jpg differ diff --git a/train_image_folder/worker (475).jpg b/train_image_folder/worker (475).jpg new file mode 100644 index 000000000..7b82c84e0 Binary files /dev/null and b/train_image_folder/worker (475).jpg differ diff --git a/train_image_folder/worker (476).jpg b/train_image_folder/worker (476).jpg new file mode 100644 index 000000000..7bddc4ee7 Binary files /dev/null and b/train_image_folder/worker (476).jpg differ diff --git a/train_image_folder/worker (477).jpg b/train_image_folder/worker (477).jpg new file mode 100644 index 000000000..7a64d7d2e Binary files /dev/null and b/train_image_folder/worker (477).jpg differ diff --git a/train_image_folder/worker (478).jpg b/train_image_folder/worker (478).jpg new file mode 100644 index 000000000..00c8ff7ec Binary files /dev/null and b/train_image_folder/worker (478).jpg differ diff --git a/train_image_folder/worker (479).jpg b/train_image_folder/worker (479).jpg new file mode 100644 index 000000000..4c1e5574f Binary files /dev/null and b/train_image_folder/worker (479).jpg differ diff --git a/train_image_folder/worker (48).jpg b/train_image_folder/worker (48).jpg new file mode 100644 index 000000000..c5d13da44 Binary files /dev/null and b/train_image_folder/worker (48).jpg differ diff --git a/train_image_folder/worker (480).jpg b/train_image_folder/worker (480).jpg new file mode 100644 index 000000000..e0bf476cd Binary files /dev/null and b/train_image_folder/worker (480).jpg differ diff --git a/train_image_folder/worker (481).jpg b/train_image_folder/worker (481).jpg new file mode 100644 index 000000000..aed42d7ca Binary files /dev/null and b/train_image_folder/worker (481).jpg differ diff --git a/train_image_folder/worker (482).jpg b/train_image_folder/worker (482).jpg new file mode 100644 index 000000000..bfca36b9c Binary files /dev/null and b/train_image_folder/worker (482).jpg differ diff --git a/train_image_folder/worker (483).jpg b/train_image_folder/worker (483).jpg new file mode 100644 index 000000000..f158d58eb Binary files /dev/null and b/train_image_folder/worker (483).jpg differ diff --git a/train_image_folder/worker (484).jpg b/train_image_folder/worker (484).jpg new file mode 100644 index 000000000..3b95eb2b4 Binary files /dev/null and b/train_image_folder/worker (484).jpg differ diff --git a/train_image_folder/worker (485).jpg b/train_image_folder/worker (485).jpg new file mode 100644 index 000000000..0a7ef1662 Binary files /dev/null and b/train_image_folder/worker (485).jpg differ diff --git a/train_image_folder/worker (486).jpg b/train_image_folder/worker (486).jpg new file mode 100644 index 000000000..4a0611177 Binary files /dev/null and b/train_image_folder/worker (486).jpg differ diff --git a/train_image_folder/worker (487).jpg b/train_image_folder/worker (487).jpg new file mode 100644 index 000000000..4f4700d70 Binary files /dev/null and b/train_image_folder/worker (487).jpg differ diff --git a/train_image_folder/worker (488).jpg b/train_image_folder/worker (488).jpg new file mode 100644 index 000000000..539c3767a Binary files /dev/null and b/train_image_folder/worker (488).jpg differ diff --git a/train_image_folder/worker (489).jpg b/train_image_folder/worker (489).jpg new file mode 100644 index 000000000..e6daea871 Binary files /dev/null and b/train_image_folder/worker (489).jpg differ diff --git a/train_image_folder/worker (49).jpg b/train_image_folder/worker (49).jpg new file mode 100644 index 000000000..e36f410df Binary files /dev/null and b/train_image_folder/worker (49).jpg differ diff --git a/train_image_folder/worker (490).jpg b/train_image_folder/worker (490).jpg new file mode 100644 index 000000000..71f6d6654 Binary files /dev/null and b/train_image_folder/worker (490).jpg differ diff --git a/train_image_folder/worker (491).jpg b/train_image_folder/worker (491).jpg new file mode 100644 index 000000000..366d2f01b Binary files /dev/null and b/train_image_folder/worker (491).jpg differ diff --git a/train_image_folder/worker (492).jpg b/train_image_folder/worker (492).jpg new file mode 100644 index 000000000..8433d64e0 Binary files /dev/null and b/train_image_folder/worker (492).jpg differ diff --git a/train_image_folder/worker (493).jpg b/train_image_folder/worker (493).jpg new file mode 100644 index 000000000..e0a383681 Binary files /dev/null and b/train_image_folder/worker (493).jpg differ diff --git a/train_image_folder/worker (494).jpg b/train_image_folder/worker (494).jpg new file mode 100644 index 000000000..0fa194c89 Binary files /dev/null and b/train_image_folder/worker (494).jpg differ diff --git a/train_image_folder/worker (495).jpg b/train_image_folder/worker (495).jpg new file mode 100644 index 000000000..de8a17df4 Binary files /dev/null and b/train_image_folder/worker (495).jpg differ diff --git a/train_image_folder/worker (496).jpg b/train_image_folder/worker (496).jpg new file mode 100644 index 000000000..a61486097 Binary files /dev/null and b/train_image_folder/worker (496).jpg differ diff --git a/train_image_folder/worker (497).jpg b/train_image_folder/worker (497).jpg new file mode 100644 index 000000000..573d57fd2 Binary files /dev/null and b/train_image_folder/worker (497).jpg differ diff --git a/train_image_folder/worker (498).jpg b/train_image_folder/worker (498).jpg new file mode 100644 index 000000000..4f14716f6 Binary files /dev/null and b/train_image_folder/worker (498).jpg differ diff --git a/train_image_folder/worker (499).jpg b/train_image_folder/worker (499).jpg new file mode 100644 index 000000000..88436505b Binary files /dev/null and b/train_image_folder/worker (499).jpg differ diff --git a/train_image_folder/worker (5).jpg b/train_image_folder/worker (5).jpg new file mode 100644 index 000000000..0831cde0a Binary files /dev/null and b/train_image_folder/worker (5).jpg differ diff --git a/train_image_folder/worker (50).jpg b/train_image_folder/worker (50).jpg new file mode 100644 index 000000000..5261f155e Binary files /dev/null and b/train_image_folder/worker (50).jpg differ diff --git a/train_image_folder/worker (500).jpg b/train_image_folder/worker (500).jpg new file mode 100644 index 000000000..340c8bb3a Binary files /dev/null and b/train_image_folder/worker (500).jpg differ diff --git a/train_image_folder/worker (501).jpg b/train_image_folder/worker (501).jpg new file mode 100644 index 000000000..c3b804fb1 Binary files /dev/null and b/train_image_folder/worker (501).jpg differ diff --git a/train_image_folder/worker (502).jpg b/train_image_folder/worker (502).jpg new file mode 100644 index 000000000..b701bcda5 Binary files /dev/null and b/train_image_folder/worker (502).jpg differ diff --git a/train_image_folder/worker (503).jpg b/train_image_folder/worker (503).jpg new file mode 100644 index 000000000..044677bcb Binary files /dev/null and b/train_image_folder/worker (503).jpg differ diff --git a/train_image_folder/worker (504).jpg b/train_image_folder/worker (504).jpg new file mode 100644 index 000000000..1ee583d92 Binary files /dev/null and b/train_image_folder/worker (504).jpg differ diff --git a/train_image_folder/worker (505).jpg b/train_image_folder/worker (505).jpg new file mode 100644 index 000000000..fd45333c8 Binary files /dev/null and b/train_image_folder/worker (505).jpg differ diff --git a/train_image_folder/worker (506).jpg b/train_image_folder/worker (506).jpg new file mode 100644 index 000000000..e8cf69afd Binary files /dev/null and b/train_image_folder/worker (506).jpg differ diff --git a/train_image_folder/worker (507).jpg b/train_image_folder/worker (507).jpg new file mode 100644 index 000000000..2a3eb55df Binary files /dev/null and b/train_image_folder/worker (507).jpg differ diff --git a/train_image_folder/worker (508).jpg b/train_image_folder/worker (508).jpg new file mode 100644 index 000000000..2db68ac96 Binary files /dev/null and b/train_image_folder/worker (508).jpg differ diff --git a/train_image_folder/worker (509).jpg b/train_image_folder/worker (509).jpg new file mode 100644 index 000000000..aea8eaabe Binary files /dev/null and b/train_image_folder/worker (509).jpg differ diff --git a/train_image_folder/worker (51).jpg b/train_image_folder/worker (51).jpg new file mode 100644 index 000000000..26d3de8b5 Binary files /dev/null and b/train_image_folder/worker (51).jpg differ diff --git a/train_image_folder/worker (510).jpg b/train_image_folder/worker (510).jpg new file mode 100644 index 000000000..3763dd1a4 Binary files /dev/null and b/train_image_folder/worker (510).jpg differ diff --git a/train_image_folder/worker (511).jpg b/train_image_folder/worker (511).jpg new file mode 100644 index 000000000..ddfe71068 Binary files /dev/null and b/train_image_folder/worker (511).jpg differ diff --git a/train_image_folder/worker (512).jpg b/train_image_folder/worker (512).jpg new file mode 100644 index 000000000..c233d46a3 Binary files /dev/null and b/train_image_folder/worker (512).jpg differ diff --git a/train_image_folder/worker (513).jpg b/train_image_folder/worker (513).jpg new file mode 100644 index 000000000..eac3a0db5 Binary files /dev/null and b/train_image_folder/worker (513).jpg differ diff --git a/train_image_folder/worker (514).jpg b/train_image_folder/worker (514).jpg new file mode 100644 index 000000000..7caaf4424 Binary files /dev/null and b/train_image_folder/worker (514).jpg differ diff --git a/train_image_folder/worker (515).jpg b/train_image_folder/worker (515).jpg new file mode 100644 index 000000000..573cf489a Binary files /dev/null and b/train_image_folder/worker (515).jpg differ diff --git a/train_image_folder/worker (516).jpg b/train_image_folder/worker (516).jpg new file mode 100644 index 000000000..6bb5440d7 Binary files /dev/null and b/train_image_folder/worker (516).jpg differ diff --git a/train_image_folder/worker (517).jpg b/train_image_folder/worker (517).jpg new file mode 100644 index 000000000..31ad24daf Binary files /dev/null and b/train_image_folder/worker (517).jpg differ diff --git a/train_image_folder/worker (518).jpg b/train_image_folder/worker (518).jpg new file mode 100644 index 000000000..49c6bb4d7 Binary files /dev/null and b/train_image_folder/worker (518).jpg differ diff --git a/train_image_folder/worker (519).jpg b/train_image_folder/worker (519).jpg new file mode 100644 index 000000000..d56191ede Binary files /dev/null and b/train_image_folder/worker (519).jpg differ diff --git a/train_image_folder/worker (52).jpg b/train_image_folder/worker (52).jpg new file mode 100644 index 000000000..c7e8f8bfb Binary files /dev/null and b/train_image_folder/worker (52).jpg differ diff --git a/train_image_folder/worker (520).jpg b/train_image_folder/worker (520).jpg new file mode 100644 index 000000000..386838567 Binary files /dev/null and b/train_image_folder/worker (520).jpg differ diff --git a/train_image_folder/worker (521).jpg b/train_image_folder/worker (521).jpg new file mode 100644 index 000000000..e3c26b3a8 Binary files /dev/null and b/train_image_folder/worker (521).jpg differ diff --git a/train_image_folder/worker (522).jpg b/train_image_folder/worker (522).jpg new file mode 100644 index 000000000..af3eef964 Binary files /dev/null and b/train_image_folder/worker (522).jpg differ diff --git a/train_image_folder/worker (523).jpg b/train_image_folder/worker (523).jpg new file mode 100644 index 000000000..da0cb2b1b Binary files /dev/null and b/train_image_folder/worker (523).jpg differ diff --git a/train_image_folder/worker (524).jpg b/train_image_folder/worker (524).jpg new file mode 100644 index 000000000..1cee14680 Binary files /dev/null and b/train_image_folder/worker (524).jpg differ diff --git a/train_image_folder/worker (525).jpg b/train_image_folder/worker (525).jpg new file mode 100644 index 000000000..e1ad3fb5e Binary files /dev/null and b/train_image_folder/worker (525).jpg differ diff --git a/train_image_folder/worker (526).jpg b/train_image_folder/worker (526).jpg new file mode 100644 index 000000000..402b86bac Binary files /dev/null and b/train_image_folder/worker (526).jpg differ diff --git a/train_image_folder/worker (527).jpg b/train_image_folder/worker (527).jpg new file mode 100644 index 000000000..152d89511 Binary files /dev/null and b/train_image_folder/worker (527).jpg differ diff --git a/train_image_folder/worker (528).jpg b/train_image_folder/worker (528).jpg new file mode 100644 index 000000000..721f3bcab Binary files /dev/null and b/train_image_folder/worker (528).jpg differ diff --git a/train_image_folder/worker (529).jpg b/train_image_folder/worker (529).jpg new file mode 100644 index 000000000..f7a66f1c6 Binary files /dev/null and b/train_image_folder/worker (529).jpg differ diff --git a/train_image_folder/worker (53).jpg b/train_image_folder/worker (53).jpg new file mode 100644 index 000000000..69d340bbc Binary files /dev/null and b/train_image_folder/worker (53).jpg differ diff --git a/train_image_folder/worker (530).jpg b/train_image_folder/worker (530).jpg new file mode 100644 index 000000000..089cedb58 Binary files /dev/null and b/train_image_folder/worker (530).jpg differ diff --git a/train_image_folder/worker (532).jpg b/train_image_folder/worker (532).jpg new file mode 100644 index 000000000..a6a42f346 Binary files /dev/null and b/train_image_folder/worker (532).jpg differ diff --git a/train_image_folder/worker (533).jpg b/train_image_folder/worker (533).jpg new file mode 100644 index 000000000..2cc9fc8ae Binary files /dev/null and b/train_image_folder/worker (533).jpg differ diff --git a/train_image_folder/worker (534).jpg b/train_image_folder/worker (534).jpg new file mode 100644 index 000000000..bfa30906d Binary files /dev/null and b/train_image_folder/worker (534).jpg differ diff --git a/train_image_folder/worker (535).jpg b/train_image_folder/worker (535).jpg new file mode 100644 index 000000000..c235920f8 Binary files /dev/null and b/train_image_folder/worker (535).jpg differ diff --git a/train_image_folder/worker (536).jpg b/train_image_folder/worker (536).jpg new file mode 100644 index 000000000..77dc8b850 Binary files /dev/null and b/train_image_folder/worker (536).jpg differ diff --git a/train_image_folder/worker (537).jpg b/train_image_folder/worker (537).jpg new file mode 100644 index 000000000..c0977bba7 Binary files /dev/null and b/train_image_folder/worker (537).jpg differ diff --git a/train_image_folder/worker (538).jpg b/train_image_folder/worker (538).jpg new file mode 100644 index 000000000..8c4b7c6b1 Binary files /dev/null and b/train_image_folder/worker (538).jpg differ diff --git a/train_image_folder/worker (539).jpg b/train_image_folder/worker (539).jpg new file mode 100644 index 000000000..fe90e356c Binary files /dev/null and b/train_image_folder/worker (539).jpg differ diff --git a/train_image_folder/worker (54).jpg b/train_image_folder/worker (54).jpg new file mode 100644 index 000000000..2d07b9400 Binary files /dev/null and b/train_image_folder/worker (54).jpg differ diff --git a/train_image_folder/worker (540).jpg b/train_image_folder/worker (540).jpg new file mode 100644 index 000000000..b5aa7e6c2 Binary files /dev/null and b/train_image_folder/worker (540).jpg differ diff --git a/train_image_folder/worker (541).jpg b/train_image_folder/worker (541).jpg new file mode 100644 index 000000000..f7fa5912c Binary files /dev/null and b/train_image_folder/worker (541).jpg differ diff --git a/train_image_folder/worker (542).jpg b/train_image_folder/worker (542).jpg new file mode 100644 index 000000000..5f1583ee7 Binary files /dev/null and b/train_image_folder/worker (542).jpg differ diff --git a/train_image_folder/worker (543).jpg b/train_image_folder/worker (543).jpg new file mode 100644 index 000000000..0a6e38005 Binary files /dev/null and b/train_image_folder/worker (543).jpg differ diff --git a/train_image_folder/worker (544).jpg b/train_image_folder/worker (544).jpg new file mode 100644 index 000000000..c3329980a Binary files /dev/null and b/train_image_folder/worker (544).jpg differ diff --git a/train_image_folder/worker (547).jpg b/train_image_folder/worker (547).jpg new file mode 100644 index 000000000..5e4851f48 Binary files /dev/null and b/train_image_folder/worker (547).jpg differ diff --git a/train_image_folder/worker (548).jpg b/train_image_folder/worker (548).jpg new file mode 100644 index 000000000..71eb9b432 Binary files /dev/null and b/train_image_folder/worker (548).jpg differ diff --git a/train_image_folder/worker (549).jpg b/train_image_folder/worker (549).jpg new file mode 100644 index 000000000..06f9b7dba Binary files /dev/null and b/train_image_folder/worker (549).jpg differ diff --git a/train_image_folder/worker (55).jpg b/train_image_folder/worker (55).jpg new file mode 100644 index 000000000..abc5ca882 Binary files /dev/null and b/train_image_folder/worker (55).jpg differ diff --git a/train_image_folder/worker (550).jpg b/train_image_folder/worker (550).jpg new file mode 100644 index 000000000..9ae632f9c Binary files /dev/null and b/train_image_folder/worker (550).jpg differ diff --git a/train_image_folder/worker (551).jpg b/train_image_folder/worker (551).jpg new file mode 100644 index 000000000..d1143eb6e Binary files /dev/null and b/train_image_folder/worker (551).jpg differ diff --git a/train_image_folder/worker (552).jpg b/train_image_folder/worker (552).jpg new file mode 100644 index 000000000..66cccda91 Binary files /dev/null and b/train_image_folder/worker (552).jpg differ diff --git a/train_image_folder/worker (553).jpg b/train_image_folder/worker (553).jpg new file mode 100644 index 000000000..06fd76066 Binary files /dev/null and b/train_image_folder/worker (553).jpg differ diff --git a/train_image_folder/worker (554).jpg b/train_image_folder/worker (554).jpg new file mode 100644 index 000000000..550a72b06 Binary files /dev/null and b/train_image_folder/worker (554).jpg differ diff --git a/train_image_folder/worker (555).jpg b/train_image_folder/worker (555).jpg new file mode 100644 index 000000000..47a1b8f4c Binary files /dev/null and b/train_image_folder/worker (555).jpg differ diff --git a/train_image_folder/worker (556).jpg b/train_image_folder/worker (556).jpg new file mode 100644 index 000000000..2fa7e3bfd Binary files /dev/null and b/train_image_folder/worker (556).jpg differ diff --git a/train_image_folder/worker (557).jpg b/train_image_folder/worker (557).jpg new file mode 100644 index 000000000..5d82e8308 Binary files /dev/null and b/train_image_folder/worker (557).jpg differ diff --git a/train_image_folder/worker (558).jpg b/train_image_folder/worker (558).jpg new file mode 100644 index 000000000..35dc37918 Binary files /dev/null and b/train_image_folder/worker (558).jpg differ diff --git a/train_image_folder/worker (559).jpg b/train_image_folder/worker (559).jpg new file mode 100644 index 000000000..6fd337938 Binary files /dev/null and b/train_image_folder/worker (559).jpg differ diff --git a/train_image_folder/worker (56).jpg b/train_image_folder/worker (56).jpg new file mode 100644 index 000000000..a53025af4 Binary files /dev/null and b/train_image_folder/worker (56).jpg differ diff --git a/train_image_folder/worker (560).jpg b/train_image_folder/worker (560).jpg new file mode 100644 index 000000000..46e8374c9 Binary files /dev/null and b/train_image_folder/worker (560).jpg differ diff --git a/train_image_folder/worker (561).jpg b/train_image_folder/worker (561).jpg new file mode 100644 index 000000000..8d3f830ae Binary files /dev/null and b/train_image_folder/worker (561).jpg differ diff --git a/train_image_folder/worker (562).jpg b/train_image_folder/worker (562).jpg new file mode 100644 index 000000000..90c4b47b9 Binary files /dev/null and b/train_image_folder/worker (562).jpg differ diff --git a/train_image_folder/worker (563).jpg b/train_image_folder/worker (563).jpg new file mode 100644 index 000000000..f64a69b44 Binary files /dev/null and b/train_image_folder/worker (563).jpg differ diff --git a/train_image_folder/worker (564).jpg b/train_image_folder/worker (564).jpg new file mode 100644 index 000000000..aae766f68 Binary files /dev/null and b/train_image_folder/worker (564).jpg differ diff --git a/train_image_folder/worker (565).jpg b/train_image_folder/worker (565).jpg new file mode 100644 index 000000000..8b0df0cc4 Binary files /dev/null and b/train_image_folder/worker (565).jpg differ diff --git a/train_image_folder/worker (566).jpg b/train_image_folder/worker (566).jpg new file mode 100644 index 000000000..a6437714f Binary files /dev/null and b/train_image_folder/worker (566).jpg differ diff --git a/train_image_folder/worker (567).jpg b/train_image_folder/worker (567).jpg new file mode 100644 index 000000000..82c9b7e51 Binary files /dev/null and b/train_image_folder/worker (567).jpg differ diff --git a/train_image_folder/worker (568).jpg b/train_image_folder/worker (568).jpg new file mode 100644 index 000000000..a47c74092 Binary files /dev/null and b/train_image_folder/worker (568).jpg differ diff --git a/train_image_folder/worker (569).jpg b/train_image_folder/worker (569).jpg new file mode 100644 index 000000000..d9628f17c Binary files /dev/null and b/train_image_folder/worker (569).jpg differ diff --git a/train_image_folder/worker (57).jpg b/train_image_folder/worker (57).jpg new file mode 100644 index 000000000..f8c4f1546 Binary files /dev/null and b/train_image_folder/worker (57).jpg differ diff --git a/train_image_folder/worker (570).jpg b/train_image_folder/worker (570).jpg new file mode 100644 index 000000000..9725f08a8 Binary files /dev/null and b/train_image_folder/worker (570).jpg differ diff --git a/train_image_folder/worker (571).jpg b/train_image_folder/worker (571).jpg new file mode 100644 index 000000000..b9c7be4f4 Binary files /dev/null and b/train_image_folder/worker (571).jpg differ diff --git a/train_image_folder/worker (572).jpg b/train_image_folder/worker (572).jpg new file mode 100644 index 000000000..b531cc307 Binary files /dev/null and b/train_image_folder/worker (572).jpg differ diff --git a/train_image_folder/worker (573).jpg b/train_image_folder/worker (573).jpg new file mode 100644 index 000000000..667102903 Binary files /dev/null and b/train_image_folder/worker (573).jpg differ diff --git a/train_image_folder/worker (574).jpg b/train_image_folder/worker (574).jpg new file mode 100644 index 000000000..813492ad0 Binary files /dev/null and b/train_image_folder/worker (574).jpg differ diff --git a/train_image_folder/worker (575).jpg b/train_image_folder/worker (575).jpg new file mode 100644 index 000000000..f1e41afb7 Binary files /dev/null and b/train_image_folder/worker (575).jpg differ diff --git a/train_image_folder/worker (576).jpg b/train_image_folder/worker (576).jpg new file mode 100644 index 000000000..a73574f13 Binary files /dev/null and b/train_image_folder/worker (576).jpg differ diff --git a/train_image_folder/worker (577).jpg b/train_image_folder/worker (577).jpg new file mode 100644 index 000000000..00987c3fe Binary files /dev/null and b/train_image_folder/worker (577).jpg differ diff --git a/train_image_folder/worker (578).jpg b/train_image_folder/worker (578).jpg new file mode 100644 index 000000000..2c5908304 Binary files /dev/null and b/train_image_folder/worker (578).jpg differ diff --git a/train_image_folder/worker (579).jpg b/train_image_folder/worker (579).jpg new file mode 100644 index 000000000..6c300014a Binary files /dev/null and b/train_image_folder/worker (579).jpg differ diff --git a/train_image_folder/worker (58).jpg b/train_image_folder/worker (58).jpg new file mode 100644 index 000000000..59f408a2f Binary files /dev/null and b/train_image_folder/worker (58).jpg differ diff --git a/train_image_folder/worker (580).jpg b/train_image_folder/worker (580).jpg new file mode 100644 index 000000000..567719203 Binary files /dev/null and b/train_image_folder/worker (580).jpg differ diff --git a/train_image_folder/worker (581).jpg b/train_image_folder/worker (581).jpg new file mode 100644 index 000000000..aa58e34b4 Binary files /dev/null and b/train_image_folder/worker (581).jpg differ diff --git a/train_image_folder/worker (582).jpg b/train_image_folder/worker (582).jpg new file mode 100644 index 000000000..330b13380 Binary files /dev/null and b/train_image_folder/worker (582).jpg differ diff --git a/train_image_folder/worker (583).jpg b/train_image_folder/worker (583).jpg new file mode 100644 index 000000000..1feca6b9a Binary files /dev/null and b/train_image_folder/worker (583).jpg differ diff --git a/train_image_folder/worker (584).jpg b/train_image_folder/worker (584).jpg new file mode 100644 index 000000000..926bde1f9 Binary files /dev/null and b/train_image_folder/worker (584).jpg differ diff --git a/train_image_folder/worker (585).jpg b/train_image_folder/worker (585).jpg new file mode 100644 index 000000000..dac32de08 Binary files /dev/null and b/train_image_folder/worker (585).jpg differ diff --git a/train_image_folder/worker (586).jpg b/train_image_folder/worker (586).jpg new file mode 100644 index 000000000..2803ba3f8 Binary files /dev/null and b/train_image_folder/worker (586).jpg differ diff --git a/train_image_folder/worker (587).jpg b/train_image_folder/worker (587).jpg new file mode 100644 index 000000000..dd0d3888e Binary files /dev/null and b/train_image_folder/worker (587).jpg differ diff --git a/train_image_folder/worker (588).jpg b/train_image_folder/worker (588).jpg new file mode 100644 index 000000000..f8b3bd6a3 Binary files /dev/null and b/train_image_folder/worker (588).jpg differ diff --git a/train_image_folder/worker (589).jpg b/train_image_folder/worker (589).jpg new file mode 100644 index 000000000..c60ff7b35 Binary files /dev/null and b/train_image_folder/worker (589).jpg differ diff --git a/train_image_folder/worker (59).jpg b/train_image_folder/worker (59).jpg new file mode 100644 index 000000000..90a22fbb7 Binary files /dev/null and b/train_image_folder/worker (59).jpg differ diff --git a/train_image_folder/worker (590).jpg b/train_image_folder/worker (590).jpg new file mode 100644 index 000000000..f5627e3ad Binary files /dev/null and b/train_image_folder/worker (590).jpg differ diff --git a/train_image_folder/worker (591).jpg b/train_image_folder/worker (591).jpg new file mode 100644 index 000000000..824555b82 Binary files /dev/null and b/train_image_folder/worker (591).jpg differ diff --git a/train_image_folder/worker (592).jpg b/train_image_folder/worker (592).jpg new file mode 100644 index 000000000..81f5d3865 Binary files /dev/null and b/train_image_folder/worker (592).jpg differ diff --git a/train_image_folder/worker (593).jpg b/train_image_folder/worker (593).jpg new file mode 100644 index 000000000..f6dc3e917 Binary files /dev/null and b/train_image_folder/worker (593).jpg differ diff --git a/train_image_folder/worker (594).jpg b/train_image_folder/worker (594).jpg new file mode 100644 index 000000000..58fa099df Binary files /dev/null and b/train_image_folder/worker (594).jpg differ diff --git a/train_image_folder/worker (595).jpg b/train_image_folder/worker (595).jpg new file mode 100644 index 000000000..f96780ee2 Binary files /dev/null and b/train_image_folder/worker (595).jpg differ diff --git a/train_image_folder/worker (596).jpg b/train_image_folder/worker (596).jpg new file mode 100644 index 000000000..4f2793491 Binary files /dev/null and b/train_image_folder/worker (596).jpg differ diff --git a/train_image_folder/worker (597).jpg b/train_image_folder/worker (597).jpg new file mode 100644 index 000000000..f26367a93 Binary files /dev/null and b/train_image_folder/worker (597).jpg differ diff --git a/train_image_folder/worker (598).jpg b/train_image_folder/worker (598).jpg new file mode 100644 index 000000000..e0d31c9b4 Binary files /dev/null and b/train_image_folder/worker (598).jpg differ diff --git a/train_image_folder/worker (599).jpg b/train_image_folder/worker (599).jpg new file mode 100644 index 000000000..be31fd61f Binary files /dev/null and b/train_image_folder/worker (599).jpg differ diff --git a/train_image_folder/worker (6).jpg b/train_image_folder/worker (6).jpg new file mode 100644 index 000000000..50536b7c2 Binary files /dev/null and b/train_image_folder/worker (6).jpg differ diff --git a/train_image_folder/worker (60).jpg b/train_image_folder/worker (60).jpg new file mode 100644 index 000000000..5216e240f Binary files /dev/null and b/train_image_folder/worker (60).jpg differ diff --git a/train_image_folder/worker (600).jpg b/train_image_folder/worker (600).jpg new file mode 100644 index 000000000..6526bbe57 Binary files /dev/null and b/train_image_folder/worker (600).jpg differ diff --git a/train_image_folder/worker (601).jpg b/train_image_folder/worker (601).jpg new file mode 100644 index 000000000..d09c84c98 Binary files /dev/null and b/train_image_folder/worker (601).jpg differ diff --git a/train_image_folder/worker (602).jpg b/train_image_folder/worker (602).jpg new file mode 100644 index 000000000..627a412bb Binary files /dev/null and b/train_image_folder/worker (602).jpg differ diff --git a/train_image_folder/worker (603).jpg b/train_image_folder/worker (603).jpg new file mode 100644 index 000000000..99b10e1e5 Binary files /dev/null and b/train_image_folder/worker (603).jpg differ diff --git a/train_image_folder/worker (604).jpg b/train_image_folder/worker (604).jpg new file mode 100644 index 000000000..bc4b52780 Binary files /dev/null and b/train_image_folder/worker (604).jpg differ diff --git a/train_image_folder/worker (605).jpg b/train_image_folder/worker (605).jpg new file mode 100644 index 000000000..c0ee45c17 Binary files /dev/null and b/train_image_folder/worker (605).jpg differ diff --git a/train_image_folder/worker (606).jpg b/train_image_folder/worker (606).jpg new file mode 100644 index 000000000..5aaa08280 Binary files /dev/null and b/train_image_folder/worker (606).jpg differ diff --git a/train_image_folder/worker (607).jpg b/train_image_folder/worker (607).jpg new file mode 100644 index 000000000..48838d109 Binary files /dev/null and b/train_image_folder/worker (607).jpg differ diff --git a/train_image_folder/worker (608).jpg b/train_image_folder/worker (608).jpg new file mode 100644 index 000000000..a7a98b425 Binary files /dev/null and b/train_image_folder/worker (608).jpg differ diff --git a/train_image_folder/worker (609).jpg b/train_image_folder/worker (609).jpg new file mode 100644 index 000000000..33cc5e0d5 Binary files /dev/null and b/train_image_folder/worker (609).jpg differ diff --git a/train_image_folder/worker (61).jpg b/train_image_folder/worker (61).jpg new file mode 100644 index 000000000..312ce647e Binary files /dev/null and b/train_image_folder/worker (61).jpg differ diff --git a/train_image_folder/worker (610).jpg b/train_image_folder/worker (610).jpg new file mode 100644 index 000000000..07f768bcc Binary files /dev/null and b/train_image_folder/worker (610).jpg differ diff --git a/train_image_folder/worker (611).jpg b/train_image_folder/worker (611).jpg new file mode 100644 index 000000000..7c3b33ae9 Binary files /dev/null and b/train_image_folder/worker (611).jpg differ diff --git a/train_image_folder/worker (612).jpg b/train_image_folder/worker (612).jpg new file mode 100644 index 000000000..f9d0279eb Binary files /dev/null and b/train_image_folder/worker (612).jpg differ diff --git a/train_image_folder/worker (613).jpg b/train_image_folder/worker (613).jpg new file mode 100644 index 000000000..81e1ec0e6 Binary files /dev/null and b/train_image_folder/worker (613).jpg differ diff --git a/train_image_folder/worker (614).jpg b/train_image_folder/worker (614).jpg new file mode 100644 index 000000000..5d21184e1 Binary files /dev/null and b/train_image_folder/worker (614).jpg differ diff --git a/train_image_folder/worker (615).jpg b/train_image_folder/worker (615).jpg new file mode 100644 index 000000000..080a69637 Binary files /dev/null and b/train_image_folder/worker (615).jpg differ diff --git a/train_image_folder/worker (616).jpg b/train_image_folder/worker (616).jpg new file mode 100644 index 000000000..b5e57042c Binary files /dev/null and b/train_image_folder/worker (616).jpg differ diff --git a/train_image_folder/worker (617).jpg b/train_image_folder/worker (617).jpg new file mode 100644 index 000000000..02369b7f1 Binary files /dev/null and b/train_image_folder/worker (617).jpg differ diff --git a/train_image_folder/worker (618).jpg b/train_image_folder/worker (618).jpg new file mode 100644 index 000000000..8e976b1a2 Binary files /dev/null and b/train_image_folder/worker (618).jpg differ diff --git a/train_image_folder/worker (619).jpg b/train_image_folder/worker (619).jpg new file mode 100644 index 000000000..d06b7e2cb Binary files /dev/null and b/train_image_folder/worker (619).jpg differ diff --git a/train_image_folder/worker (62).jpg b/train_image_folder/worker (62).jpg new file mode 100644 index 000000000..d374711e5 Binary files /dev/null and b/train_image_folder/worker (62).jpg differ diff --git a/train_image_folder/worker (620).jpg b/train_image_folder/worker (620).jpg new file mode 100644 index 000000000..3ffbc8304 Binary files /dev/null and b/train_image_folder/worker (620).jpg differ diff --git a/train_image_folder/worker (621).jpg b/train_image_folder/worker (621).jpg new file mode 100644 index 000000000..721f3bcab Binary files /dev/null and b/train_image_folder/worker (621).jpg differ diff --git a/train_image_folder/worker (622).jpg b/train_image_folder/worker (622).jpg new file mode 100644 index 000000000..3a6b4ad54 Binary files /dev/null and b/train_image_folder/worker (622).jpg differ diff --git a/train_image_folder/worker (623).jpg b/train_image_folder/worker (623).jpg new file mode 100644 index 000000000..92acd8dbc Binary files /dev/null and b/train_image_folder/worker (623).jpg differ diff --git a/train_image_folder/worker (624).jpg b/train_image_folder/worker (624).jpg new file mode 100644 index 000000000..cae252d9c Binary files /dev/null and b/train_image_folder/worker (624).jpg differ diff --git a/train_image_folder/worker (625).jpg b/train_image_folder/worker (625).jpg new file mode 100644 index 000000000..a7309fecb Binary files /dev/null and b/train_image_folder/worker (625).jpg differ diff --git a/train_image_folder/worker (626).jpg b/train_image_folder/worker (626).jpg new file mode 100644 index 000000000..bd159d460 Binary files /dev/null and b/train_image_folder/worker (626).jpg differ diff --git a/train_image_folder/worker (627).jpg b/train_image_folder/worker (627).jpg new file mode 100644 index 000000000..fd5aa4185 Binary files /dev/null and b/train_image_folder/worker (627).jpg differ diff --git a/train_image_folder/worker (628).jpg b/train_image_folder/worker (628).jpg new file mode 100644 index 000000000..c606260c6 Binary files /dev/null and b/train_image_folder/worker (628).jpg differ diff --git a/train_image_folder/worker (629).jpg b/train_image_folder/worker (629).jpg new file mode 100644 index 000000000..658d63d8f Binary files /dev/null and b/train_image_folder/worker (629).jpg differ diff --git a/train_image_folder/worker (63).jpg b/train_image_folder/worker (63).jpg new file mode 100644 index 000000000..4ecbb6fc1 Binary files /dev/null and b/train_image_folder/worker (63).jpg differ diff --git a/train_image_folder/worker (630).jpg b/train_image_folder/worker (630).jpg new file mode 100644 index 000000000..6d800f39d Binary files /dev/null and b/train_image_folder/worker (630).jpg differ diff --git a/train_image_folder/worker (631).jpg b/train_image_folder/worker (631).jpg new file mode 100644 index 000000000..203932043 Binary files /dev/null and b/train_image_folder/worker (631).jpg differ diff --git a/train_image_folder/worker (632).jpg b/train_image_folder/worker (632).jpg new file mode 100644 index 000000000..d321cf614 Binary files /dev/null and b/train_image_folder/worker (632).jpg differ diff --git a/train_image_folder/worker (633).jpg b/train_image_folder/worker (633).jpg new file mode 100644 index 000000000..fa800d40c Binary files /dev/null and b/train_image_folder/worker (633).jpg differ diff --git a/train_image_folder/worker (634).jpg b/train_image_folder/worker (634).jpg new file mode 100644 index 000000000..b44d59b65 Binary files /dev/null and b/train_image_folder/worker (634).jpg differ diff --git a/train_image_folder/worker (635).jpg b/train_image_folder/worker (635).jpg new file mode 100644 index 000000000..d75127067 Binary files /dev/null and b/train_image_folder/worker (635).jpg differ diff --git a/train_image_folder/worker (636).jpg b/train_image_folder/worker (636).jpg new file mode 100644 index 000000000..516a01a8c Binary files /dev/null and b/train_image_folder/worker (636).jpg differ diff --git a/train_image_folder/worker (637).jpg b/train_image_folder/worker (637).jpg new file mode 100644 index 000000000..e00af1fa1 Binary files /dev/null and b/train_image_folder/worker (637).jpg differ diff --git a/train_image_folder/worker (638).jpg b/train_image_folder/worker (638).jpg new file mode 100644 index 000000000..c2b39f721 Binary files /dev/null and b/train_image_folder/worker (638).jpg differ diff --git a/train_image_folder/worker (639).jpg b/train_image_folder/worker (639).jpg new file mode 100644 index 000000000..50bf8498b Binary files /dev/null and b/train_image_folder/worker (639).jpg differ diff --git a/train_image_folder/worker (64).jpg b/train_image_folder/worker (64).jpg new file mode 100644 index 000000000..d34b58940 Binary files /dev/null and b/train_image_folder/worker (64).jpg differ diff --git a/train_image_folder/worker (640).jpg b/train_image_folder/worker (640).jpg new file mode 100644 index 000000000..7fd2a7571 Binary files /dev/null and b/train_image_folder/worker (640).jpg differ diff --git a/train_image_folder/worker (641).jpg b/train_image_folder/worker (641).jpg new file mode 100644 index 000000000..d47610fc8 Binary files /dev/null and b/train_image_folder/worker (641).jpg differ diff --git a/train_image_folder/worker (642).jpg b/train_image_folder/worker (642).jpg new file mode 100644 index 000000000..2bc510b01 Binary files /dev/null and b/train_image_folder/worker (642).jpg differ diff --git a/train_image_folder/worker (643).jpg b/train_image_folder/worker (643).jpg new file mode 100644 index 000000000..9df632318 Binary files /dev/null and b/train_image_folder/worker (643).jpg differ diff --git a/train_image_folder/worker (644).jpg b/train_image_folder/worker (644).jpg new file mode 100644 index 000000000..4e9d267ba Binary files /dev/null and b/train_image_folder/worker (644).jpg differ diff --git a/train_image_folder/worker (645).jpg b/train_image_folder/worker (645).jpg new file mode 100644 index 000000000..999a6d140 Binary files /dev/null and b/train_image_folder/worker (645).jpg differ diff --git a/train_image_folder/worker (646).jpg b/train_image_folder/worker (646).jpg new file mode 100644 index 000000000..25aa68dd7 Binary files /dev/null and b/train_image_folder/worker (646).jpg differ diff --git a/train_image_folder/worker (647).jpg b/train_image_folder/worker (647).jpg new file mode 100644 index 000000000..9e587908e Binary files /dev/null and b/train_image_folder/worker (647).jpg differ diff --git a/train_image_folder/worker (648).jpg b/train_image_folder/worker (648).jpg new file mode 100644 index 000000000..0ae7d1b43 Binary files /dev/null and b/train_image_folder/worker (648).jpg differ diff --git a/train_image_folder/worker (649).jpg b/train_image_folder/worker (649).jpg new file mode 100644 index 000000000..8e8b0f2f1 Binary files /dev/null and b/train_image_folder/worker (649).jpg differ diff --git a/train_image_folder/worker (65).jpg b/train_image_folder/worker (65).jpg new file mode 100644 index 000000000..e3ebdd23f Binary files /dev/null and b/train_image_folder/worker (65).jpg differ diff --git a/train_image_folder/worker (650).jpg b/train_image_folder/worker (650).jpg new file mode 100644 index 000000000..5f6796aa9 Binary files /dev/null and b/train_image_folder/worker (650).jpg differ diff --git a/train_image_folder/worker (675).jpg b/train_image_folder/worker (675).jpg new file mode 100644 index 000000000..9298318c1 Binary files /dev/null and b/train_image_folder/worker (675).jpg differ diff --git a/train_image_folder/worker (676).jpg b/train_image_folder/worker (676).jpg new file mode 100644 index 000000000..5c17c98da Binary files /dev/null and b/train_image_folder/worker (676).jpg differ diff --git a/train_image_folder/worker (677).jpg b/train_image_folder/worker (677).jpg new file mode 100644 index 000000000..9b34f651b Binary files /dev/null and b/train_image_folder/worker (677).jpg differ diff --git a/train_image_folder/worker (678).jpg b/train_image_folder/worker (678).jpg new file mode 100644 index 000000000..e80cdf687 Binary files /dev/null and b/train_image_folder/worker (678).jpg differ diff --git a/train_image_folder/worker (679).jpg b/train_image_folder/worker (679).jpg new file mode 100644 index 000000000..6aa8c460a Binary files /dev/null and b/train_image_folder/worker (679).jpg differ diff --git a/train_image_folder/worker (680).jpg b/train_image_folder/worker (680).jpg new file mode 100644 index 000000000..d5c88f003 Binary files /dev/null and b/train_image_folder/worker (680).jpg differ diff --git a/train_image_folder/worker (681).jpg b/train_image_folder/worker (681).jpg new file mode 100644 index 000000000..dfe1e1f63 Binary files /dev/null and b/train_image_folder/worker (681).jpg differ diff --git a/train_image_folder/worker (683).jpg b/train_image_folder/worker (683).jpg new file mode 100644 index 000000000..d12324d63 Binary files /dev/null and b/train_image_folder/worker (683).jpg differ diff --git a/train_image_folder/worker (684).jpg b/train_image_folder/worker (684).jpg new file mode 100644 index 000000000..09893a6e7 Binary files /dev/null and b/train_image_folder/worker (684).jpg differ diff --git a/train_image_folder/worker (685).jpg b/train_image_folder/worker (685).jpg new file mode 100644 index 000000000..610a169a5 Binary files /dev/null and b/train_image_folder/worker (685).jpg differ diff --git a/train_image_folder/worker (686).jpg b/train_image_folder/worker (686).jpg new file mode 100644 index 000000000..fa58d6330 Binary files /dev/null and b/train_image_folder/worker (686).jpg differ diff --git a/train_image_folder/worker (687).jpg b/train_image_folder/worker (687).jpg new file mode 100644 index 000000000..4312e9aa3 Binary files /dev/null and b/train_image_folder/worker (687).jpg differ diff --git a/train_image_folder/worker (688).jpg b/train_image_folder/worker (688).jpg new file mode 100644 index 000000000..3e22f8a3f Binary files /dev/null and b/train_image_folder/worker (688).jpg differ diff --git a/train_image_folder/worker (689).jpg b/train_image_folder/worker (689).jpg new file mode 100644 index 000000000..ee0e4d7ac Binary files /dev/null and b/train_image_folder/worker (689).jpg differ diff --git a/train_image_folder/worker (690).jpg b/train_image_folder/worker (690).jpg new file mode 100644 index 000000000..7404c3541 Binary files /dev/null and b/train_image_folder/worker (690).jpg differ diff --git a/train_image_folder/worker (691).jpg b/train_image_folder/worker (691).jpg new file mode 100644 index 000000000..e050f5ddb Binary files /dev/null and b/train_image_folder/worker (691).jpg differ diff --git a/train_image_folder/worker (692).jpg b/train_image_folder/worker (692).jpg new file mode 100644 index 000000000..cb6ccaaa1 Binary files /dev/null and b/train_image_folder/worker (692).jpg differ diff --git a/train_image_folder/worker (693).jpg b/train_image_folder/worker (693).jpg new file mode 100644 index 000000000..ed3812fb6 Binary files /dev/null and b/train_image_folder/worker (693).jpg differ diff --git a/train_image_folder/worker (694).jpg b/train_image_folder/worker (694).jpg new file mode 100644 index 000000000..173f0d57d Binary files /dev/null and b/train_image_folder/worker (694).jpg differ diff --git a/train_image_folder/worker (695).jpg b/train_image_folder/worker (695).jpg new file mode 100644 index 000000000..2a20d52cc Binary files /dev/null and b/train_image_folder/worker (695).jpg differ diff --git a/train_image_folder/worker (696).jpg b/train_image_folder/worker (696).jpg new file mode 100644 index 000000000..8b1108369 Binary files /dev/null and b/train_image_folder/worker (696).jpg differ diff --git a/train_image_folder/worker (697).jpg b/train_image_folder/worker (697).jpg new file mode 100644 index 000000000..deeedde2c Binary files /dev/null and b/train_image_folder/worker (697).jpg differ diff --git a/train_image_folder/worker (698).jpg b/train_image_folder/worker (698).jpg new file mode 100644 index 000000000..27cd46ba9 Binary files /dev/null and b/train_image_folder/worker (698).jpg differ diff --git a/train_image_folder/worker (699).jpg b/train_image_folder/worker (699).jpg new file mode 100644 index 000000000..3c9d544b3 Binary files /dev/null and b/train_image_folder/worker (699).jpg differ diff --git a/train_image_folder/worker (7).jpg b/train_image_folder/worker (7).jpg new file mode 100644 index 000000000..f103e240c Binary files /dev/null and b/train_image_folder/worker (7).jpg differ diff --git a/train_image_folder/worker (70).jpg b/train_image_folder/worker (70).jpg new file mode 100644 index 000000000..6b1c02b59 Binary files /dev/null and b/train_image_folder/worker (70).jpg differ diff --git a/train_image_folder/worker (700).jpg b/train_image_folder/worker (700).jpg new file mode 100644 index 000000000..ea0ac7574 Binary files /dev/null and b/train_image_folder/worker (700).jpg differ diff --git a/train_image_folder/worker (701).jpg b/train_image_folder/worker (701).jpg new file mode 100644 index 000000000..72111ac87 Binary files /dev/null and b/train_image_folder/worker (701).jpg differ diff --git a/train_image_folder/worker (702).jpg b/train_image_folder/worker (702).jpg new file mode 100644 index 000000000..bce1560c3 Binary files /dev/null and b/train_image_folder/worker (702).jpg differ diff --git a/train_image_folder/worker (703).jpg b/train_image_folder/worker (703).jpg new file mode 100644 index 000000000..6fd965b0f Binary files /dev/null and b/train_image_folder/worker (703).jpg differ diff --git a/train_image_folder/worker (704).jpg b/train_image_folder/worker (704).jpg new file mode 100644 index 000000000..2ad508794 Binary files /dev/null and b/train_image_folder/worker (704).jpg differ diff --git a/train_image_folder/worker (705).jpg b/train_image_folder/worker (705).jpg new file mode 100644 index 000000000..efb9d2b46 Binary files /dev/null and b/train_image_folder/worker (705).jpg differ diff --git a/train_image_folder/worker (706).jpg b/train_image_folder/worker (706).jpg new file mode 100644 index 000000000..592d54395 Binary files /dev/null and b/train_image_folder/worker (706).jpg differ diff --git a/train_image_folder/worker (708).jpg b/train_image_folder/worker (708).jpg new file mode 100644 index 000000000..d9babede2 Binary files /dev/null and b/train_image_folder/worker (708).jpg differ diff --git a/train_image_folder/worker (709).jpg b/train_image_folder/worker (709).jpg new file mode 100644 index 000000000..17dcf4bf1 Binary files /dev/null and b/train_image_folder/worker (709).jpg differ diff --git a/train_image_folder/worker (71).jpg b/train_image_folder/worker (71).jpg new file mode 100644 index 000000000..7370a2e41 Binary files /dev/null and b/train_image_folder/worker (71).jpg differ diff --git a/train_image_folder/worker (710).jpg b/train_image_folder/worker (710).jpg new file mode 100644 index 000000000..32973deba Binary files /dev/null and b/train_image_folder/worker (710).jpg differ diff --git a/train_image_folder/worker (711).jpg b/train_image_folder/worker (711).jpg new file mode 100644 index 000000000..10bd6cf91 Binary files /dev/null and b/train_image_folder/worker (711).jpg differ diff --git a/train_image_folder/worker (712).jpg b/train_image_folder/worker (712).jpg new file mode 100644 index 000000000..f41f2ab39 Binary files /dev/null and b/train_image_folder/worker (712).jpg differ diff --git a/train_image_folder/worker (713).jpg b/train_image_folder/worker (713).jpg new file mode 100644 index 000000000..a963859cd Binary files /dev/null and b/train_image_folder/worker (713).jpg differ diff --git a/train_image_folder/worker (714).jpg b/train_image_folder/worker (714).jpg new file mode 100644 index 000000000..6df719f6f Binary files /dev/null and b/train_image_folder/worker (714).jpg differ diff --git a/train_image_folder/worker (715).jpg b/train_image_folder/worker (715).jpg new file mode 100644 index 000000000..a1d82390a Binary files /dev/null and b/train_image_folder/worker (715).jpg differ diff --git a/train_image_folder/worker (716).jpg b/train_image_folder/worker (716).jpg new file mode 100644 index 000000000..f0c9a1eba Binary files /dev/null and b/train_image_folder/worker (716).jpg differ diff --git a/train_image_folder/worker (717).jpg b/train_image_folder/worker (717).jpg new file mode 100644 index 000000000..6b36d6332 Binary files /dev/null and b/train_image_folder/worker (717).jpg differ diff --git a/train_image_folder/worker (718).jpg b/train_image_folder/worker (718).jpg new file mode 100644 index 000000000..461d83e6d Binary files /dev/null and b/train_image_folder/worker (718).jpg differ diff --git a/train_image_folder/worker (719).jpg b/train_image_folder/worker (719).jpg new file mode 100644 index 000000000..1a40f53d5 Binary files /dev/null and b/train_image_folder/worker (719).jpg differ diff --git a/train_image_folder/worker (72).jpg b/train_image_folder/worker (72).jpg new file mode 100644 index 000000000..3ef57197b Binary files /dev/null and b/train_image_folder/worker (72).jpg differ diff --git a/train_image_folder/worker (720).jpg b/train_image_folder/worker (720).jpg new file mode 100644 index 000000000..3ec098975 Binary files /dev/null and b/train_image_folder/worker (720).jpg differ diff --git a/train_image_folder/worker (721).jpg b/train_image_folder/worker (721).jpg new file mode 100644 index 000000000..dbcd654ca Binary files /dev/null and b/train_image_folder/worker (721).jpg differ diff --git a/train_image_folder/worker (722).jpg b/train_image_folder/worker (722).jpg new file mode 100644 index 000000000..1870b5dec Binary files /dev/null and b/train_image_folder/worker (722).jpg differ diff --git a/train_image_folder/worker (723).jpg b/train_image_folder/worker (723).jpg new file mode 100644 index 000000000..4bef105a6 Binary files /dev/null and b/train_image_folder/worker (723).jpg differ diff --git a/train_image_folder/worker (724).jpg b/train_image_folder/worker (724).jpg new file mode 100644 index 000000000..062120ed0 Binary files /dev/null and b/train_image_folder/worker (724).jpg differ diff --git a/train_image_folder/worker (725).jpg b/train_image_folder/worker (725).jpg new file mode 100644 index 000000000..e1e2d58bf Binary files /dev/null and b/train_image_folder/worker (725).jpg differ diff --git a/train_image_folder/worker (726).jpg b/train_image_folder/worker (726).jpg new file mode 100644 index 000000000..e82be7dbe Binary files /dev/null and b/train_image_folder/worker (726).jpg differ diff --git a/train_image_folder/worker (727).jpg b/train_image_folder/worker (727).jpg new file mode 100644 index 000000000..758c2d9fb Binary files /dev/null and b/train_image_folder/worker (727).jpg differ diff --git a/train_image_folder/worker (728).jpg b/train_image_folder/worker (728).jpg new file mode 100644 index 000000000..3150b22cb Binary files /dev/null and b/train_image_folder/worker (728).jpg differ diff --git a/train_image_folder/worker (729).jpg b/train_image_folder/worker (729).jpg new file mode 100644 index 000000000..e83d015c4 Binary files /dev/null and b/train_image_folder/worker (729).jpg differ diff --git a/train_image_folder/worker (73).jpg b/train_image_folder/worker (73).jpg new file mode 100644 index 000000000..1966d504c Binary files /dev/null and b/train_image_folder/worker (73).jpg differ diff --git a/train_image_folder/worker (730).jpg b/train_image_folder/worker (730).jpg new file mode 100644 index 000000000..20af47cdf Binary files /dev/null and b/train_image_folder/worker (730).jpg differ diff --git a/train_image_folder/worker (731).jpg b/train_image_folder/worker (731).jpg new file mode 100644 index 000000000..b04d75ea2 Binary files /dev/null and b/train_image_folder/worker (731).jpg differ diff --git a/train_image_folder/worker (732).jpg b/train_image_folder/worker (732).jpg new file mode 100644 index 000000000..618af954d Binary files /dev/null and b/train_image_folder/worker (732).jpg differ diff --git a/train_image_folder/worker (733).jpg b/train_image_folder/worker (733).jpg new file mode 100644 index 000000000..17add5ec5 Binary files /dev/null and b/train_image_folder/worker (733).jpg differ diff --git a/train_image_folder/worker (734).jpg b/train_image_folder/worker (734).jpg new file mode 100644 index 000000000..0535b2c53 Binary files /dev/null and b/train_image_folder/worker (734).jpg differ diff --git a/train_image_folder/worker (735).jpg b/train_image_folder/worker (735).jpg new file mode 100644 index 000000000..24f736e13 Binary files /dev/null and b/train_image_folder/worker (735).jpg differ diff --git a/train_image_folder/worker (736).jpg b/train_image_folder/worker (736).jpg new file mode 100644 index 000000000..943b15c6f Binary files /dev/null and b/train_image_folder/worker (736).jpg differ diff --git a/train_image_folder/worker (737).jpg b/train_image_folder/worker (737).jpg new file mode 100644 index 000000000..5171df06c Binary files /dev/null and b/train_image_folder/worker (737).jpg differ diff --git a/train_image_folder/worker (738).jpg b/train_image_folder/worker (738).jpg new file mode 100644 index 000000000..eb4a3cab8 Binary files /dev/null and b/train_image_folder/worker (738).jpg differ diff --git a/train_image_folder/worker (739).jpg b/train_image_folder/worker (739).jpg new file mode 100644 index 000000000..355899d39 Binary files /dev/null and b/train_image_folder/worker (739).jpg differ diff --git a/train_image_folder/worker (74).jpg b/train_image_folder/worker (74).jpg new file mode 100644 index 000000000..0b299c26f Binary files /dev/null and b/train_image_folder/worker (74).jpg differ diff --git a/train_image_folder/worker (740).jpg b/train_image_folder/worker (740).jpg new file mode 100644 index 000000000..692cc8ba2 Binary files /dev/null and b/train_image_folder/worker (740).jpg differ diff --git a/train_image_folder/worker (741).jpg b/train_image_folder/worker (741).jpg new file mode 100644 index 000000000..63d96aa7e Binary files /dev/null and b/train_image_folder/worker (741).jpg differ diff --git a/train_image_folder/worker (742).jpg b/train_image_folder/worker (742).jpg new file mode 100644 index 000000000..c1b2f8f58 Binary files /dev/null and b/train_image_folder/worker (742).jpg differ diff --git a/train_image_folder/worker (744).jpg b/train_image_folder/worker (744).jpg new file mode 100644 index 000000000..594b0d278 Binary files /dev/null and b/train_image_folder/worker (744).jpg differ diff --git a/train_image_folder/worker (745).jpg b/train_image_folder/worker (745).jpg new file mode 100644 index 000000000..b7d65afa1 Binary files /dev/null and b/train_image_folder/worker (745).jpg differ diff --git a/train_image_folder/worker (746).jpg b/train_image_folder/worker (746).jpg new file mode 100644 index 000000000..caff7bf8f Binary files /dev/null and b/train_image_folder/worker (746).jpg differ diff --git a/train_image_folder/worker (747).jpg b/train_image_folder/worker (747).jpg new file mode 100644 index 000000000..57b4408eb Binary files /dev/null and b/train_image_folder/worker (747).jpg differ diff --git a/train_image_folder/worker (748).jpg b/train_image_folder/worker (748).jpg new file mode 100644 index 000000000..f3dec0f73 Binary files /dev/null and b/train_image_folder/worker (748).jpg differ diff --git a/train_image_folder/worker (749).jpg b/train_image_folder/worker (749).jpg new file mode 100644 index 000000000..6ba8a7d09 Binary files /dev/null and b/train_image_folder/worker (749).jpg differ diff --git a/train_image_folder/worker (75).jpg b/train_image_folder/worker (75).jpg new file mode 100644 index 000000000..c56aad597 Binary files /dev/null and b/train_image_folder/worker (75).jpg differ diff --git a/train_image_folder/worker (750).jpg b/train_image_folder/worker (750).jpg new file mode 100644 index 000000000..ac2bf540a Binary files /dev/null and b/train_image_folder/worker (750).jpg differ diff --git a/train_image_folder/worker (751).jpg b/train_image_folder/worker (751).jpg new file mode 100644 index 000000000..d6cf3a4fa Binary files /dev/null and b/train_image_folder/worker (751).jpg differ diff --git a/train_image_folder/worker (752).jpg b/train_image_folder/worker (752).jpg new file mode 100644 index 000000000..db9f77e7a Binary files /dev/null and b/train_image_folder/worker (752).jpg differ diff --git a/train_image_folder/worker (753).jpg b/train_image_folder/worker (753).jpg new file mode 100644 index 000000000..16ad3b33f Binary files /dev/null and b/train_image_folder/worker (753).jpg differ diff --git a/train_image_folder/worker (754).jpg b/train_image_folder/worker (754).jpg new file mode 100644 index 000000000..8f3ba6bac Binary files /dev/null and b/train_image_folder/worker (754).jpg differ diff --git a/train_image_folder/worker (755).jpg b/train_image_folder/worker (755).jpg new file mode 100644 index 000000000..88720e339 Binary files /dev/null and b/train_image_folder/worker (755).jpg differ diff --git a/train_image_folder/worker (756).jpg b/train_image_folder/worker (756).jpg new file mode 100644 index 000000000..54a409f6b Binary files /dev/null and b/train_image_folder/worker (756).jpg differ diff --git a/train_image_folder/worker (757).jpg b/train_image_folder/worker (757).jpg new file mode 100644 index 000000000..4f4c3104b Binary files /dev/null and b/train_image_folder/worker (757).jpg differ diff --git a/train_image_folder/worker (758).jpg b/train_image_folder/worker (758).jpg new file mode 100644 index 000000000..f39e84b3e Binary files /dev/null and b/train_image_folder/worker (758).jpg differ diff --git a/train_image_folder/worker (759).jpg b/train_image_folder/worker (759).jpg new file mode 100644 index 000000000..e93cf5516 Binary files /dev/null and b/train_image_folder/worker (759).jpg differ diff --git a/train_image_folder/worker (76).jpg b/train_image_folder/worker (76).jpg new file mode 100644 index 000000000..87e9a07f4 Binary files /dev/null and b/train_image_folder/worker (76).jpg differ diff --git a/train_image_folder/worker (760).jpg b/train_image_folder/worker (760).jpg new file mode 100644 index 000000000..39eb4fe02 Binary files /dev/null and b/train_image_folder/worker (760).jpg differ diff --git a/train_image_folder/worker (761).jpg b/train_image_folder/worker (761).jpg new file mode 100644 index 000000000..7f1cf52f3 Binary files /dev/null and b/train_image_folder/worker (761).jpg differ diff --git a/train_image_folder/worker (762).jpg b/train_image_folder/worker (762).jpg new file mode 100644 index 000000000..2f34cd466 Binary files /dev/null and b/train_image_folder/worker (762).jpg differ diff --git a/train_image_folder/worker (763).jpg b/train_image_folder/worker (763).jpg new file mode 100644 index 000000000..d69e5c3c8 Binary files /dev/null and b/train_image_folder/worker (763).jpg differ diff --git a/train_image_folder/worker (764).jpg b/train_image_folder/worker (764).jpg new file mode 100644 index 000000000..5ac527225 Binary files /dev/null and b/train_image_folder/worker (764).jpg differ diff --git a/train_image_folder/worker (766).jpg b/train_image_folder/worker (766).jpg new file mode 100644 index 000000000..0c5976ce6 Binary files /dev/null and b/train_image_folder/worker (766).jpg differ diff --git a/train_image_folder/worker (767).jpg b/train_image_folder/worker (767).jpg new file mode 100644 index 000000000..7d3adc5e8 Binary files /dev/null and b/train_image_folder/worker (767).jpg differ diff --git a/train_image_folder/worker (768).jpg b/train_image_folder/worker (768).jpg new file mode 100644 index 000000000..0b65d5709 Binary files /dev/null and b/train_image_folder/worker (768).jpg differ diff --git a/train_image_folder/worker (769).jpg b/train_image_folder/worker (769).jpg new file mode 100644 index 000000000..bfd997f0e Binary files /dev/null and b/train_image_folder/worker (769).jpg differ diff --git a/train_image_folder/worker (77).jpg b/train_image_folder/worker (77).jpg new file mode 100644 index 000000000..d27f2658d Binary files /dev/null and b/train_image_folder/worker (77).jpg differ diff --git a/train_image_folder/worker (770).jpg b/train_image_folder/worker (770).jpg new file mode 100644 index 000000000..d3dc121cc Binary files /dev/null and b/train_image_folder/worker (770).jpg differ diff --git a/train_image_folder/worker (771).jpg b/train_image_folder/worker (771).jpg new file mode 100644 index 000000000..6951008f9 Binary files /dev/null and b/train_image_folder/worker (771).jpg differ diff --git a/train_image_folder/worker (772).jpg b/train_image_folder/worker (772).jpg new file mode 100644 index 000000000..d67a30f8f Binary files /dev/null and b/train_image_folder/worker (772).jpg differ diff --git a/train_image_folder/worker (773).jpg b/train_image_folder/worker (773).jpg new file mode 100644 index 000000000..6d896501c Binary files /dev/null and b/train_image_folder/worker (773).jpg differ diff --git a/train_image_folder/worker (774).jpg b/train_image_folder/worker (774).jpg new file mode 100644 index 000000000..9d5eba1c5 Binary files /dev/null and b/train_image_folder/worker (774).jpg differ diff --git a/train_image_folder/worker (775).jpg b/train_image_folder/worker (775).jpg new file mode 100644 index 000000000..6d8458051 Binary files /dev/null and b/train_image_folder/worker (775).jpg differ diff --git a/train_image_folder/worker (776).jpg b/train_image_folder/worker (776).jpg new file mode 100644 index 000000000..db0ebbff3 Binary files /dev/null and b/train_image_folder/worker (776).jpg differ diff --git a/train_image_folder/worker (777).jpg b/train_image_folder/worker (777).jpg new file mode 100644 index 000000000..e536b143e Binary files /dev/null and b/train_image_folder/worker (777).jpg differ diff --git a/train_image_folder/worker (778).jpg b/train_image_folder/worker (778).jpg new file mode 100644 index 000000000..e2ef1cf2d Binary files /dev/null and b/train_image_folder/worker (778).jpg differ diff --git a/train_image_folder/worker (779).jpg b/train_image_folder/worker (779).jpg new file mode 100644 index 000000000..a0a6c7707 Binary files /dev/null and b/train_image_folder/worker (779).jpg differ diff --git a/train_image_folder/worker (78).jpg b/train_image_folder/worker (78).jpg new file mode 100644 index 000000000..ddfe71068 Binary files /dev/null and b/train_image_folder/worker (78).jpg differ diff --git a/train_image_folder/worker (780).jpg b/train_image_folder/worker (780).jpg new file mode 100644 index 000000000..bfc82ac01 Binary files /dev/null and b/train_image_folder/worker (780).jpg differ diff --git a/train_image_folder/worker (781).jpg b/train_image_folder/worker (781).jpg new file mode 100644 index 000000000..27306a7d3 Binary files /dev/null and b/train_image_folder/worker (781).jpg differ diff --git a/train_image_folder/worker (782).jpg b/train_image_folder/worker (782).jpg new file mode 100644 index 000000000..975c018a0 Binary files /dev/null and b/train_image_folder/worker (782).jpg differ diff --git a/train_image_folder/worker (783).jpg b/train_image_folder/worker (783).jpg new file mode 100644 index 000000000..641324bfe Binary files /dev/null and b/train_image_folder/worker (783).jpg differ diff --git a/train_image_folder/worker (784).jpg b/train_image_folder/worker (784).jpg new file mode 100644 index 000000000..18270bc26 Binary files /dev/null and b/train_image_folder/worker (784).jpg differ diff --git a/train_image_folder/worker (785).jpg b/train_image_folder/worker (785).jpg new file mode 100644 index 000000000..881323cc2 Binary files /dev/null and b/train_image_folder/worker (785).jpg differ diff --git a/train_image_folder/worker (786).jpg b/train_image_folder/worker (786).jpg new file mode 100644 index 000000000..2fc8e20b8 Binary files /dev/null and b/train_image_folder/worker (786).jpg differ diff --git a/train_image_folder/worker (787).jpg b/train_image_folder/worker (787).jpg new file mode 100644 index 000000000..d338eb549 Binary files /dev/null and b/train_image_folder/worker (787).jpg differ diff --git a/train_image_folder/worker (788).jpg b/train_image_folder/worker (788).jpg new file mode 100644 index 000000000..df84e97fa Binary files /dev/null and b/train_image_folder/worker (788).jpg differ diff --git a/train_image_folder/worker (789).jpg b/train_image_folder/worker (789).jpg new file mode 100644 index 000000000..287c82e9e Binary files /dev/null and b/train_image_folder/worker (789).jpg differ diff --git a/train_image_folder/worker (790).jpg b/train_image_folder/worker (790).jpg new file mode 100644 index 000000000..dc922b74a Binary files /dev/null and b/train_image_folder/worker (790).jpg differ diff --git a/train_image_folder/worker (791).jpg b/train_image_folder/worker (791).jpg new file mode 100644 index 000000000..843ae40b7 Binary files /dev/null and b/train_image_folder/worker (791).jpg differ diff --git a/train_image_folder/worker (792).jpg b/train_image_folder/worker (792).jpg new file mode 100644 index 000000000..b3e681d2d Binary files /dev/null and b/train_image_folder/worker (792).jpg differ diff --git a/train_image_folder/worker (793).jpg b/train_image_folder/worker (793).jpg new file mode 100644 index 000000000..fe372c297 Binary files /dev/null and b/train_image_folder/worker (793).jpg differ diff --git a/train_image_folder/worker (794).jpg b/train_image_folder/worker (794).jpg new file mode 100644 index 000000000..fe208fed0 Binary files /dev/null and b/train_image_folder/worker (794).jpg differ diff --git a/train_image_folder/worker (795).jpg b/train_image_folder/worker (795).jpg new file mode 100644 index 000000000..6b2acfe61 Binary files /dev/null and b/train_image_folder/worker (795).jpg differ diff --git a/train_image_folder/worker (796).jpg b/train_image_folder/worker (796).jpg new file mode 100644 index 000000000..3bbaf3e67 Binary files /dev/null and b/train_image_folder/worker (796).jpg differ diff --git a/train_image_folder/worker (797).jpg b/train_image_folder/worker (797).jpg new file mode 100644 index 000000000..bd10c9f05 Binary files /dev/null and b/train_image_folder/worker (797).jpg differ diff --git a/train_image_folder/worker (798).jpg b/train_image_folder/worker (798).jpg new file mode 100644 index 000000000..2212c01fb Binary files /dev/null and b/train_image_folder/worker (798).jpg differ diff --git a/train_image_folder/worker (799).jpg b/train_image_folder/worker (799).jpg new file mode 100644 index 000000000..2be5c3f0d Binary files /dev/null and b/train_image_folder/worker (799).jpg differ diff --git a/train_image_folder/worker (8).jpg b/train_image_folder/worker (8).jpg new file mode 100644 index 000000000..98b50dde5 Binary files /dev/null and b/train_image_folder/worker (8).jpg differ diff --git a/train_image_folder/worker (80).jpg b/train_image_folder/worker (80).jpg new file mode 100644 index 000000000..20d43e36a Binary files /dev/null and b/train_image_folder/worker (80).jpg differ diff --git a/train_image_folder/worker (800).jpg b/train_image_folder/worker (800).jpg new file mode 100644 index 000000000..e00af1fa1 Binary files /dev/null and b/train_image_folder/worker (800).jpg differ diff --git a/train_image_folder/worker (801).jpg b/train_image_folder/worker (801).jpg new file mode 100644 index 000000000..42dc91569 Binary files /dev/null and b/train_image_folder/worker (801).jpg differ diff --git a/train_image_folder/worker (802).jpg b/train_image_folder/worker (802).jpg new file mode 100644 index 000000000..a8226efed Binary files /dev/null and b/train_image_folder/worker (802).jpg differ diff --git a/train_image_folder/worker (803).jpg b/train_image_folder/worker (803).jpg new file mode 100644 index 000000000..d83218dba Binary files /dev/null and b/train_image_folder/worker (803).jpg differ diff --git a/train_image_folder/worker (804).jpg b/train_image_folder/worker (804).jpg new file mode 100644 index 000000000..f64135a31 Binary files /dev/null and b/train_image_folder/worker (804).jpg differ diff --git a/train_image_folder/worker (805).jpg b/train_image_folder/worker (805).jpg new file mode 100644 index 000000000..c9cf99a3d Binary files /dev/null and b/train_image_folder/worker (805).jpg differ diff --git a/train_image_folder/worker (806).jpg b/train_image_folder/worker (806).jpg new file mode 100644 index 000000000..05d533e99 Binary files /dev/null and b/train_image_folder/worker (806).jpg differ diff --git a/train_image_folder/worker (807).jpg b/train_image_folder/worker (807).jpg new file mode 100644 index 000000000..98a9d8c86 Binary files /dev/null and b/train_image_folder/worker (807).jpg differ diff --git a/train_image_folder/worker (808).jpg b/train_image_folder/worker (808).jpg new file mode 100644 index 000000000..450c901be Binary files /dev/null and b/train_image_folder/worker (808).jpg differ diff --git a/train_image_folder/worker (809).jpg b/train_image_folder/worker (809).jpg new file mode 100644 index 000000000..bd4a536b5 Binary files /dev/null and b/train_image_folder/worker (809).jpg differ diff --git a/train_image_folder/worker (81).jpg b/train_image_folder/worker (81).jpg new file mode 100644 index 000000000..29bb71dbb Binary files /dev/null and b/train_image_folder/worker (81).jpg differ diff --git a/train_image_folder/worker (811).jpg b/train_image_folder/worker (811).jpg new file mode 100644 index 000000000..905b6575d Binary files /dev/null and b/train_image_folder/worker (811).jpg differ diff --git a/train_image_folder/worker (812).jpg b/train_image_folder/worker (812).jpg new file mode 100644 index 000000000..acdcc2451 Binary files /dev/null and b/train_image_folder/worker (812).jpg differ diff --git a/train_image_folder/worker (813).jpg b/train_image_folder/worker (813).jpg new file mode 100644 index 000000000..c3821150a Binary files /dev/null and b/train_image_folder/worker (813).jpg differ diff --git a/train_image_folder/worker (814).jpg b/train_image_folder/worker (814).jpg new file mode 100644 index 000000000..413569643 Binary files /dev/null and b/train_image_folder/worker (814).jpg differ diff --git a/train_image_folder/worker (815).jpg b/train_image_folder/worker (815).jpg new file mode 100644 index 000000000..bcfe9e406 Binary files /dev/null and b/train_image_folder/worker (815).jpg differ diff --git a/train_image_folder/worker (816).jpg b/train_image_folder/worker (816).jpg new file mode 100644 index 000000000..d1f1964c8 Binary files /dev/null and b/train_image_folder/worker (816).jpg differ diff --git a/train_image_folder/worker (817).jpg b/train_image_folder/worker (817).jpg new file mode 100644 index 000000000..1134def45 Binary files /dev/null and b/train_image_folder/worker (817).jpg differ diff --git a/train_image_folder/worker (818).jpg b/train_image_folder/worker (818).jpg new file mode 100644 index 000000000..4990fee39 Binary files /dev/null and b/train_image_folder/worker (818).jpg differ diff --git a/train_image_folder/worker (819).jpg b/train_image_folder/worker (819).jpg new file mode 100644 index 000000000..f518b60b1 Binary files /dev/null and b/train_image_folder/worker (819).jpg differ diff --git a/train_image_folder/worker (82).jpg b/train_image_folder/worker (82).jpg new file mode 100644 index 000000000..56b6c7fa5 Binary files /dev/null and b/train_image_folder/worker (82).jpg differ diff --git a/train_image_folder/worker (820).jpg b/train_image_folder/worker (820).jpg new file mode 100644 index 000000000..0a3db3bea Binary files /dev/null and b/train_image_folder/worker (820).jpg differ diff --git a/train_image_folder/worker (821).jpg b/train_image_folder/worker (821).jpg new file mode 100644 index 000000000..a0a6d4abf Binary files /dev/null and b/train_image_folder/worker (821).jpg differ diff --git a/train_image_folder/worker (822).jpg b/train_image_folder/worker (822).jpg new file mode 100644 index 000000000..b6c9b9e80 Binary files /dev/null and b/train_image_folder/worker (822).jpg differ diff --git a/train_image_folder/worker (823).jpg b/train_image_folder/worker (823).jpg new file mode 100644 index 000000000..ad7e6afc0 Binary files /dev/null and b/train_image_folder/worker (823).jpg differ diff --git a/train_image_folder/worker (824).jpg b/train_image_folder/worker (824).jpg new file mode 100644 index 000000000..4de032c42 Binary files /dev/null and b/train_image_folder/worker (824).jpg differ diff --git a/train_image_folder/worker (825).jpg b/train_image_folder/worker (825).jpg new file mode 100644 index 000000000..8855a37f1 Binary files /dev/null and b/train_image_folder/worker (825).jpg differ diff --git a/train_image_folder/worker (826).jpg b/train_image_folder/worker (826).jpg new file mode 100644 index 000000000..2d9a6e817 Binary files /dev/null and b/train_image_folder/worker (826).jpg differ diff --git a/train_image_folder/worker (827).jpg b/train_image_folder/worker (827).jpg new file mode 100644 index 000000000..f34d173a5 Binary files /dev/null and b/train_image_folder/worker (827).jpg differ diff --git a/train_image_folder/worker (828).jpg b/train_image_folder/worker (828).jpg new file mode 100644 index 000000000..c0e8d18e0 Binary files /dev/null and b/train_image_folder/worker (828).jpg differ diff --git a/train_image_folder/worker (829).jpg b/train_image_folder/worker (829).jpg new file mode 100644 index 000000000..0f4d285a3 Binary files /dev/null and b/train_image_folder/worker (829).jpg differ diff --git a/train_image_folder/worker (83).jpg b/train_image_folder/worker (83).jpg new file mode 100644 index 000000000..856e38c3c Binary files /dev/null and b/train_image_folder/worker (83).jpg differ diff --git a/train_image_folder/worker (830).jpg b/train_image_folder/worker (830).jpg new file mode 100644 index 000000000..51cf32517 Binary files /dev/null and b/train_image_folder/worker (830).jpg differ diff --git a/train_image_folder/worker (831).jpg b/train_image_folder/worker (831).jpg new file mode 100644 index 000000000..fb5b0af33 Binary files /dev/null and b/train_image_folder/worker (831).jpg differ diff --git a/train_image_folder/worker (832).jpg b/train_image_folder/worker (832).jpg new file mode 100644 index 000000000..bc708a491 Binary files /dev/null and b/train_image_folder/worker (832).jpg differ diff --git a/train_image_folder/worker (833).jpg b/train_image_folder/worker (833).jpg new file mode 100644 index 000000000..67eb83e10 Binary files /dev/null and b/train_image_folder/worker (833).jpg differ diff --git a/train_image_folder/worker (834).jpg b/train_image_folder/worker (834).jpg new file mode 100644 index 000000000..524a108c2 Binary files /dev/null and b/train_image_folder/worker (834).jpg differ diff --git a/train_image_folder/worker (835).jpg b/train_image_folder/worker (835).jpg new file mode 100644 index 000000000..1912a317a Binary files /dev/null and b/train_image_folder/worker (835).jpg differ diff --git a/train_image_folder/worker (836).jpg b/train_image_folder/worker (836).jpg new file mode 100644 index 000000000..ce7aad3ef Binary files /dev/null and b/train_image_folder/worker (836).jpg differ diff --git a/train_image_folder/worker (837).jpg b/train_image_folder/worker (837).jpg new file mode 100644 index 000000000..587e66513 Binary files /dev/null and b/train_image_folder/worker (837).jpg differ diff --git a/train_image_folder/worker (838).jpg b/train_image_folder/worker (838).jpg new file mode 100644 index 000000000..5261d1739 Binary files /dev/null and b/train_image_folder/worker (838).jpg differ diff --git a/train_image_folder/worker (839).jpg b/train_image_folder/worker (839).jpg new file mode 100644 index 000000000..1ff028717 Binary files /dev/null and b/train_image_folder/worker (839).jpg differ diff --git a/train_image_folder/worker (84).jpg b/train_image_folder/worker (84).jpg new file mode 100644 index 000000000..c1aa43018 Binary files /dev/null and b/train_image_folder/worker (84).jpg differ diff --git a/train_image_folder/worker (840).jpg b/train_image_folder/worker (840).jpg new file mode 100644 index 000000000..ab764fc7c Binary files /dev/null and b/train_image_folder/worker (840).jpg differ diff --git a/train_image_folder/worker (841).jpg b/train_image_folder/worker (841).jpg new file mode 100644 index 000000000..0c3e7b0c6 Binary files /dev/null and b/train_image_folder/worker (841).jpg differ diff --git a/train_image_folder/worker (842).jpg b/train_image_folder/worker (842).jpg new file mode 100644 index 000000000..5cb62ecc6 Binary files /dev/null and b/train_image_folder/worker (842).jpg differ diff --git a/train_image_folder/worker (843).jpg b/train_image_folder/worker (843).jpg new file mode 100644 index 000000000..2585b44ed Binary files /dev/null and b/train_image_folder/worker (843).jpg differ diff --git a/train_image_folder/worker (844).jpg b/train_image_folder/worker (844).jpg new file mode 100644 index 000000000..e8e4991fd Binary files /dev/null and b/train_image_folder/worker (844).jpg differ diff --git a/train_image_folder/worker (845).jpg b/train_image_folder/worker (845).jpg new file mode 100644 index 000000000..048615795 Binary files /dev/null and b/train_image_folder/worker (845).jpg differ diff --git a/train_image_folder/worker (846).jpg b/train_image_folder/worker (846).jpg new file mode 100644 index 000000000..95a13e123 Binary files /dev/null and b/train_image_folder/worker (846).jpg differ diff --git a/train_image_folder/worker (847).jpg b/train_image_folder/worker (847).jpg new file mode 100644 index 000000000..b4cc992c9 Binary files /dev/null and b/train_image_folder/worker (847).jpg differ diff --git a/train_image_folder/worker (848).jpg b/train_image_folder/worker (848).jpg new file mode 100644 index 000000000..fe0b65fb2 Binary files /dev/null and b/train_image_folder/worker (848).jpg differ diff --git a/train_image_folder/worker (849).jpg b/train_image_folder/worker (849).jpg new file mode 100644 index 000000000..5392f6adc Binary files /dev/null and b/train_image_folder/worker (849).jpg differ diff --git a/train_image_folder/worker (85).jpg b/train_image_folder/worker (85).jpg new file mode 100644 index 000000000..2bc215c81 Binary files /dev/null and b/train_image_folder/worker (85).jpg differ diff --git a/train_image_folder/worker (850).jpg b/train_image_folder/worker (850).jpg new file mode 100644 index 000000000..57849d111 Binary files /dev/null and b/train_image_folder/worker (850).jpg differ diff --git a/train_image_folder/worker (851).jpg b/train_image_folder/worker (851).jpg new file mode 100644 index 000000000..3e4b6505c Binary files /dev/null and b/train_image_folder/worker (851).jpg differ diff --git a/train_image_folder/worker (852).jpg b/train_image_folder/worker (852).jpg new file mode 100644 index 000000000..3b2ed2a68 Binary files /dev/null and b/train_image_folder/worker (852).jpg differ diff --git a/train_image_folder/worker (853).jpg b/train_image_folder/worker (853).jpg new file mode 100644 index 000000000..00466273d Binary files /dev/null and b/train_image_folder/worker (853).jpg differ diff --git a/train_image_folder/worker (854).jpg b/train_image_folder/worker (854).jpg new file mode 100644 index 000000000..c9e980575 Binary files /dev/null and b/train_image_folder/worker (854).jpg differ diff --git a/train_image_folder/worker (855).jpg b/train_image_folder/worker (855).jpg new file mode 100644 index 000000000..27a929f29 Binary files /dev/null and b/train_image_folder/worker (855).jpg differ diff --git a/train_image_folder/worker (856).jpg b/train_image_folder/worker (856).jpg new file mode 100644 index 000000000..972562f40 Binary files /dev/null and b/train_image_folder/worker (856).jpg differ diff --git a/train_image_folder/worker (857).jpg b/train_image_folder/worker (857).jpg new file mode 100644 index 000000000..5ddb4d14a Binary files /dev/null and b/train_image_folder/worker (857).jpg differ diff --git a/train_image_folder/worker (858).jpg b/train_image_folder/worker (858).jpg new file mode 100644 index 000000000..019219703 Binary files /dev/null and b/train_image_folder/worker (858).jpg differ diff --git a/train_image_folder/worker (859).jpg b/train_image_folder/worker (859).jpg new file mode 100644 index 000000000..3da1cbf38 Binary files /dev/null and b/train_image_folder/worker (859).jpg differ diff --git a/train_image_folder/worker (860).jpg b/train_image_folder/worker (860).jpg new file mode 100644 index 000000000..fd8c5592f Binary files /dev/null and b/train_image_folder/worker (860).jpg differ diff --git a/train_image_folder/worker (861).jpg b/train_image_folder/worker (861).jpg new file mode 100644 index 000000000..5d2883c5e Binary files /dev/null and b/train_image_folder/worker (861).jpg differ diff --git a/train_image_folder/worker (862).jpg b/train_image_folder/worker (862).jpg new file mode 100644 index 000000000..628bbe088 Binary files /dev/null and b/train_image_folder/worker (862).jpg differ diff --git a/train_image_folder/worker (863).jpg b/train_image_folder/worker (863).jpg new file mode 100644 index 000000000..fbe44ed36 Binary files /dev/null and b/train_image_folder/worker (863).jpg differ diff --git a/train_image_folder/worker (864).jpg b/train_image_folder/worker (864).jpg new file mode 100644 index 000000000..2558be147 Binary files /dev/null and b/train_image_folder/worker (864).jpg differ diff --git a/train_image_folder/worker (865).jpg b/train_image_folder/worker (865).jpg new file mode 100644 index 000000000..7ff16d06a Binary files /dev/null and b/train_image_folder/worker (865).jpg differ diff --git a/train_image_folder/worker (866).jpg b/train_image_folder/worker (866).jpg new file mode 100644 index 000000000..6bc33cf5d Binary files /dev/null and b/train_image_folder/worker (866).jpg differ diff --git a/train_image_folder/worker (868).jpg b/train_image_folder/worker (868).jpg new file mode 100644 index 000000000..f19ff46cd Binary files /dev/null and b/train_image_folder/worker (868).jpg differ diff --git a/train_image_folder/worker (869).jpg b/train_image_folder/worker (869).jpg new file mode 100644 index 000000000..59b1bd2e8 Binary files /dev/null and b/train_image_folder/worker (869).jpg differ diff --git a/train_image_folder/worker (870).jpg b/train_image_folder/worker (870).jpg new file mode 100644 index 000000000..771812c72 Binary files /dev/null and b/train_image_folder/worker (870).jpg differ diff --git a/train_image_folder/worker (871).jpg b/train_image_folder/worker (871).jpg new file mode 100644 index 000000000..a501feae7 Binary files /dev/null and b/train_image_folder/worker (871).jpg differ diff --git a/train_image_folder/worker (872).jpg b/train_image_folder/worker (872).jpg new file mode 100644 index 000000000..f0e7ab087 Binary files /dev/null and b/train_image_folder/worker (872).jpg differ diff --git a/train_image_folder/worker (873).jpg b/train_image_folder/worker (873).jpg new file mode 100644 index 000000000..911340494 Binary files /dev/null and b/train_image_folder/worker (873).jpg differ diff --git a/train_image_folder/worker (874).jpg b/train_image_folder/worker (874).jpg new file mode 100644 index 000000000..a6842de52 Binary files /dev/null and b/train_image_folder/worker (874).jpg differ diff --git a/train_image_folder/worker (875).jpg b/train_image_folder/worker (875).jpg new file mode 100644 index 000000000..a4bc9c9d0 Binary files /dev/null and b/train_image_folder/worker (875).jpg differ diff --git a/train_image_folder/worker (876).jpg b/train_image_folder/worker (876).jpg new file mode 100644 index 000000000..7f154ba11 Binary files /dev/null and b/train_image_folder/worker (876).jpg differ diff --git a/train_image_folder/worker (877).jpg b/train_image_folder/worker (877).jpg new file mode 100644 index 000000000..cf26b382f Binary files /dev/null and b/train_image_folder/worker (877).jpg differ diff --git a/train_image_folder/worker (878).jpg b/train_image_folder/worker (878).jpg new file mode 100644 index 000000000..3fddcee32 Binary files /dev/null and b/train_image_folder/worker (878).jpg differ diff --git a/train_image_folder/worker (88).jpg b/train_image_folder/worker (88).jpg new file mode 100644 index 000000000..7351b5ae7 Binary files /dev/null and b/train_image_folder/worker (88).jpg differ diff --git a/train_image_folder/worker (880).jpg b/train_image_folder/worker (880).jpg new file mode 100644 index 000000000..9b4004782 Binary files /dev/null and b/train_image_folder/worker (880).jpg differ diff --git a/train_image_folder/worker (881).jpg b/train_image_folder/worker (881).jpg new file mode 100644 index 000000000..dbfd7aa6f Binary files /dev/null and b/train_image_folder/worker (881).jpg differ diff --git a/train_image_folder/worker (882).jpg b/train_image_folder/worker (882).jpg new file mode 100644 index 000000000..b77212375 Binary files /dev/null and b/train_image_folder/worker (882).jpg differ diff --git a/train_image_folder/worker (883).jpg b/train_image_folder/worker (883).jpg new file mode 100644 index 000000000..5601a972e Binary files /dev/null and b/train_image_folder/worker (883).jpg differ diff --git a/train_image_folder/worker (884).jpg b/train_image_folder/worker (884).jpg new file mode 100644 index 000000000..2af0bd48c Binary files /dev/null and b/train_image_folder/worker (884).jpg differ diff --git a/train_image_folder/worker (885).jpg b/train_image_folder/worker (885).jpg new file mode 100644 index 000000000..bfe2fa95b Binary files /dev/null and b/train_image_folder/worker (885).jpg differ diff --git a/train_image_folder/worker (886).jpg b/train_image_folder/worker (886).jpg new file mode 100644 index 000000000..59c48f642 Binary files /dev/null and b/train_image_folder/worker (886).jpg differ diff --git a/train_image_folder/worker (887).jpg b/train_image_folder/worker (887).jpg new file mode 100644 index 000000000..044e039ef Binary files /dev/null and b/train_image_folder/worker (887).jpg differ diff --git a/train_image_folder/worker (888).jpg b/train_image_folder/worker (888).jpg new file mode 100644 index 000000000..888696d76 Binary files /dev/null and b/train_image_folder/worker (888).jpg differ diff --git a/train_image_folder/worker (889).jpg b/train_image_folder/worker (889).jpg new file mode 100644 index 000000000..2d0048302 Binary files /dev/null and b/train_image_folder/worker (889).jpg differ diff --git a/train_image_folder/worker (89).jpg b/train_image_folder/worker (89).jpg new file mode 100644 index 000000000..bd206f60e Binary files /dev/null and b/train_image_folder/worker (89).jpg differ diff --git a/train_image_folder/worker (890).jpg b/train_image_folder/worker (890).jpg new file mode 100644 index 000000000..c8ba627f2 Binary files /dev/null and b/train_image_folder/worker (890).jpg differ diff --git a/train_image_folder/worker (891).jpg b/train_image_folder/worker (891).jpg new file mode 100644 index 000000000..ea07723f5 Binary files /dev/null and b/train_image_folder/worker (891).jpg differ diff --git a/train_image_folder/worker (9).jpg b/train_image_folder/worker (9).jpg new file mode 100644 index 000000000..49e2dd484 Binary files /dev/null and b/train_image_folder/worker (9).jpg differ diff --git a/train_image_folder/worker (90).jpg b/train_image_folder/worker (90).jpg new file mode 100644 index 000000000..4ed5d5999 Binary files /dev/null and b/train_image_folder/worker (90).jpg differ diff --git a/train_image_folder/worker (91).jpg b/train_image_folder/worker (91).jpg new file mode 100644 index 000000000..6f881c8bf Binary files /dev/null and b/train_image_folder/worker (91).jpg differ diff --git a/train_image_folder/worker (92).jpg b/train_image_folder/worker (92).jpg new file mode 100644 index 000000000..578bd708e Binary files /dev/null and b/train_image_folder/worker (92).jpg differ diff --git a/train_image_folder/worker (93).jpg b/train_image_folder/worker (93).jpg new file mode 100644 index 000000000..32d853ee9 Binary files /dev/null and b/train_image_folder/worker (93).jpg differ diff --git a/train_image_folder/worker (94).jpg b/train_image_folder/worker (94).jpg new file mode 100644 index 000000000..442ead63c Binary files /dev/null and b/train_image_folder/worker (94).jpg differ diff --git a/train_image_folder/worker (95).jpg b/train_image_folder/worker (95).jpg new file mode 100644 index 000000000..34ff7c8eb Binary files /dev/null and b/train_image_folder/worker (95).jpg differ diff --git a/train_image_folder/worker (96).jpg b/train_image_folder/worker (96).jpg new file mode 100644 index 000000000..c927645c3 Binary files /dev/null and b/train_image_folder/worker (96).jpg differ diff --git a/train_image_folder/worker (98).jpg b/train_image_folder/worker (98).jpg new file mode 100644 index 000000000..ab9326ff2 Binary files /dev/null and b/train_image_folder/worker (98).jpg differ diff --git a/train_image_folder/worker (99).jpg b/train_image_folder/worker (99).jpg new file mode 100644 index 000000000..4da94ec55 Binary files /dev/null and b/train_image_folder/worker (99).jpg differ