Meehai commited on
Commit
92142d8
1 Parent(s): 44f7e1b
Files changed (30) hide show
  1. .gitattributes +1 -54
  2. .gitignore +12 -0
  3. README.md +158 -3
  4. cfg.yaml +123 -0
  5. commands.txt +63 -0
  6. count_npz.sh +18 -0
  7. dronescapes_reader/__init__.py +2 -0
  8. dronescapes_reader/multitask_dataset.py +233 -0
  9. dronescapes_viewer.py +31 -0
  10. logo.png +3 -0
  11. raw_data/videos/atanasie_DJI_0652_full/commands.txt +4 -0
  12. raw_data/videos/barsana_DJI_0500_0501_combined_sliced_2700_14700/commands.txt +7 -0
  13. raw_data/videos/comana_DJI_0881_full/commands.txt +4 -0
  14. raw_data/videos/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/commands.txt +8 -0
  15. raw_data/videos/herculane_DJI_0021_full/commands.txt +4 -0
  16. raw_data/videos/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/commands.txt +8 -0
  17. raw_data/videos/norway_210821_DJI_0015_full/commands.txt +3 -0
  18. raw_data/videos/olanesti_DJI_0416_full/commands.txt +3 -0
  19. raw_data/videos/petrova_DJI_0525_0526_combined_sliced_2850_11850/commands.txt +7 -0
  20. raw_data/videos/slanic_DJI_0956_0957_combined_sliced_780_9780/commands.txt +7 -0
  21. split.png +3 -0
  22. symlinks_from_txt_list.py +93 -0
  23. txt_files/annotated_and_segprop/semisup_files_11299.txt +0 -0
  24. txt_files/annotated_and_segprop/test_files_5603.txt +0 -0
  25. txt_files/annotated_and_segprop/train_files_11664.txt +0 -0
  26. txt_files/annotated_and_segprop/val_files_605.txt +605 -0
  27. txt_files/manually_annotated_files/semisup_files_207.txt +207 -0
  28. txt_files/manually_annotated_files/test_files_116.txt +116 -0
  29. txt_files/manually_annotated_files/train_files_218.txt +218 -0
  30. txt_files/manually_annotated_files/val_files_15.txt +15 -0
.gitattributes CHANGED
@@ -1,55 +1,2 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.lz4 filter=lfs diff=lfs merge=lfs -text
12
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
13
- *.model filter=lfs diff=lfs merge=lfs -text
14
- *.msgpack filter=lfs diff=lfs merge=lfs -text
15
- *.npy filter=lfs diff=lfs merge=lfs -text
16
- *.npz filter=lfs diff=lfs merge=lfs -text
17
- *.onnx filter=lfs diff=lfs merge=lfs -text
18
- *.ot filter=lfs diff=lfs merge=lfs -text
19
- *.parquet filter=lfs diff=lfs merge=lfs -text
20
- *.pb filter=lfs diff=lfs merge=lfs -text
21
- *.pickle filter=lfs diff=lfs merge=lfs -text
22
- *.pkl filter=lfs diff=lfs merge=lfs -text
23
- *.pt filter=lfs diff=lfs merge=lfs -text
24
- *.pth filter=lfs diff=lfs merge=lfs -text
25
- *.rar filter=lfs diff=lfs merge=lfs -text
26
- *.safetensors filter=lfs diff=lfs merge=lfs -text
27
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
28
- *.tar.* filter=lfs diff=lfs merge=lfs -text
29
- *.tar filter=lfs diff=lfs merge=lfs -text
30
- *.tflite filter=lfs diff=lfs merge=lfs -text
31
- *.tgz filter=lfs diff=lfs merge=lfs -text
32
- *.wasm filter=lfs diff=lfs merge=lfs -text
33
- *.xz filter=lfs diff=lfs merge=lfs -text
34
- *.zip filter=lfs diff=lfs merge=lfs -text
35
- *.zst filter=lfs diff=lfs merge=lfs -text
36
- *tfevents* filter=lfs diff=lfs merge=lfs -text
37
- # Audio files - uncompressed
38
- *.pcm filter=lfs diff=lfs merge=lfs -text
39
- *.sam filter=lfs diff=lfs merge=lfs -text
40
- *.raw filter=lfs diff=lfs merge=lfs -text
41
- # Audio files - compressed
42
- *.aac filter=lfs diff=lfs merge=lfs -text
43
- *.flac filter=lfs diff=lfs merge=lfs -text
44
- *.mp3 filter=lfs diff=lfs merge=lfs -text
45
- *.ogg filter=lfs diff=lfs merge=lfs -text
46
- *.wav filter=lfs diff=lfs merge=lfs -text
47
- # Image files - uncompressed
48
- *.bmp filter=lfs diff=lfs merge=lfs -text
49
- *.gif filter=lfs diff=lfs merge=lfs -text
50
- *.png filter=lfs diff=lfs merge=lfs -text
51
- *.tiff filter=lfs diff=lfs merge=lfs -text
52
- # Image files - compressed
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
- *.jpeg filter=lfs diff=lfs merge=lfs -text
55
- *.webp filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  *.jpg filter=lfs diff=lfs merge=lfs -text
2
+ *.png filter=lfs diff=lfs merge=lfs -text
 
.gitignore ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ raw_data/representations/
2
+ *.mp4
3
+ *.MP4
4
+ voting_learn_data/
5
+ *.npz
6
+ list.txt
7
+ *.tar.gz
8
+ copyfiles3.txt
9
+ raw_data/npz_540p
10
+ exception.txt
11
+ __pycache__
12
+
README.md CHANGED
@@ -1,3 +1,158 @@
1
- ---
2
- license: wtfpl
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dronescapes dataset
2
+
3
+ ![Logo](logo.png)
4
+
5
+ As introduced in our ICCV 2023 workshop paper: [link](https://openaccess.thecvf.com/content/ICCV2023W/LIMIT/papers/Marcu_Self-Supervised_Hypergraphs_for_Learning_Multiple_World_Interpretations_ICCVW_2023_paper.pdf)
6
+
7
+ # 1. Downloading the data
8
+
9
+ ## Option 1. Download the pre-processed dataset from HuggingFace repository
10
+
11
+ TODO: recommended
12
+
13
+ <details>
14
+ <summary> <b> Option 2. Generating the dataset from raw videos and basic labels </b>.</summary>
15
+
16
+ Recommended if you intend on understanding how the dataset was created or add new videos or representations.
17
+
18
+ ### 1.2.1 Download the raw videos
19
+
20
+ Follow the commands in each directory under `raw_data/videos/*/commands.txt` if you want to start from the 4K videos.
21
+
22
+ If you only want the 540p videos as used in the paper, then download them from: [link](https://drive.google.com/file/d/1AH-9K1RjxCJr8atRU8p3CqCOGKmQtLbU).
23
+
24
+ ```bash
25
+ cd raw_data/
26
+ tar -xzvf videos_540p.tar.gz
27
+ ```
28
+
29
+ ### 1.2.2 Download the GT semantic segmentation labels
30
+
31
+ These were human annotated and then propagated using [segprop](https://github.com/vlicaret/segprop).
32
+ Direct link: [link](https://drive.google.com/file/d/1ElBDox_UUqngqZeuJpibYX2wSU8YdQt7/view?usp=sharing).
33
+
34
+ or:
35
+
36
+ ```bash
37
+ cd raw_data/
38
+ tar -xzvf segprop_npz_540.tar.gz
39
+ ```
40
+
41
+ ### 1.2.3 Generate the rest of the representations
42
+
43
+ We use the [video-representations-extractor](https://gitlab.com/meehai/video-representations-extractor) to generate
44
+ the rest of the labels using pre-traing networks or algoritms.
45
+
46
+ ```
47
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=0 vre raw_data/videos/atanasie_DJI_0652_full/atanasie_DJI_0652_full_540p.mp4 -o raw_data/npz_540p/atanasie_DJI_0652_full/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
48
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=1 vre raw_data/videos/barsana_DJI_0500_0501_combined_sliced_2700_14700/barsana_DJI_0500_0501_combined_sliced_2700_14700_540p.mp4 -o raw_data/npz_540p/barsana_DJI_0500_0501_combined_sliced_2700_14700/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
49
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=2 vre raw_data/videos/comana_DJI_0881_full/comana_DJI_0881_full_540p.mp4 -o raw_data/npz_540p/comana_DJI_0881_full/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
50
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=3 vre raw_data/videos/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110_540p.mp4 -o raw_data/npz_540p/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
51
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=4 vre raw_data/videos/herculane_DJI_0021_full/herculane_DJI_0021_full_540p.mp4 -o raw_data/npz_540p/herculane_DJI_0021_full/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
52
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=5 vre raw_data/videos/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715_540p.mp4 -o raw_data/npz_540p/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
53
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=6 vre raw_data/videos/norway_210821_DJI_0015_full/norway_210821_DJI_0015_full_540p.mp4 -o raw_data/npz_540p/norway_210821_DJI_0015_full/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
54
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=7 vre raw_data/videos/olanesti_DJI_0416_full/olanesti_DJI_0416_full_540p.mp4 -o raw_data/npz_540p/olanesti_DJI_0416_full/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
55
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=0 vre raw_data/videos/petrova_DJI_0525_0526_combined_sliced_2850_11850/petrova_DJI_0525_0526_combined_sliced_2850_11850_540p.mp4 -o raw_data/npz_540p/petrova_DJI_0525_0526_combined_sliced_2850_11850/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
56
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=1 vre raw_data/videos/slanic_DJI_0956_0957_combined_sliced_780_9780/slanic_DJI_0956_0957_combined_sliced_780_9780_540p.mp4 -o raw_data/npz_540p/slanic_DJI_0956_0957_combined_sliced_780_9780/ --cfg_path cfg.yaml --batch_size 3 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
57
+ ```
58
+
59
+ ### 1.2.4 Convert Mask2Former from Mapillary classes to segprop8 classes
60
+
61
+ TODO
62
+
63
+ ### 1.2.5 Check counts for consistency
64
+
65
+ Run: `bash count_npz.sh raw_data/npz_540p`. At this point it should return:
66
+ | scene | rgb | depth_dpt | depth_sfm_manual20.. | edges_dexined | normals_sfm_manual.. | opticalflow_rife | semantic_mask2form.. | semantic_segprop8 |
67
+ |:----------|------:|------------:|-----------------------:|----------------:|-----------------------:|-------------------:|-----------------------:|--------------------:|
68
+ | atanasie | 9021 | 9021 | 9020 | 9021 | 9020 | 9021 | 9021 | 9001 |
69
+ | barsana | 12001 | 12001 | 12001 | 12001 | 12001 | 12000 | 12001 | 1573 |
70
+ | comana | 9022 | 9022 | 0 | 9022 | 0 | 9022 | 9022 | 1210 |
71
+ | gradistei | 9601 | 9601 | 9600 | 9601 | 9600 | 9600 | 9601 | 1210 |
72
+ | herculane | 9022 | 9022 | 9021 | 9022 | 9021 | 9022 | 9022 | 1210 |
73
+ | jupiter | 11066 | 11066 | 11065 | 11066 | 11065 | 11066 | 11066 | 1452 |
74
+ | norway | 2983 | 2983 | 0 | 2983 | 0 | 2983 | 2983 | 2941 |
75
+ | olanesti | 9022 | 9022 | 9021 | 9022 | 9021 | 9022 | 9022 | 1210 |
76
+ | petrova | 9001 | 9001 | 9001 | 9001 | 9001 | 9000 | 9001 | 1210 |
77
+ | slanic | 9001 | 9001 | 9001 | 9001 | 9001 | 9000 | 9001 | 9001 |
78
+
79
+ ### 1.2.6. Split intro train, validation, semisupervised and train
80
+
81
+ We include 8 splits: 4 using only GT annotated semantic data and 4 using all available data (i.e. segproped between
82
+ annotated data). The indexes are taken from `txt_files/*`, i.e. `txt_files/manually_adnotated_files/test_files_116.txt`
83
+ refers to the fact that the (unseen at train time) test set (norway + petrova + barsana) contains 116 manually
84
+ annotated semantic files. We include all representations from above, not just semantic for all possible splits.
85
+ Adding new representations is as simple as running VRE on the 540p mp4 file
86
+
87
+ ```
88
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/train_files_11664.txt -o data/train_set --overwrite
89
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/val_files_605.txt -o data/validation_set --overwrite
90
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/semisup_files_11299.txt -o data/semisupervised_set --overwrite
91
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/test_files_5603.txt -o data/test_set --overwrite
92
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/train_files_218.txt -o data/train_set_annotated_only --overwrite
93
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/val_files_15.txt -o data/validation_set_annotated_only --overwrite
94
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/semisup_files_207.txt -o data/semisupervised_set_annotated_nly --overwrite
95
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/test_files_116.txt -o data/test_set_annotated_nly --overwrite
96
+ ```
97
+
98
+ Upon calling this, you should be able to see something like this:
99
+ ```
100
+ user> ls data/*
101
+ data/semisupervised_set:
102
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
103
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
104
+
105
+ data/semisupervised_set_annotated_nly:
106
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
107
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
108
+
109
+ data/test_set:
110
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
111
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
112
+
113
+ data/test_set_annotated_nly:
114
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
115
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
116
+
117
+ data/train_set:
118
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
119
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
120
+
121
+ data/train_set_annotated_only:
122
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
123
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
124
+
125
+ data/validation_set:
126
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
127
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
128
+
129
+ data/validation_set_annotated_only:
130
+ depth_dpt edges_dexined opticalflow_rife semantic_mask2former_swin_mapillary_converted
131
+ depth_sfm_manual202204 normals_sfm_manual202204 rgb semantic_segprop8
132
+ ```
133
+
134
+ </details>
135
+
136
+ ## 2. Using the data
137
+
138
+ As per the split from the paper:
139
+ ![Split](split.png)
140
+
141
+ The data is in `data/*` (see the `ls` call above, it should match even if you download from huggingface).
142
+
143
+ ## 2.1 Using the provided viewer
144
+ Basic usage:
145
+ ```
146
+ /dronescapes_viewer.py data/test_set_annotated_only/ # or any of the 8 directories
147
+ ```
148
+
149
+ Should output:
150
+ ```
151
+ ```
152
+
153
+ ## TODOs
154
+ - mask2former convert
155
+ - add raw script for reading data
156
+ - add semantics for each representation in a DronescapesReader
157
+ - add notebook for visualisation
158
+ - push to huggingface dataset
cfg.yaml ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ vre:
2
+ start_frame: ${oc.env:VRE_START_IX}
3
+ end_frame: ${oc.env:VRE_END_IX,null}
4
+ export_npy: True
5
+ export_png: True
6
+ exception_mode: skip_representation
7
+
8
+ representations:
9
+ rgb:
10
+ type: default
11
+ name: rgb
12
+ dependencies: []
13
+ parameters: {}
14
+
15
+ hsv:
16
+ type: default
17
+ name: hsv
18
+ dependencies: []
19
+ parameters: {}
20
+
21
+ halftone1:
22
+ type: soft-segmentation
23
+ name: python-halftone
24
+ dependencies: []
25
+ parameters:
26
+ sample: 3
27
+ scale: 1
28
+ percentage: 91
29
+ angles: [0, 15, 30, 45]
30
+ antialias: False
31
+ resolution: [240, 426]
32
+
33
+ edges_canny:
34
+ type: edges
35
+ name: canny
36
+ dependencies: []
37
+ parameters:
38
+ threshold1: 100
39
+ threshold2: 200
40
+ aperture_size: 3
41
+ l2_gradient: True
42
+
43
+ softseg_kmeans:
44
+ type: soft-segmentation
45
+ name: kmeans
46
+ dependencies: []
47
+ parameters:
48
+ n_clusters: 6
49
+ epsilon: 2
50
+ max_iterations: 10
51
+ attempts: 3
52
+
53
+ softseg_gb:
54
+ type: soft-segmentation
55
+ name: generalized_boundaries
56
+ dependencies: []
57
+ parameters:
58
+ use_median_filtering: True
59
+ adjust_to_rgb: True
60
+ max_channels: 3
61
+
62
+ edges_dexined:
63
+ type: edges
64
+ name: dexined
65
+ dependencies: []
66
+ parameters: {}
67
+ batch_size: 15
68
+ vre_parameters:
69
+ device: ${oc.env:VRE_DEVICE,cpu}
70
+
71
+ fastsam(s):
72
+ type: semantic_segmentation
73
+ name: fastsam
74
+ dependencies: []
75
+ parameters:
76
+ variant: fastsam-s
77
+ iou: 0.9
78
+ conf: 0.4
79
+ vre_parameters:
80
+ device: ${oc.env:VRE_DEVICE,cpu}
81
+
82
+ depth_dpt:
83
+ type: depth
84
+ name: dpt
85
+ dependencies: []
86
+ parameters: {}
87
+ batch_size: 10
88
+ vre_parameters:
89
+ device: ${oc.env:VRE_DEVICE,cpu}
90
+
91
+ semantic_mask2former_swin_coco:
92
+ type: semantic_segmentation
93
+ name: mask2former
94
+ dependencies: []
95
+ batch_size: 1
96
+ parameters:
97
+ model_id: "47429163_0"
98
+ semantic_argmax_only: True
99
+ vre_parameters:
100
+ device: ${oc.env:VRE_DEVICE,cpu}
101
+
102
+ semantic_mask2former_swin_mapilary:
103
+ type: semantic_segmentation
104
+ name: mask2former
105
+ dependencies: []
106
+ batch_size: 1
107
+ parameters:
108
+ model_id: "49189528_0"
109
+ semantic_argmax_only: True
110
+ vre_parameters:
111
+ device: ${oc.env:VRE_DEVICE,cpu}
112
+
113
+ # only works if fps is also set (for images) via --frame_rate in cli. For videos, it works just fine.
114
+ opticalflow_rife:
115
+ type: optical-flow
116
+ name: rife
117
+ dependencies: []
118
+ batch_size: 15
119
+ parameters:
120
+ uhd: False
121
+ compute_backward_flow: False
122
+ vre_parameters:
123
+ device: ${oc.env:VRE_DEVICE,cpu}
commands.txt ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---- vre calls ----
2
+
3
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=0 vre raw_data/videos/atanasie_DJI_0652_full/atanasie_DJI_0652_full_540p.mp4 -o raw_data/npz_540p/atanasie_DJI_0652_full/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco;
4
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=1 vre raw_data/videos/barsana_DJI_0500_0501_combined_sliced_2700_14700/barsana_DJI_0500_0501_combined_sliced_2700_14700_540p.mp4 -o raw_data/npz_540p/barsana_DJI_0500_0501_combined_sliced_2700_14700/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
5
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=2 vre raw_data/videos/comana_DJI_0881_full/comana_DJI_0881_full_540p.mp4 -o raw_data/npz_540p/comana_DJI_0881_full/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
6
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=3 vre raw_data/videos/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110_540p.mp4 -o raw_data/npz_540p/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
7
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=4 vre raw_data/videos/herculane_DJI_0021_full/herculane_DJI_0021_full_540p.mp4 -o raw_data/npz_540p/herculane_DJI_0021_full/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
8
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=5 vre raw_data/videos/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715_540p.mp4 -o raw_data/npz_540p/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
9
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=6 vre raw_data/videos/norway_210821_DJI_0015_full/norway_210821_DJI_0015_full_540p.mp4 -o raw_data/npz_540p/norway_210821_DJI_0015_full/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
10
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=7 vre raw_data/videos/olanesti_DJI_0416_full/olanesti_DJI_0416_full_540p.mp4 -o raw_data/npz_540p/olanesti_DJI_0416_full/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
11
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=6 vre raw_data/videos/slanic_DJI_0956_0957_combined_sliced_780_9780/slanic_DJI_0956_0957_combined_sliced_780_9780_540p.mp4 -o raw_data/npz_540p/slanic_DJI_0956_0957_combined_sliced_780_9780/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
12
+ VRE_DEVICE=cuda CUDA_VISIBLE_DEVICES=7 vre raw_data/videos/petrova_DJI_0525_0526_combined_sliced_2850_11850/petrova_DJI_0525_0526_combined_sliced_2850_11850_540p.mp4 -o raw_data/npz_540p/petrova_DJI_0525_0526_combined_sliced_2850_11850/ --cfg_path cfg.yaml --output_dir_exist_mode overwrite --representations rgb opticalflow_rife depth_dpt edges_dexined semantic_mask2former_swin_mapilary semantic_mask2former_swin_coco
13
+
14
+ ---- copyfiles from cetal ----
15
+
16
+ /Date3/hpc/datasets/dronescapes/all_scenes/atanasie_DJI_0652_full/depthSfmManual202204 atanasie_DJI_0652_full/depthSfmManual202204
17
+ /Date3/hpc/datasets/dronescapes/all_scenes/atanasie_DJI_0652_full/normalsSfmManual202204 atanasie_DJI_0652_full/normalsSfmManual202204
18
+ /Date3/hpc/datasets/dronescapes/all_scenes/atanasie_DJI_0652_full/segprop8 atanasie_DJI_0652_full/segprop8
19
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/atanasie_DJI_0652_full atanasie_DJI_0652_full/mapillary_sseg
20
+ /Date3/hpc/datasets/dronescapes/all_scenes/barsana_combined_sliced_2700_14700/depthSfmManual202204 barsana_combined_sliced_2700_14700/depthSfmManual202204
21
+ /Date3/hpc/datasets/dronescapes/all_scenes/barsana_combined_sliced_2700_14700/normalsSfmManual202204 barsana_combined_sliced_2700_14700/normalsSfmManual202204
22
+ /Date3/hpc/datasets/dronescapes/all_scenes/barsana_combined_sliced_2700_14700/segprop8 barsana_combined_sliced_2700_14700/segprop8
23
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/barsana_combined_sliced_2700_14700 barsana_combined_sliced_2700_14700/mapillary_sseg
24
+ /Date8/hpc/vre/comana_DJI_0881_full/segprop8 comana_DJI_0881_full/segprop8
25
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/comana_DJI_0881_full comana_DJI_0881_full/mapillary_sseg
26
+ /Date3/hpc/datasets/dronescapes/all_scenes/gradistei_combined_sliced_3510_13110/depthSfmManual202204 gradistei_combined_sliced_3510_13110/depthSfmManual202204
27
+ /Date3/hpc/datasets/dronescapes/all_scenes/gradistei_combined_sliced_3510_13110/normalsSfmManual202204 gradistei_combined_sliced_3510_13110/normalsSfmManual202204
28
+ /Date3/hpc/datasets/dronescapes/all_scenes/gradistei_combined_sliced_3510_13110/segprop8 gradistei_combined_sliced_3510_13110/segprop8
29
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/gradistei_combined_sliced_3510_13110 gradistei_combined_sliced_3510_13110/mapillary_sseg
30
+ /Date3/hpc/datasets/dronescapes/all_scenes/herculane_DJI_0021_full/depthSfmManual202204 herculane_DJI_0021_full/depthSfmManual202204
31
+ /Date3/hpc/datasets/dronescapes/all_scenes/herculane_DJI_0021_full/normalsSfmManual202204 herculane_DJI_0021_full/normalsSfmManual202204
32
+ /Date3/hpc/datasets/dronescapes/all_scenes/herculane_DJI_0021_full/segprop8 herculane_DJI_0021_full/segprop8
33
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/herculane_DJI_0021_full herculane_DJI_0021_full/mapillary_sseg
34
+ /Date3/hpc/datasets/dronescapes/all_scenes/jupiter_combined_sliced_10650_21715/depthSfmManual202204 jupiter_combined_sliced_10650_21715/depthSfmManual202204
35
+ /Date3/hpc/datasets/dronescapes/all_scenes/jupiter_combined_sliced_10650_21715/normalsSfmManual202204 jupiter_combined_sliced_10650_21715/normalsSfmManual202204
36
+ /Date3/hpc/datasets/dronescapes/all_scenes/jupiter_combined_sliced_10650_21715/segprop8 jupiter_combined_sliced_10650_21715/segprop8
37
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/jupiter_combined_sliced_10650_21715 jupiter_combined_sliced_10650_21715/mapillary_sseg
38
+ /Date3/hpc/datasets/dronescapes/all_scenes/norce_got_210821_dji_0015/segprop8 norce_got_210821_dji_0015/segprop8
39
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/norce_got_210821_dji_0015 norce_got_210821_dji_0015/mapillary_sseg
40
+ /Date3/hpc/datasets/dronescapes/all_scenes/olanesti_DJI_0416_full/depthSfmManual202204 olanesti_DJI_0416_full/depthSfmManual202204
41
+ /Date3/hpc/datasets/dronescapes/all_scenes/olanesti_DJI_0416_full/normalsSfmManual202204 olanesti_DJI_0416_full/normalsSfmManual202204
42
+ /Date3/hpc/datasets/dronescapes/all_scenes/olanesti_DJI_0416_full/segprop8 olanesti_DJI_0416_full/segprop8
43
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/olanesti_DJI_0416_full olanesti_DJI_0416_full/mapillary_sseg
44
+ /Date3/hpc/datasets/dronescapes/all_scenes/petrova_combined_sliced_2850_11850/depthSfmManual202204 petrova_combined_sliced_2850_11850/depthSfmManual202204
45
+ /Date3/hpc/datasets/dronescapes/all_scenes/petrova_combined_sliced_2850_11850/normalsSfmManual202204 petrova_combined_sliced_2850_11850/normalsSfmManual202204
46
+ /Date3/hpc/datasets/dronescapes/all_scenes/petrova_combined_sliced_2850_11850/segprop8 petrova_combined_sliced_2850_11850/segprop8
47
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/petrova_combined_sliced_2850_11850 petrova_combined_sliced_2850_11850/mapillary_sseg
48
+ /Date3/hpc/datasets/dronescapes/all_scenes/slanic_combined_sliced_780_9780/depthSfmManual202204 slanic_combined_sliced_780_9780/depthSfmManual202204
49
+ /Date3/hpc/datasets/dronescapes/all_scenes/slanic_combined_sliced_780_9780/normalsSfmManual202204 slanic_combined_sliced_780_9780/normalsSfmManual202204
50
+ /Date3/hpc/datasets/dronescapes/all_scenes/slanic_combined_sliced_780_9780/segprop8 slanic_combined_sliced_780_9780/segprop8
51
+ /Date3/hpc/code/Mask2Former/demo_dronescapes/outputs_dronescapes_compatible/mapillary_sseg/slanic_combined_sliced_780_9780 slanic_combined_sliced_780_9780/mapillary_sseg
52
+ /Date3/hpc/datasets/dronescapes/velocities velocities
53
+
54
+ ---- link files from raw data to train/val/semisup/test data ----
55
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/train_files_11664.txt -o data/train_set --overwrite
56
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/val_files_605.txt -o data/validation_set --overwrite
57
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/semisup_files_11299.txt -o data/semisupervised_set --overwrite
58
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/annotated_and_segprop/test_files_5603.txt -o data/test_set --overwrite
59
+
60
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/train_files_218.txt -o data/train_set_annotated_only --overwrite
61
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/val_files_15.txt -o data/validation_set_annotated_only --overwrite
62
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/semisup_files_207.txt -o data/semisupervised_set_annotated_only --overwrite
63
+ ./symlinks_from_txt_list.py raw_data/npz_540p/ --txt_file txt_files/manually_annotated_files/test_files_116.txt -o data/test_set_annotated_only --overwrite
count_npz.sh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Usage: bash count_npz npz_540p
2
+ (
3
+ echo "scene,repr,counts"
4
+ ls $1 | while read line; do
5
+ scene_name=$(echo $line | cut -d "_" -f1);
6
+ ls $1/$line | while read line2; do
7
+ n_files=$(find $1/$line/"$line2" -name "*.npz" | wc -l);
8
+ echo "$scene_name","$line2","$n_files";
9
+ done;
10
+ done ) | python -c '''
11
+ import sys, pandas as pd;
12
+ df = pd.read_csv(sys.stdin);
13
+ df2 = df.groupby("scene").apply(lambda x: dict(zip(x["repr"], x["counts"])), include_groups=False).reset_index();
14
+ df3 = pd.json_normalize(df2[0]).set_index(df2["scene"]).fillna(0).astype(int);
15
+ df4 = df3.reindex(columns=["rgb", *sorted(x for x in df3.columns if x != "rgb")])
16
+ df4.columns = [f"{x[0:18]}.." if len(x) > 20 else x for x in df4.columns]
17
+ print(df4.to_markdown())
18
+ '''
dronescapes_reader/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ """init file"""
2
+ from .multitask_dataset import MultiTaskDataset
dronescapes_reader/multitask_dataset.py ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """MultiTask Dataset module compatible with torch.utils.data.Dataset & DataLoader."""
3
+ from __future__ import annotations
4
+ from pathlib import Path
5
+ from argparse import Namespace, ArgumentParser
6
+ from pprint import pprint
7
+ from natsort import natsorted
8
+ from loguru import logger
9
+ import torch as tr
10
+ import numpy as np
11
+ from torch.utils.data import Dataset, DataLoader
12
+ from lovely_tensors import monkey_patch
13
+
14
+ monkey_patch()
15
+ BuildDatasetTuple = tuple[dict[str, list[Path]], list[str]]
16
+ MultiTaskItem = tuple[dict[str, tr.Tensor], str, list[str]]
17
+
18
+ class NpzRepresentation:
19
+ """Generic Task with data read from/saved to npz files. Tries to read data as-is from disk and store it as well"""
20
+ def __init__(self, name: str):
21
+ self.name = name
22
+
23
+ def load_from_disk(self, path: Path) -> tr.Tensor:
24
+ """Reads the npz data from the disk and transforms it properly"""
25
+ data = np.load(path, allow_pickle=False)
26
+ data = data if isinstance(data, np.ndarray) else data["arr_0"] # in case on npz, we need this as well
27
+ return tr.from_numpy(data)
28
+
29
+ def save_to_disk(self, data: tr.Tensor, path: Path):
30
+ """stores this item to the disk which can then be loaded via `load_from_disk`"""
31
+ np.save(path, data.cpu().numpy(), allow_pickle=False)
32
+
33
+ def plot_fn(self, x: tr.Tensor) -> np.ndarray:
34
+ """very basic implementation of converting this representation to a viewable image. You should overwrite this"""
35
+ assert isinstance(x, tr.Tensor), type(x)
36
+ if len(x.shape) == 2: x = x.unsqueeze(-1)
37
+ assert len(x.shape) == 3, x.shape # guaranteed to be (H, W, C) at this point
38
+ if x.shape[-1] != 3: x = x[..., 0:1]
39
+ if x.shape[-1] == 1: x = x.repeat(1, 1, 3)
40
+ x = x.nan_to_num(0).cpu().numpy() # guaranteed to be (H, W, 3) at this point hopefully
41
+ if x.dtype != np.uint8: x = np.nan_to_num((x - x.min() / (x.max() - x.min())) * 255, 0).astype(np.uint8)
42
+ return x
43
+
44
+ def __repr__(self):
45
+ return str(self)
46
+
47
+ def __str__(self):
48
+ return f"{str(type(self)).split('.')[-1][0:-2]}({self.name})"
49
+
50
+ class MultiTaskDataset(Dataset):
51
+ """
52
+ MultiTaskDataset implementation. Reads data from npz files and returns them as a dict.
53
+
54
+ Parameters:
55
+ - path: Path to the directory containing the npz files.
56
+ - task_names: List of tasks that are present in the dataset. If set to None, will infer from the files on disk.
57
+ - handle_missing_data: Modes to handle missing data. Valid options are:
58
+ - drop: Drop the data point if any of the representations is missing.
59
+ - fill_none: Fill the missing data with Nones.
60
+
61
+ Expected directory structure:
62
+ path/
63
+ - task_1/0.npz, ..., N.npz
64
+ - ...
65
+ - task_n/0.npz, ..., N.npz
66
+
67
+ Names can be in a different format (i.e. 2022-01-01.npz), but must be consistent and equal across all tasks.
68
+ """
69
+
70
+ def __init__(self, path: Path, task_names: list[str] | None = None, handle_missing_data: str = "fill_none",
71
+ files_suffix: str = "npz"):
72
+ assert path.exists(), f"Provided path '{path}' doesn't exist!"
73
+ assert handle_missing_data in ("drop", "fill_none"), f"Invalid handle_missing_data mode: {handle_missing_data}"
74
+ assert files_suffix == "npz", "Only npz supported right now (though trivial to update)"
75
+ self.path = Path(path).absolute()
76
+ self.handle_missing_data = handle_missing_data
77
+ self.suffix = files_suffix
78
+ self.files_per_repr, self.file_names = self._build_dataset()
79
+
80
+ if task_names is None:
81
+ task_names = list(self.files_per_repr.keys())
82
+ logger.debug(f"No explicit tasks provided. Using all of them as read from the paths ({len(task_names)}).")
83
+ assert all(isinstance(x, str) for x in task_names), tuple(zip(task_names, (type(x) for x in task_names)))
84
+ self.task_names = sorted(task_names)
85
+ self._data_shape: tuple[int, ...] | None = None
86
+ self._tasks: list[NpzRepresentation] | None = None
87
+ self.name_to_task = {task.name: task for task in self.tasks}
88
+ logger.info(f"Tasks used in this dataset: {self.task_names}")
89
+
90
+ # Public methods and properties
91
+
92
+ @property
93
+ def data_shape(self) -> dict[str, tuple[int, ...]]:
94
+ """Returns a {task: shape_tuple} for all representations. At least one npz file must exist for each."""
95
+ first_npz = {task: [_v for _v in files if _v is not None][0] for task, files in self.files_per_repr.items()}
96
+ data_shape = {task: self.name_to_task[task].load_from_disk(first_npz[task]).shape for task in self.task_names}
97
+ return data_shape
98
+
99
+ @property
100
+ def tasks(self) -> list[NpzRepresentation]:
101
+ """
102
+ Returns a list of instantiated tasks in the same order as self.task_names. Overwrite this to add
103
+ new tasks and semantics (i.e. plot_fn or doing some preprocessing after loading from disk in some tasks.
104
+ """
105
+ if self._tasks is not None:
106
+ return self._tasks
107
+ self._tasks = [NpzRepresentation(task_name) for task_name in self.task_names]
108
+ return self._tasks
109
+
110
+ def collate_fn(self, items: list[MultiTaskItem]) -> MultiTaskItem:
111
+ """
112
+ given a list of items (i.e. from a reader[n:n+k] call), return the item batched on 1st dimension.
113
+ Nones (missing data points) are turned into zeros as per the data shape of that dim.
114
+ """
115
+ assert all(item[2] == self.task_names for item in items), ((item[2] for item in items), self.task_names)
116
+ items_name = [item[1] for item in items]
117
+ res = {k: tr.zeros(len(items), *self.data_shape[k]) for k in self.task_names}
118
+ for i in range(len(items)):
119
+ for k in self.task_names:
120
+ res[k][i] = items[i][0][k] if items[i][0][k] is not None else 0
121
+ return res, items_name, self.task_names
122
+
123
+ # Private methods
124
+
125
+ def _get_all_npz_files(self) -> dict[str, list[Path]]:
126
+ """returns a dict of form: {"rgb": ["0.npz", "1.npz", ..., "N.npz"]}"""
127
+ in_files = {}
128
+ all_repr_dirs: list[str] = [x.name for x in self.path.iterdir() if x.is_dir()]
129
+ for repr_dir_name in all_repr_dirs:
130
+ dir_name = self.path / repr_dir_name
131
+ items = natsorted(dir_name.glob(f"*.{self.suffix}"), key=lambda x: x.name) # important: use natsorted() here
132
+ in_files[repr_dir_name] = items
133
+ assert not any(len(x) == 0 for x in in_files.values()), f"{ [k for k, v in in_files.items() if len(v) == 0] }"
134
+ return in_files
135
+
136
+ def _build_dataset_drop(self) -> BuildDatasetTuple:
137
+ in_files = self._get_all_npz_files()
138
+ common = set(x.name for x in next(iter(in_files.values())))
139
+ nodes = in_files.keys()
140
+ for node in nodes:
141
+ common = common.intersection([f.name for f in in_files[node]])
142
+ assert len(common) > 0, f"Node '{node}' made the intersection null"
143
+ common = natsorted(list(common))
144
+ logger.info(f"Found {len(common)} data points for each node ({len(nodes)} nodes).")
145
+ files_per_repr = {node: [self.path / node / x for x in common] for node in nodes}
146
+ return files_per_repr, common
147
+
148
+ def _build_dataset_fill_none(self) -> BuildDatasetTuple:
149
+ in_files = self._get_all_npz_files()
150
+ all_files = set(x.name for x in next(iter(in_files.values())))
151
+ nodes = in_files.keys()
152
+ for node in nodes:
153
+ all_files = all_files.union([f.name for f in in_files[node]])
154
+ all_files = natsorted(list(all_files))
155
+ logger.info(f"Found {len(all_files)} data points as union of all nodes' data ({len(nodes)} nodes).")
156
+
157
+ files_per_repr = {node: [] for node in nodes}
158
+ in_file_names = {node: [f.name for f in in_files[node]] for node in nodes}
159
+ for node in nodes:
160
+ for file_name in all_files:
161
+ file_path = self.path / node / file_name if file_name in in_file_names[node] else None
162
+ files_per_repr[node].append(file_path)
163
+ return files_per_repr, all_files
164
+
165
+ def _build_dataset(self) -> BuildDatasetTuple:
166
+ logger.debug(f"Building dataset from: '{self.path}'")
167
+ if self.handle_missing_data == "drop":
168
+ return self._build_dataset_drop()
169
+ else:
170
+ return self._build_dataset_fill_none()
171
+
172
+ # Python magic methods (pretty printing the reader object, reader[0], len(reader) etc.)
173
+
174
+ def __getitem__(self, index: int | slice | list[int] | tuple) -> MultiTaskItem:
175
+ """Read the data all the desired nodes"""
176
+ assert isinstance(index, (int, slice, list, tuple)), type(index)
177
+ if isinstance(index, slice):
178
+ assert index.start is not None and index.stop is not None and index.step is None, "Only reader[l:r] allowed"
179
+ index = list(range(index.stop)[index])
180
+ if isinstance(index, (list, tuple)):
181
+ return self.collate_fn([self.__getitem__(ix) for ix in index])
182
+ res = {}
183
+ item_name = self.file_names[index]
184
+
185
+ for _repr in self.tasks:
186
+ file_path = self.files_per_repr[_repr.name][index]
187
+ file_path = file_path.resolve() if file_path is not None else None
188
+ assert self.handle_missing_data == "fill_none" or (file_path is not None and file_path.exists()), item_name
189
+ item = _repr.load_from_disk(file_path) if file_path is not None and file_path.exists() else None
190
+ res[_repr.name] = item
191
+ return (res, item_name, self.task_names)
192
+
193
+ def __len__(self) -> int:
194
+ return len(self.files_per_repr[self.task_names[0]]) # all of them have the same number (filled with None or not)
195
+
196
+ def __str__(self):
197
+ f_str = f"[{str(type(self)).rsplit('.', maxsplit=1)[-1][0:-2]}]"
198
+ f_str += f"\n - Path: '{self.path}'"
199
+ f_str += f"\n - Only full data: {self.handle_missing_data == 'drop'}"
200
+ f_str += f"\n - Representations ({len(self.tasks)}): {self.tasks}"
201
+ f_str += f"\n - Length: {len(self)}"
202
+ return f_str
203
+
204
+ def __repr__(self):
205
+ return str(self)
206
+
207
+ def main():
208
+ """main fn"""
209
+ parser = ArgumentParser()
210
+ parser.add_argument("dataset_path", type=Path)
211
+ parser.add_argument("--handle_missing_data", choices=("drop", "fill_none"), default="fill_none")
212
+ args = parser.parse_args()
213
+
214
+ reader = MultiTaskDataset(args.dataset_path, task_names=None, handle_missing_data=args.handle_missing_data)
215
+ print(reader)
216
+ print(f"Shape: {reader.data_shape}")
217
+
218
+ rand_ix = np.random.randint(len(reader))
219
+ data, name, repr_names = reader[rand_ix] # get a random single data point
220
+ print(f"Name: {name}. Nodes: {repr_names}")
221
+ pprint({k: (v.shape if v is not None else None) for k, v in data.items()})
222
+
223
+ data, name, repr_names = reader[rand_ix: min(len(reader), rand_ix + 5)] # get a random batch
224
+ print(f"Name: {name}. Nodes: {repr_names}")
225
+ pprint({k: v.shape for k, v in data.items()}) # Nones are converted to 0s automagically
226
+
227
+ loader = DataLoader(reader, collate_fn=reader.collate_fn, batch_size=5, shuffle=True)
228
+ data, name, repr_names = next(iter(loader)) # get a random batch using torch DataLoader
229
+ print(f"Name: {name}. Nodes: {repr_names}")
230
+ pprint({k: v.shape for k, v in data.items()}) # Nones are converted to 0s automagically
231
+
232
+ if __name__ == "__main__":
233
+ main()
dronescapes_viewer.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ import sys
3
+ from pathlib import Path
4
+ from dronescapes_reader import MultiTaskDataset
5
+ from pprint import pprint
6
+ from torch.utils.data import DataLoader
7
+ import random
8
+
9
+ def main():
10
+ reader = MultiTaskDataset(Path(sys.argv[1]), handle_missing_data="fill_none")
11
+ print(reader)
12
+
13
+ print("== Shapes ==")
14
+ pprint(reader.data_shape)
15
+
16
+ print("== Random loaded item ==")
17
+ rand_ix = random.randint(0, len(reader))
18
+ data, name, repr_names = reader[rand_ix] # get a random item
19
+ pprint({k: v for k, v in data.items()})
20
+
21
+ print("== Random loaded batch ==")
22
+ batch_data, name, repr_names = reader[rand_ix: min(len(reader), rand_ix + 5)] # get a random batch
23
+ pprint({k: v.shape for k, v in batch_data.items()}) # Nones are converted to 0s automagically
24
+
25
+ print("== Random loaded batch using torch DataLoader ==")
26
+ loader = DataLoader(reader, collate_fn=reader.collate_fn, batch_size=5, shuffle=True)
27
+ batch_data, name, repr_names = reader[rand_ix: min(len(reader), rand_ix + 5)] # get a random batch
28
+ pprint({k: v.shape for k, v in batch_data.items()}) # Nones are converted to 0s automagically
29
+
30
+ if __name__ == "__main__":
31
+ main()
logo.png ADDED

Git LFS Details

  • SHA256: 332901bc02631f7d3e38f7153e145575f785f6821a9c44e0bff0487124662e6d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
raw_data/videos/atanasie_DJI_0652_full/commands.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gdown 1qz32oi-6bOKBL6A84lglOUtHK0OQyo4Y # DJI_0652.MP4
2
+ ffmpeg -i DJI_0652.MP4 -vf "scale=960:540" -c:v libx264 atanasie_DJI_0652_full_540p.mp4
3
+ ffmpeg -i DJI_0652.MP4 -vf "scale=1280:720" -c:v libx264 atanasie_DJI_0652_full_720p.mp4
4
+
raw_data/videos/barsana_DJI_0500_0501_combined_sliced_2700_14700/commands.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ gdown 1GzBnD8peVafDP7ZQAJOu7j4TYfLfdHd3 # DJI_0500.MP4
2
+ gdown 1Mud2unSluYPbLuLvXTo-10TFmyABXSQO # DJI_0501.MP4
3
+ echo -e "file DJI_0500.MP4\nfile DJI_0501.MP4\n" > list.txt
4
+ ffmpeg -f concat -i list.txt -c copy output_tmp.mp4
5
+ ffmpeg -ss 90.09 -i output_tmp.mp4 -vf "scale=960:540" -c:v libx264 -frames:v 12001 barsana_DJI_0500_0501_combined_sliced_2700_14700_540p.mp4 # 2700 / 29.97 = 90.09
6
+ ffmpeg -ss 90.09 -i output_tmp.mp4 -vf "scale=1280:720" -c:v libx264 -frames:v 12001 barsana_DJI_0500_0501_combined_sliced_2700_14700_720p.mp4
7
+ rm list.txt output_tmp.mp4
raw_data/videos/comana_DJI_0881_full/commands.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gdown 1Sp1CwGVHzOVwE0U3o2teLs7FoSI72nVX # DJI_0881.MP4
2
+ ffmpeg -i DJI_0881.MP4 -vf "scale=960:540" -c:v libx264 comana_DJI_0881_full_540p.mp4
3
+ ffmpeg -i DJI_0881.MP4 -vf "scale=1280:720" -c:v libx264 comana_DJI_0881_full_720p.mp4
4
+
raw_data/videos/gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/commands.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ gdown 1_CmYdwN6TXrowUVtwosHUFCJ0yYVP6s5 # DJI_0787.MP4
2
+ gdown 1-S0EmEbV5X4O-V7bOWSSTOeaINSlwiev # DJI_0788.MP4
3
+ gdown 1VL2afMtjS5zObTL49_gwl3Z7bncMDwFw # DJI_0789.MP4
4
+ echo -e "file DJI_0787.MP4\nfile DJI_0788.MP4\nfile DJI_0789.MP4" > list.txt
5
+ ffmpeg -f concat -i list.txt -c copy output_tmp.mp4
6
+ ffmpeg -ss 117.117 -i output_tmp.mp4 -vf "scale=960:540" -c:v libx264 -frames:v 12001 gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110_540p.mp4 # 3510 / 29.97 = 117.117
7
+ ffmpeg -ss 117.117 -i output_tmp.mp4 -vf "scale=1280:720" -c:v libx264 -frames:v 12001 gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110_720p.mp4 # 3510 / 29.97 = 117.117
8
+ rm list.txt output_tmp.mp4
raw_data/videos/herculane_DJI_0021_full/commands.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gdown 18-5eFwJQkFtM_1jwMK9i9qFLAEENQv3o # DJI_0021.MP4
2
+ ffmpeg -i DJI_0021.MP4 -vf "scale=960:540" -c:v libx264 herculane_DJI_0021_full_540p.mp4
3
+ ffmpeg -i DJI_0021.MP4 -vf "scale=1280:720" -c:v libx264 herculane_DJI_0021_full_720p.mp4
4
+
raw_data/videos/jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/commands.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ gdown 1I2wHteOfHJ8585abjWRXCJw-4HlEvoD- # DJI_0703.MP4
2
+ gdown 1Qk9ViYMJHh3a3AKHW_EGhFT4mw32_4O5 # DJI_0704.MP4
3
+ gdown 1CBYiWOnkXvYBL8l3EgCEp-RGyV84kPte # DJI_0705.MP4
4
+ echo -e "file DJI_0703.MP4\nfile DJI_0704.MP4\nfile DJI_0705.MP4" > list.txt
5
+ ffmpeg -f concat -i list.txt -c copy output_tmp.mp4
6
+ ffmpeg -ss 355.355 -i output_tmp.mp4 -vf "scale=960:540" -c:v libx264 -frames:v 12001 jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715_540p.mp4 # 10650 / 29.97 = 355.355
7
+ ffmpeg -ss 355.355 -i output_tmp.mp4 -vf "scale=1280:720" -c:v libx264 -frames:v 12001 jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715_720p.mp4
8
+ rm list.txt output_tmp.mp4
raw_data/videos/norway_210821_DJI_0015_full/commands.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ gdown 1idHZBqiS4ZlLgtnNOwJG08ecPSWcNo-Q # DJI_0015.MP4
2
+ ffmpeg -i DJI_0015.MP4 -vf "scale=960:540" -c:v libx264 norway_210821_DJI_0015_full_540p.mp4
3
+ ffmpeg -i DJI_0015.MP4 -vf "scale=1280:720" -c:v libx264 norway_210821_DJI_0015_full_720p.mp4
raw_data/videos/olanesti_DJI_0416_full/commands.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ gdown 1V8uIVi1jZgmlDMymUVoblU-GVmPKTvzV # DJI_0416.MP4
2
+ ffmpeg -i DJI_0416.MP4 -vf "scale=960:540" -c:v libx264 olanesti_DJI_0416_full_540p.mp4
3
+ ffmpeg -i DJI_0416.MP4 -vf "scale=1280:720" -c:v libx264 olanesti_DJI_0416_full_720p.mp4
raw_data/videos/petrova_DJI_0525_0526_combined_sliced_2850_11850/commands.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ gdown 1WusHf8gYSFCTs4ncXf5sgr-w8ELZ1UNA # DJI_0525_good.MP4
2
+ gdown 1QNy2Yi_VBL362zF68lXJ7Tw6xSV6P4Vo # DJI_0526_good.MP4
3
+ echo -e "file DJI_0525_good.MP4\nfile DJI_0526_good.MP4\n" > list.txt
4
+ ffmpeg -f concat -i list.txt -c copy output_tmp.mp4
5
+ ffmpeg -ss 95.095 -i output_tmp.mp4 -vf "scale=960:540" -c:v libx264 -frames:v 12001 petrova_DJI_0525_0526_combined_sliced_2850_11850_540p.mp4 # 2850 / 29.97 = 95.095
6
+ ffmpeg -ss 95.095 -i output_tmp.mp4 -vf "scale=1280:720" -c:v libx264 -frames:v 12001 petrova_DJI_0525_0526_combined_sliced_2850_11850_720p.mp4
7
+ rm list.txt output_tmp.mp4
raw_data/videos/slanic_DJI_0956_0957_combined_sliced_780_9780/commands.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ gdown 1dZgxsBjJjyuCJWeBgkIm1hc_A3Nm5PsA # DJI_0956.MP4
2
+ gdown 11NnTUchvWXmJmwQxXUYe5-v7nCuWd4D4 # DJI_0957.MP4
3
+ echo -e "file DJI_0956.MP4\nfile DJI_0957.MP4\n" > list.txt
4
+ ffmpeg -f concat -i list.txt -c copy output_tmp.mp4
5
+ ffmpeg -ss 26.02 -i output_tmp.mp4 -vf "scale=960:540" -c:v libx264 -frames:v 9001 slanic_DJI_0956_0957_combined_sliced_780_9780_540p.mp4
6
+ ffmpeg -ss 26.02 -i output_tmp.mp4 -vf "scale=1280:720" -c:v libx264 -frames:v 9001 slanic_DJI_0956_0957_combined_sliced_780_9780_720p.mp4
7
+ rm list.txt output_tmp.mp4
split.png ADDED

Git LFS Details

  • SHA256: 368f6c89de5c78b81af20a6dcdeadd16ee770c9b614a99e95391732504d6157b
  • Pointer size: 131 Bytes
  • Size of remote file: 118 kB
symlinks_from_txt_list.py ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ import shutil
3
+ import os
4
+ from argparse import ArgumentParser, Namespace
5
+ from pathlib import Path
6
+ from loguru import logger
7
+ from tqdm import tqdm
8
+
9
+ def _check_and_find(dataset_dir: Path, output_path: str, scene: str, _repr: str,
10
+ stem: str, suffix: str) -> tuple[Path, Path] | None:
11
+ """handle all weirdnesses on how we store data. VRE uses npy/x.npy, but others have different format too."""
12
+ out_file = Path(f"{output_path}/{_repr}/{scene}_{stem}{suffix}") # e:g. rgb/slanic_1.npz
13
+ if (in_path := (dataset_dir / scene / _repr / f"{stem}{suffix}")).exists(): # e.g.: slanic/rgb/1.npz
14
+ return in_path, out_file
15
+ if (in_path := (dataset_dir / scene / _repr / "npy" / f"{stem}{suffix}")).exists(): # e.g.: slanic/rgb/npy/1.npz
16
+ return in_path, out_file
17
+
18
+ try:
19
+ int_stem = int(stem)
20
+ except ValueError:
21
+ return None
22
+
23
+ if (in_path := (dataset_dir / scene / _repr / f"{int_stem:06d}{suffix}")).exists(): # e.g.: slanic/rgb/000001.npz
24
+ return in_path, out_file
25
+ # e.g.: slanic/rgb/npy/000001.npz
26
+ if (in_path := (dataset_dir / scene / _repr / "npy" / f"{int_stem:06d}{suffix}")).exists():
27
+ return in_path, out_file
28
+ return None
29
+
30
+ def check_and_gather_all_files(dataset_dir: Path, txt_data: list[tuple[str, str]],
31
+ output_path: Path, suffix: str) -> dict[str, str]:
32
+ """returns a {in_dir/scene/repr/stem.suffix: out_dir/repr/scene/stem.suffix} dict based on dataset_dir"""
33
+ assert f"{suffix}".startswith("."), suffix
34
+ scene_reprs = {}
35
+ symlinks_to_do = {}
36
+ for scene, stem in tqdm(txt_data, desc="Gather data"):
37
+ assert (dataset_dir / scene).exists(), f"Scene '{scene}' does not exist in '{dataset_dir}'"
38
+ if scene not in scene_reprs:
39
+ scene_reprs[scene] = [x.name for x in (dataset_dir / scene).iterdir() if x.is_dir()]
40
+ n_found = 0
41
+ for _repr in scene_reprs[scene]:
42
+ if (res := _check_and_find(dataset_dir, output_path, scene, _repr, stem, suffix)) is not None:
43
+ in_file, out_file = res
44
+ n_found += 1
45
+ symlinks_to_do[in_file] = out_file
46
+ assert n_found > 0, f"Stem '{stem}' not found in any repr ({scene_reprs[scene]}) of scene '{scene}'"
47
+ assert len(symlinks_to_do) > 0
48
+ logger.info(f"Gathered {len(symlinks_to_do)} symlinks to create")
49
+ return symlinks_to_do
50
+
51
+ def read_txt_data(txt_file: Path) -> list[tuple[str, str]]:
52
+ """reads the data from the txt file with format scene/stem"""
53
+ f = open(txt_file, "r")
54
+ res = []
55
+ for row in f.readlines():
56
+ assert len(split_row := row.strip().split("/")) == 2, row
57
+ res.append(split_row)
58
+ logger.info(f"Read {len(res)} paths.")
59
+ return res
60
+
61
+ def get_args() -> Namespace:
62
+ """cli args"""
63
+ parser = ArgumentParser()
64
+ parser.add_argument("dataset_dir", type=lambda p: Path(p).absolute())
65
+ parser.add_argument("--txt_file", type=Path)
66
+ parser.add_argument("--output_path", "-o", type=lambda p: Path(p).absolute())
67
+ parser.add_argument("--overwrite", action="store_true")
68
+ parser.add_argument("--copy_files", action="store_true")
69
+ args = parser.parse_args()
70
+ assert not args.output_path.exists() or args.overwrite, f"'{args.output_path}' exists. Use --overwrite."
71
+ if args.output_path.exists():
72
+ shutil.rmtree(args.output_path)
73
+ assert args.dataset_dir.exists() and args.dataset_dir.is_dir(), f"'{args.dataset_dir}' doesn't exist."
74
+ assert args.txt_file.exists(), f"'{args.txt_file}' doesn't exist."
75
+ return args
76
+
77
+ def main(args: Namespace):
78
+ """main fn"""
79
+ logger.info(f"\n- In dir: {args.dataset_dir}\n- Out dir: {args.output_path} \n- Symlinks: {not args.copy_files}")
80
+ args.output_path.mkdir(exist_ok=False, parents=True)
81
+ txt_data = read_txt_data(args.txt_file)
82
+ symlinks_to_do = check_and_gather_all_files(args.dataset_dir, txt_data, args.output_path, suffix=".npz")
83
+ for in_file, out_file in tqdm(symlinks_to_do.items(), desc="symlinks"):
84
+ Path(out_file).parent.mkdir(exist_ok=True, parents=True)
85
+ if args.copy_files:
86
+ shutil.copyfile(in_file, out_file, follow_symlinks=True)
87
+ else:
88
+ rel_path = f"{os.path.relpath(in_file.parent, out_file.parent)}/{in_file.name}"
89
+ assert (pth := Path(f"{out_file.parent}/{rel_path}")).exists(), pth
90
+ os.symlink(rel_path, out_file)
91
+
92
+ if __name__ == "__main__":
93
+ main(get_args())
txt_files/annotated_and_segprop/semisup_files_11299.txt ADDED
The diff for this file is too large to render. See raw diff
 
txt_files/annotated_and_segprop/test_files_5603.txt ADDED
The diff for this file is too large to render. See raw diff
 
txt_files/annotated_and_segprop/train_files_11664.txt ADDED
The diff for this file is too large to render. See raw diff
 
txt_files/annotated_and_segprop/val_files_605.txt ADDED
@@ -0,0 +1,605 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8880
2
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8881
3
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8882
4
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8883
5
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8884
6
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8885
7
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8886
8
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8887
9
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8888
10
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8889
11
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8890
12
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8891
13
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8892
14
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8893
15
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8894
16
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8895
17
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8896
18
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8897
19
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8898
20
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8899
21
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8900
22
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8901
23
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8902
24
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8903
25
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8904
26
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8905
27
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8906
28
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8907
29
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8908
30
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8909
31
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8910
32
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8911
33
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8912
34
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8913
35
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8914
36
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8915
37
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8916
38
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8917
39
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8918
40
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8919
41
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8920
42
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8921
43
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8922
44
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8923
45
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8924
46
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8925
47
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8926
48
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8927
49
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8928
50
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8929
51
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8930
52
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8931
53
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8932
54
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8933
55
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8934
56
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8935
57
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8936
58
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8937
59
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8938
60
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8939
61
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8940
62
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8941
63
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8942
64
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8943
65
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8944
66
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8945
67
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8946
68
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8947
69
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8948
70
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8949
71
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8950
72
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8951
73
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8952
74
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8953
75
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8954
76
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8955
77
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8956
78
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8957
79
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8958
80
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8959
81
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8960
82
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8961
83
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8962
84
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8963
85
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8964
86
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8965
87
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8966
88
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8967
89
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8968
90
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8969
91
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8970
92
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8971
93
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8972
94
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8973
95
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8974
96
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8975
97
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8976
98
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8977
99
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8978
100
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8979
101
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8980
102
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8981
103
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8982
104
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8983
105
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8984
106
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8985
107
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8986
108
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8987
109
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8988
110
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8989
111
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8990
112
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8991
113
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8992
114
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8993
115
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8994
116
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8995
117
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8996
118
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8997
119
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8998
120
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8999
121
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/9000
122
+ herculane_DJI_0021_full/8880
123
+ herculane_DJI_0021_full/8881
124
+ herculane_DJI_0021_full/8882
125
+ herculane_DJI_0021_full/8883
126
+ herculane_DJI_0021_full/8884
127
+ herculane_DJI_0021_full/8885
128
+ herculane_DJI_0021_full/8886
129
+ herculane_DJI_0021_full/8887
130
+ herculane_DJI_0021_full/8888
131
+ herculane_DJI_0021_full/8889
132
+ herculane_DJI_0021_full/8890
133
+ herculane_DJI_0021_full/8891
134
+ herculane_DJI_0021_full/8892
135
+ herculane_DJI_0021_full/8893
136
+ herculane_DJI_0021_full/8894
137
+ herculane_DJI_0021_full/8895
138
+ herculane_DJI_0021_full/8896
139
+ herculane_DJI_0021_full/8897
140
+ herculane_DJI_0021_full/8898
141
+ herculane_DJI_0021_full/8899
142
+ herculane_DJI_0021_full/8900
143
+ herculane_DJI_0021_full/8901
144
+ herculane_DJI_0021_full/8902
145
+ herculane_DJI_0021_full/8903
146
+ herculane_DJI_0021_full/8904
147
+ herculane_DJI_0021_full/8905
148
+ herculane_DJI_0021_full/8906
149
+ herculane_DJI_0021_full/8907
150
+ herculane_DJI_0021_full/8908
151
+ herculane_DJI_0021_full/8909
152
+ herculane_DJI_0021_full/8910
153
+ herculane_DJI_0021_full/8911
154
+ herculane_DJI_0021_full/8912
155
+ herculane_DJI_0021_full/8913
156
+ herculane_DJI_0021_full/8914
157
+ herculane_DJI_0021_full/8915
158
+ herculane_DJI_0021_full/8916
159
+ herculane_DJI_0021_full/8917
160
+ herculane_DJI_0021_full/8918
161
+ herculane_DJI_0021_full/8919
162
+ herculane_DJI_0021_full/8920
163
+ herculane_DJI_0021_full/8921
164
+ herculane_DJI_0021_full/8922
165
+ herculane_DJI_0021_full/8923
166
+ herculane_DJI_0021_full/8924
167
+ herculane_DJI_0021_full/8925
168
+ herculane_DJI_0021_full/8926
169
+ herculane_DJI_0021_full/8927
170
+ herculane_DJI_0021_full/8928
171
+ herculane_DJI_0021_full/8929
172
+ herculane_DJI_0021_full/8930
173
+ herculane_DJI_0021_full/8931
174
+ herculane_DJI_0021_full/8932
175
+ herculane_DJI_0021_full/8933
176
+ herculane_DJI_0021_full/8934
177
+ herculane_DJI_0021_full/8935
178
+ herculane_DJI_0021_full/8936
179
+ herculane_DJI_0021_full/8937
180
+ herculane_DJI_0021_full/8938
181
+ herculane_DJI_0021_full/8939
182
+ herculane_DJI_0021_full/8940
183
+ herculane_DJI_0021_full/8941
184
+ herculane_DJI_0021_full/8942
185
+ herculane_DJI_0021_full/8943
186
+ herculane_DJI_0021_full/8944
187
+ herculane_DJI_0021_full/8945
188
+ herculane_DJI_0021_full/8946
189
+ herculane_DJI_0021_full/8947
190
+ herculane_DJI_0021_full/8948
191
+ herculane_DJI_0021_full/8949
192
+ herculane_DJI_0021_full/8950
193
+ herculane_DJI_0021_full/8951
194
+ herculane_DJI_0021_full/8952
195
+ herculane_DJI_0021_full/8953
196
+ herculane_DJI_0021_full/8954
197
+ herculane_DJI_0021_full/8955
198
+ herculane_DJI_0021_full/8956
199
+ herculane_DJI_0021_full/8957
200
+ herculane_DJI_0021_full/8958
201
+ herculane_DJI_0021_full/8959
202
+ herculane_DJI_0021_full/8960
203
+ herculane_DJI_0021_full/8961
204
+ herculane_DJI_0021_full/8962
205
+ herculane_DJI_0021_full/8963
206
+ herculane_DJI_0021_full/8964
207
+ herculane_DJI_0021_full/8965
208
+ herculane_DJI_0021_full/8966
209
+ herculane_DJI_0021_full/8967
210
+ herculane_DJI_0021_full/8968
211
+ herculane_DJI_0021_full/8969
212
+ herculane_DJI_0021_full/8970
213
+ herculane_DJI_0021_full/8971
214
+ herculane_DJI_0021_full/8972
215
+ herculane_DJI_0021_full/8973
216
+ herculane_DJI_0021_full/8974
217
+ herculane_DJI_0021_full/8975
218
+ herculane_DJI_0021_full/8976
219
+ herculane_DJI_0021_full/8977
220
+ herculane_DJI_0021_full/8978
221
+ herculane_DJI_0021_full/8979
222
+ herculane_DJI_0021_full/8980
223
+ herculane_DJI_0021_full/8981
224
+ herculane_DJI_0021_full/8982
225
+ herculane_DJI_0021_full/8983
226
+ herculane_DJI_0021_full/8984
227
+ herculane_DJI_0021_full/8985
228
+ herculane_DJI_0021_full/8986
229
+ herculane_DJI_0021_full/8987
230
+ herculane_DJI_0021_full/8988
231
+ herculane_DJI_0021_full/8989
232
+ herculane_DJI_0021_full/8990
233
+ herculane_DJI_0021_full/8991
234
+ herculane_DJI_0021_full/8992
235
+ herculane_DJI_0021_full/8993
236
+ herculane_DJI_0021_full/8994
237
+ herculane_DJI_0021_full/8995
238
+ herculane_DJI_0021_full/8996
239
+ herculane_DJI_0021_full/8997
240
+ herculane_DJI_0021_full/8998
241
+ herculane_DJI_0021_full/8999
242
+ herculane_DJI_0021_full/9000
243
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10680
244
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10681
245
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10682
246
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10683
247
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10684
248
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10685
249
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10686
250
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10687
251
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10688
252
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10689
253
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10690
254
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10691
255
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10692
256
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10693
257
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10694
258
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10695
259
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10696
260
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10697
261
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10698
262
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10699
263
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10700
264
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10701
265
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10702
266
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10703
267
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10704
268
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10705
269
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10706
270
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10707
271
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10708
272
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10709
273
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10710
274
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10711
275
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10712
276
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10713
277
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10714
278
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10715
279
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10716
280
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10717
281
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10718
282
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10719
283
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10720
284
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10721
285
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10722
286
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10723
287
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10724
288
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10725
289
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10726
290
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10727
291
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10728
292
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10729
293
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10730
294
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10731
295
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10732
296
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10733
297
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10734
298
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10735
299
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10736
300
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10737
301
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10738
302
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10739
303
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10740
304
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10741
305
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10742
306
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10743
307
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10744
308
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10745
309
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10746
310
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10747
311
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10748
312
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10749
313
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10750
314
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10751
315
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10752
316
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10753
317
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10754
318
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10755
319
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10756
320
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10757
321
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10758
322
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10759
323
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10760
324
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10761
325
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10762
326
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10763
327
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10764
328
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10765
329
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10766
330
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10767
331
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10768
332
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10769
333
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10770
334
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10771
335
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10772
336
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10773
337
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10774
338
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10775
339
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10776
340
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10777
341
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10778
342
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10779
343
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10780
344
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10781
345
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10782
346
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10783
347
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10784
348
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10785
349
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10786
350
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10787
351
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10788
352
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10789
353
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10790
354
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10791
355
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10792
356
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10793
357
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10794
358
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10795
359
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10796
360
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10797
361
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10798
362
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10799
363
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10800
364
+ olanesti_DJI_0416_full/8880
365
+ olanesti_DJI_0416_full/8881
366
+ olanesti_DJI_0416_full/8882
367
+ olanesti_DJI_0416_full/8883
368
+ olanesti_DJI_0416_full/8884
369
+ olanesti_DJI_0416_full/8885
370
+ olanesti_DJI_0416_full/8886
371
+ olanesti_DJI_0416_full/8887
372
+ olanesti_DJI_0416_full/8888
373
+ olanesti_DJI_0416_full/8889
374
+ olanesti_DJI_0416_full/8890
375
+ olanesti_DJI_0416_full/8891
376
+ olanesti_DJI_0416_full/8892
377
+ olanesti_DJI_0416_full/8893
378
+ olanesti_DJI_0416_full/8894
379
+ olanesti_DJI_0416_full/8895
380
+ olanesti_DJI_0416_full/8896
381
+ olanesti_DJI_0416_full/8897
382
+ olanesti_DJI_0416_full/8898
383
+ olanesti_DJI_0416_full/8899
384
+ olanesti_DJI_0416_full/8900
385
+ olanesti_DJI_0416_full/8901
386
+ olanesti_DJI_0416_full/8902
387
+ olanesti_DJI_0416_full/8903
388
+ olanesti_DJI_0416_full/8904
389
+ olanesti_DJI_0416_full/8905
390
+ olanesti_DJI_0416_full/8906
391
+ olanesti_DJI_0416_full/8907
392
+ olanesti_DJI_0416_full/8908
393
+ olanesti_DJI_0416_full/8909
394
+ olanesti_DJI_0416_full/8910
395
+ olanesti_DJI_0416_full/8911
396
+ olanesti_DJI_0416_full/8912
397
+ olanesti_DJI_0416_full/8913
398
+ olanesti_DJI_0416_full/8914
399
+ olanesti_DJI_0416_full/8915
400
+ olanesti_DJI_0416_full/8916
401
+ olanesti_DJI_0416_full/8917
402
+ olanesti_DJI_0416_full/8918
403
+ olanesti_DJI_0416_full/8919
404
+ olanesti_DJI_0416_full/8920
405
+ olanesti_DJI_0416_full/8921
406
+ olanesti_DJI_0416_full/8922
407
+ olanesti_DJI_0416_full/8923
408
+ olanesti_DJI_0416_full/8924
409
+ olanesti_DJI_0416_full/8925
410
+ olanesti_DJI_0416_full/8926
411
+ olanesti_DJI_0416_full/8927
412
+ olanesti_DJI_0416_full/8928
413
+ olanesti_DJI_0416_full/8929
414
+ olanesti_DJI_0416_full/8930
415
+ olanesti_DJI_0416_full/8931
416
+ olanesti_DJI_0416_full/8932
417
+ olanesti_DJI_0416_full/8933
418
+ olanesti_DJI_0416_full/8934
419
+ olanesti_DJI_0416_full/8935
420
+ olanesti_DJI_0416_full/8936
421
+ olanesti_DJI_0416_full/8937
422
+ olanesti_DJI_0416_full/8938
423
+ olanesti_DJI_0416_full/8939
424
+ olanesti_DJI_0416_full/8940
425
+ olanesti_DJI_0416_full/8941
426
+ olanesti_DJI_0416_full/8942
427
+ olanesti_DJI_0416_full/8943
428
+ olanesti_DJI_0416_full/8944
429
+ olanesti_DJI_0416_full/8945
430
+ olanesti_DJI_0416_full/8946
431
+ olanesti_DJI_0416_full/8947
432
+ olanesti_DJI_0416_full/8948
433
+ olanesti_DJI_0416_full/8949
434
+ olanesti_DJI_0416_full/8950
435
+ olanesti_DJI_0416_full/8951
436
+ olanesti_DJI_0416_full/8952
437
+ olanesti_DJI_0416_full/8953
438
+ olanesti_DJI_0416_full/8954
439
+ olanesti_DJI_0416_full/8955
440
+ olanesti_DJI_0416_full/8956
441
+ olanesti_DJI_0416_full/8957
442
+ olanesti_DJI_0416_full/8958
443
+ olanesti_DJI_0416_full/8959
444
+ olanesti_DJI_0416_full/8960
445
+ olanesti_DJI_0416_full/8961
446
+ olanesti_DJI_0416_full/8962
447
+ olanesti_DJI_0416_full/8963
448
+ olanesti_DJI_0416_full/8964
449
+ olanesti_DJI_0416_full/8965
450
+ olanesti_DJI_0416_full/8966
451
+ olanesti_DJI_0416_full/8967
452
+ olanesti_DJI_0416_full/8968
453
+ olanesti_DJI_0416_full/8969
454
+ olanesti_DJI_0416_full/8970
455
+ olanesti_DJI_0416_full/8971
456
+ olanesti_DJI_0416_full/8972
457
+ olanesti_DJI_0416_full/8973
458
+ olanesti_DJI_0416_full/8974
459
+ olanesti_DJI_0416_full/8975
460
+ olanesti_DJI_0416_full/8976
461
+ olanesti_DJI_0416_full/8977
462
+ olanesti_DJI_0416_full/8978
463
+ olanesti_DJI_0416_full/8979
464
+ olanesti_DJI_0416_full/8980
465
+ olanesti_DJI_0416_full/8981
466
+ olanesti_DJI_0416_full/8982
467
+ olanesti_DJI_0416_full/8983
468
+ olanesti_DJI_0416_full/8984
469
+ olanesti_DJI_0416_full/8985
470
+ olanesti_DJI_0416_full/8986
471
+ olanesti_DJI_0416_full/8987
472
+ olanesti_DJI_0416_full/8988
473
+ olanesti_DJI_0416_full/8989
474
+ olanesti_DJI_0416_full/8990
475
+ olanesti_DJI_0416_full/8991
476
+ olanesti_DJI_0416_full/8992
477
+ olanesti_DJI_0416_full/8993
478
+ olanesti_DJI_0416_full/8994
479
+ olanesti_DJI_0416_full/8995
480
+ olanesti_DJI_0416_full/8996
481
+ olanesti_DJI_0416_full/8997
482
+ olanesti_DJI_0416_full/8998
483
+ olanesti_DJI_0416_full/8999
484
+ olanesti_DJI_0416_full/9000
485
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8880
486
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8881
487
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8882
488
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8883
489
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8884
490
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8885
491
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8886
492
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8887
493
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8888
494
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8889
495
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8890
496
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8891
497
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8892
498
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8893
499
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8894
500
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8895
501
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8896
502
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8897
503
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8898
504
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8899
505
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8900
506
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8901
507
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8902
508
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8903
509
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8904
510
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8905
511
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8906
512
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8907
513
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8908
514
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8909
515
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8910
516
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8911
517
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8912
518
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8913
519
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8914
520
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8915
521
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8916
522
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8917
523
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8918
524
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8919
525
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8920
526
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8921
527
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8922
528
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8923
529
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8924
530
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8925
531
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8926
532
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8927
533
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8928
534
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8929
535
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8930
536
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8931
537
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8932
538
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8933
539
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8934
540
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8935
541
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8936
542
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8937
543
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8938
544
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8939
545
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8940
546
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8941
547
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8942
548
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8943
549
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8944
550
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8945
551
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8946
552
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8947
553
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8948
554
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8949
555
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8950
556
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8951
557
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8952
558
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8953
559
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8954
560
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8955
561
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8956
562
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8957
563
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8958
564
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8959
565
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8960
566
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8961
567
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8962
568
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8963
569
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8964
570
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8965
571
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8966
572
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8967
573
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8968
574
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8969
575
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8970
576
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8971
577
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8972
578
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8973
579
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8974
580
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8975
581
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8976
582
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8977
583
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8978
584
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8979
585
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8980
586
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8981
587
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8982
588
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8983
589
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8984
590
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8985
591
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8986
592
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8987
593
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8988
594
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8989
595
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8990
596
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8991
597
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8992
598
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8993
599
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8994
600
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8995
601
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8996
602
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8997
603
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8998
604
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8999
605
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/9000
txt_files/manually_annotated_files/semisup_files_207.txt ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ atanasie_DJI_0652_full/4560
2
+ atanasie_DJI_0652_full/4620
3
+ atanasie_DJI_0652_full/4680
4
+ atanasie_DJI_0652_full/4740
5
+ atanasie_DJI_0652_full/4800
6
+ atanasie_DJI_0652_full/4860
7
+ atanasie_DJI_0652_full/4920
8
+ atanasie_DJI_0652_full/4980
9
+ atanasie_DJI_0652_full/5040
10
+ atanasie_DJI_0652_full/5100
11
+ atanasie_DJI_0652_full/5160
12
+ atanasie_DJI_0652_full/5220
13
+ atanasie_DJI_0652_full/5280
14
+ atanasie_DJI_0652_full/5340
15
+ atanasie_DJI_0652_full/5400
16
+ atanasie_DJI_0652_full/5460
17
+ atanasie_DJI_0652_full/5520
18
+ atanasie_DJI_0652_full/5580
19
+ atanasie_DJI_0652_full/5640
20
+ atanasie_DJI_0652_full/5700
21
+ atanasie_DJI_0652_full/5760
22
+ atanasie_DJI_0652_full/5820
23
+ atanasie_DJI_0652_full/5880
24
+ atanasie_DJI_0652_full/5940
25
+ atanasie_DJI_0652_full/6000
26
+ atanasie_DJI_0652_full/6060
27
+ atanasie_DJI_0652_full/6120
28
+ atanasie_DJI_0652_full/6180
29
+ atanasie_DJI_0652_full/6240
30
+ atanasie_DJI_0652_full/6300
31
+ atanasie_DJI_0652_full/6360
32
+ atanasie_DJI_0652_full/6420
33
+ atanasie_DJI_0652_full/6480
34
+ atanasie_DJI_0652_full/6540
35
+ atanasie_DJI_0652_full/6600
36
+ atanasie_DJI_0652_full/6660
37
+ atanasie_DJI_0652_full/6720
38
+ atanasie_DJI_0652_full/6780
39
+ atanasie_DJI_0652_full/6840
40
+ atanasie_DJI_0652_full/6900
41
+ atanasie_DJI_0652_full/6960
42
+ atanasie_DJI_0652_full/7020
43
+ atanasie_DJI_0652_full/7080
44
+ atanasie_DJI_0652_full/7140
45
+ atanasie_DJI_0652_full/7200
46
+ atanasie_DJI_0652_full/7260
47
+ atanasie_DJI_0652_full/7320
48
+ atanasie_DJI_0652_full/7380
49
+ atanasie_DJI_0652_full/7440
50
+ atanasie_DJI_0652_full/7500
51
+ atanasie_DJI_0652_full/7560
52
+ atanasie_DJI_0652_full/7620
53
+ atanasie_DJI_0652_full/7680
54
+ atanasie_DJI_0652_full/7740
55
+ atanasie_DJI_0652_full/7800
56
+ atanasie_DJI_0652_full/7860
57
+ atanasie_DJI_0652_full/7920
58
+ atanasie_DJI_0652_full/7980
59
+ atanasie_DJI_0652_full/8040
60
+ atanasie_DJI_0652_full/8100
61
+ atanasie_DJI_0652_full/8160
62
+ atanasie_DJI_0652_full/8220
63
+ atanasie_DJI_0652_full/8280
64
+ atanasie_DJI_0652_full/8340
65
+ atanasie_DJI_0652_full/8400
66
+ atanasie_DJI_0652_full/8460
67
+ atanasie_DJI_0652_full/8520
68
+ atanasie_DJI_0652_full/8580
69
+ atanasie_DJI_0652_full/8640
70
+ atanasie_DJI_0652_full/8700
71
+ atanasie_DJI_0652_full/8760
72
+ atanasie_DJI_0652_full/8820
73
+ atanasie_DJI_0652_full/8880
74
+ atanasie_DJI_0652_full/8940
75
+ atanasie_DJI_0652_full/9000
76
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/1680
77
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/1740
78
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/1800
79
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/3480
80
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/3540
81
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/3600
82
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/5280
83
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/5340
84
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/5400
85
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/7080
86
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/7140
87
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/7200
88
+ herculane_DJI_0021_full/3480
89
+ herculane_DJI_0021_full/3540
90
+ herculane_DJI_0021_full/3600
91
+ herculane_DJI_0021_full/5280
92
+ herculane_DJI_0021_full/5340
93
+ herculane_DJI_0021_full/5400
94
+ herculane_DJI_0021_full/7080
95
+ herculane_DJI_0021_full/7140
96
+ herculane_DJI_0021_full/7200
97
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/1680
98
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/1740
99
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/1800
100
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/3480
101
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/3540
102
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/3600
103
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/5280
104
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/5340
105
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/5400
106
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/7080
107
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/7140
108
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/7200
109
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/8880
110
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/8940
111
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/9000
112
+ olanesti_DJI_0416_full/1680
113
+ olanesti_DJI_0416_full/1740
114
+ olanesti_DJI_0416_full/1800
115
+ olanesti_DJI_0416_full/3480
116
+ olanesti_DJI_0416_full/3540
117
+ olanesti_DJI_0416_full/3600
118
+ olanesti_DJI_0416_full/5280
119
+ olanesti_DJI_0416_full/5340
120
+ olanesti_DJI_0416_full/5400
121
+ olanesti_DJI_0416_full/7080
122
+ olanesti_DJI_0416_full/7140
123
+ olanesti_DJI_0416_full/7200
124
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/1680
125
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/1740
126
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/1800
127
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/3480
128
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/3540
129
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/3600
130
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/5280
131
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/5340
132
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/5400
133
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4560
134
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4620
135
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4680
136
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4740
137
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4800
138
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4860
139
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4920
140
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4980
141
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5040
142
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5100
143
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5160
144
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5220
145
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5280
146
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5340
147
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5400
148
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5460
149
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5520
150
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5580
151
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5640
152
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5700
153
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5760
154
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5820
155
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5880
156
+ slanic_DJI_0956_0957_combined_sliced_780_9780/5940
157
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6000
158
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6060
159
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6120
160
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6180
161
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6240
162
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6300
163
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6360
164
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6420
165
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6480
166
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6540
167
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6600
168
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6660
169
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6720
170
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6780
171
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6840
172
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6900
173
+ slanic_DJI_0956_0957_combined_sliced_780_9780/6960
174
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7020
175
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7080
176
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7140
177
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7200
178
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7260
179
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7320
180
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7380
181
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7440
182
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7500
183
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7560
184
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7620
185
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7680
186
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7740
187
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7800
188
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7860
189
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7920
190
+ slanic_DJI_0956_0957_combined_sliced_780_9780/7980
191
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8040
192
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8100
193
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8160
194
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8220
195
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8280
196
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8340
197
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8400
198
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8460
199
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8520
200
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8580
201
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8640
202
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8700
203
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8760
204
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8820
205
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8880
206
+ slanic_DJI_0956_0957_combined_sliced_780_9780/8940
207
+ slanic_DJI_0956_0957_combined_sliced_780_9780/9000
txt_files/manually_annotated_files/test_files_116.txt ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/780
2
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/840
3
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/900
4
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/1680
5
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/1740
6
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/1800
7
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/2580
8
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/2640
9
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/2700
10
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/3480
11
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/3540
12
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/3600
13
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/4380
14
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/4440
15
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/4500
16
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/5280
17
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/5340
18
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/5400
19
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/6180
20
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/6240
21
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/6300
22
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/7980
23
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/8040
24
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/8100
25
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/8880
26
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/8940
27
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/9000
28
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/9780
29
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/9840
30
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/9900
31
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/10680
32
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/10740
33
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/10800
34
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/11580
35
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/11640
36
+ barsana_DJI_0500_0501_combined_sliced_2700_14700/11700
37
+ comana_DJI_0881_full/780
38
+ comana_DJI_0881_full/840
39
+ comana_DJI_0881_full/900
40
+ comana_DJI_0881_full/1680
41
+ comana_DJI_0881_full/1740
42
+ comana_DJI_0881_full/1800
43
+ comana_DJI_0881_full/2580
44
+ comana_DJI_0881_full/2640
45
+ comana_DJI_0881_full/2700
46
+ comana_DJI_0881_full/3480
47
+ comana_DJI_0881_full/3540
48
+ comana_DJI_0881_full/3600
49
+ comana_DJI_0881_full/4380
50
+ comana_DJI_0881_full/4440
51
+ comana_DJI_0881_full/4500
52
+ comana_DJI_0881_full/5280
53
+ comana_DJI_0881_full/5340
54
+ comana_DJI_0881_full/5400
55
+ comana_DJI_0881_full/6180
56
+ comana_DJI_0881_full/6240
57
+ comana_DJI_0881_full/6300
58
+ comana_DJI_0881_full/7080
59
+ comana_DJI_0881_full/7140
60
+ comana_DJI_0881_full/7200
61
+ comana_DJI_0881_full/7980
62
+ comana_DJI_0881_full/8040
63
+ comana_DJI_0881_full/8100
64
+ comana_DJI_0881_full/8880
65
+ comana_DJI_0881_full/8940
66
+ comana_DJI_0881_full/9000
67
+ norway_210821_DJI_0015_full/0
68
+ norway_210821_DJI_0015_full/60
69
+ norway_210821_DJI_0015_full/120
70
+ norway_210821_DJI_0015_full/180
71
+ norway_210821_DJI_0015_full/240
72
+ norway_210821_DJI_0015_full/300
73
+ norway_210821_DJI_0015_full/360
74
+ norway_210821_DJI_0015_full/420
75
+ norway_210821_DJI_0015_full/480
76
+ norway_210821_DJI_0015_full/540
77
+ norway_210821_DJI_0015_full/600
78
+ norway_210821_DJI_0015_full/660
79
+ norway_210821_DJI_0015_full/720
80
+ norway_210821_DJI_0015_full/780
81
+ norway_210821_DJI_0015_full/840
82
+ norway_210821_DJI_0015_full/900
83
+ norway_210821_DJI_0015_full/960
84
+ norway_210821_DJI_0015_full/1020
85
+ norway_210821_DJI_0015_full/1080
86
+ norway_210821_DJI_0015_full/1140
87
+ norway_210821_DJI_0015_full/1200
88
+ norway_210821_DJI_0015_full/1260
89
+ norway_210821_DJI_0015_full/1320
90
+ norway_210821_DJI_0015_full/1380
91
+ norway_210821_DJI_0015_full/1440
92
+ norway_210821_DJI_0015_full/1500
93
+ norway_210821_DJI_0015_full/1560
94
+ norway_210821_DJI_0015_full/1620
95
+ norway_210821_DJI_0015_full/1680
96
+ norway_210821_DJI_0015_full/1740
97
+ norway_210821_DJI_0015_full/1800
98
+ norway_210821_DJI_0015_full/1860
99
+ norway_210821_DJI_0015_full/1920
100
+ norway_210821_DJI_0015_full/1980
101
+ norway_210821_DJI_0015_full/2040
102
+ norway_210821_DJI_0015_full/2100
103
+ norway_210821_DJI_0015_full/2160
104
+ norway_210821_DJI_0015_full/2220
105
+ norway_210821_DJI_0015_full/2280
106
+ norway_210821_DJI_0015_full/2340
107
+ norway_210821_DJI_0015_full/2400
108
+ norway_210821_DJI_0015_full/2460
109
+ norway_210821_DJI_0015_full/2520
110
+ norway_210821_DJI_0015_full/2580
111
+ norway_210821_DJI_0015_full/2640
112
+ norway_210821_DJI_0015_full/2700
113
+ norway_210821_DJI_0015_full/2760
114
+ norway_210821_DJI_0015_full/2820
115
+ norway_210821_DJI_0015_full/2880
116
+ norway_210821_DJI_0015_full/2940
txt_files/manually_annotated_files/train_files_218.txt ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ atanasie_DJI_0652_full/0
2
+ atanasie_DJI_0652_full/60
3
+ atanasie_DJI_0652_full/120
4
+ atanasie_DJI_0652_full/180
5
+ atanasie_DJI_0652_full/240
6
+ atanasie_DJI_0652_full/300
7
+ atanasie_DJI_0652_full/360
8
+ atanasie_DJI_0652_full/420
9
+ atanasie_DJI_0652_full/480
10
+ atanasie_DJI_0652_full/540
11
+ atanasie_DJI_0652_full/600
12
+ atanasie_DJI_0652_full/660
13
+ atanasie_DJI_0652_full/720
14
+ atanasie_DJI_0652_full/780
15
+ atanasie_DJI_0652_full/840
16
+ atanasie_DJI_0652_full/900
17
+ atanasie_DJI_0652_full/960
18
+ atanasie_DJI_0652_full/1020
19
+ atanasie_DJI_0652_full/1080
20
+ atanasie_DJI_0652_full/1140
21
+ atanasie_DJI_0652_full/1200
22
+ atanasie_DJI_0652_full/1260
23
+ atanasie_DJI_0652_full/1320
24
+ atanasie_DJI_0652_full/1380
25
+ atanasie_DJI_0652_full/1440
26
+ atanasie_DJI_0652_full/1500
27
+ atanasie_DJI_0652_full/1560
28
+ atanasie_DJI_0652_full/1620
29
+ atanasie_DJI_0652_full/1680
30
+ atanasie_DJI_0652_full/1740
31
+ atanasie_DJI_0652_full/1800
32
+ atanasie_DJI_0652_full/1860
33
+ atanasie_DJI_0652_full/1920
34
+ atanasie_DJI_0652_full/1980
35
+ atanasie_DJI_0652_full/2040
36
+ atanasie_DJI_0652_full/2100
37
+ atanasie_DJI_0652_full/2160
38
+ atanasie_DJI_0652_full/2220
39
+ atanasie_DJI_0652_full/2280
40
+ atanasie_DJI_0652_full/2340
41
+ atanasie_DJI_0652_full/2400
42
+ atanasie_DJI_0652_full/2460
43
+ atanasie_DJI_0652_full/2520
44
+ atanasie_DJI_0652_full/2580
45
+ atanasie_DJI_0652_full/2640
46
+ atanasie_DJI_0652_full/2700
47
+ atanasie_DJI_0652_full/2760
48
+ atanasie_DJI_0652_full/2820
49
+ atanasie_DJI_0652_full/2880
50
+ atanasie_DJI_0652_full/2940
51
+ atanasie_DJI_0652_full/3000
52
+ atanasie_DJI_0652_full/3060
53
+ atanasie_DJI_0652_full/3120
54
+ atanasie_DJI_0652_full/3180
55
+ atanasie_DJI_0652_full/3240
56
+ atanasie_DJI_0652_full/3300
57
+ atanasie_DJI_0652_full/3360
58
+ atanasie_DJI_0652_full/3420
59
+ atanasie_DJI_0652_full/3480
60
+ atanasie_DJI_0652_full/3540
61
+ atanasie_DJI_0652_full/3600
62
+ atanasie_DJI_0652_full/3660
63
+ atanasie_DJI_0652_full/3720
64
+ atanasie_DJI_0652_full/3780
65
+ atanasie_DJI_0652_full/3840
66
+ atanasie_DJI_0652_full/3900
67
+ atanasie_DJI_0652_full/3960
68
+ atanasie_DJI_0652_full/4020
69
+ atanasie_DJI_0652_full/4080
70
+ atanasie_DJI_0652_full/4140
71
+ atanasie_DJI_0652_full/4200
72
+ atanasie_DJI_0652_full/4260
73
+ atanasie_DJI_0652_full/4320
74
+ atanasie_DJI_0652_full/4380
75
+ atanasie_DJI_0652_full/4440
76
+ atanasie_DJI_0652_full/4500
77
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/780
78
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/840
79
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/900
80
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/2580
81
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/2640
82
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/2700
83
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/4380
84
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/4440
85
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/4500
86
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/6180
87
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/6240
88
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/6300
89
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/7980
90
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8040
91
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8100
92
+ herculane_DJI_0021_full/2580
93
+ herculane_DJI_0021_full/2640
94
+ herculane_DJI_0021_full/2700
95
+ herculane_DJI_0021_full/6180
96
+ herculane_DJI_0021_full/6240
97
+ herculane_DJI_0021_full/6300
98
+ herculane_DJI_0021_full/7980
99
+ herculane_DJI_0021_full/8040
100
+ herculane_DJI_0021_full/8100
101
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/780
102
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/840
103
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/900
104
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/2580
105
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/2640
106
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/2700
107
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/4380
108
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/4440
109
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/4500
110
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/6180
111
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/6240
112
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/6300
113
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/7980
114
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/8040
115
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/8100
116
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/9780
117
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/9840
118
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/9900
119
+ olanesti_DJI_0416_full/780
120
+ olanesti_DJI_0416_full/840
121
+ olanesti_DJI_0416_full/900
122
+ olanesti_DJI_0416_full/2580
123
+ olanesti_DJI_0416_full/2640
124
+ olanesti_DJI_0416_full/2700
125
+ olanesti_DJI_0416_full/4380
126
+ olanesti_DJI_0416_full/4440
127
+ olanesti_DJI_0416_full/4500
128
+ olanesti_DJI_0416_full/6180
129
+ olanesti_DJI_0416_full/6240
130
+ olanesti_DJI_0416_full/6300
131
+ olanesti_DJI_0416_full/7980
132
+ olanesti_DJI_0416_full/8040
133
+ olanesti_DJI_0416_full/8100
134
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/4380
135
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/4440
136
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/4500
137
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/6180
138
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/6240
139
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/6300
140
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/7980
141
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8040
142
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8100
143
+ slanic_DJI_0956_0957_combined_sliced_780_9780/0
144
+ slanic_DJI_0956_0957_combined_sliced_780_9780/60
145
+ slanic_DJI_0956_0957_combined_sliced_780_9780/120
146
+ slanic_DJI_0956_0957_combined_sliced_780_9780/180
147
+ slanic_DJI_0956_0957_combined_sliced_780_9780/240
148
+ slanic_DJI_0956_0957_combined_sliced_780_9780/300
149
+ slanic_DJI_0956_0957_combined_sliced_780_9780/360
150
+ slanic_DJI_0956_0957_combined_sliced_780_9780/420
151
+ slanic_DJI_0956_0957_combined_sliced_780_9780/480
152
+ slanic_DJI_0956_0957_combined_sliced_780_9780/540
153
+ slanic_DJI_0956_0957_combined_sliced_780_9780/600
154
+ slanic_DJI_0956_0957_combined_sliced_780_9780/660
155
+ slanic_DJI_0956_0957_combined_sliced_780_9780/720
156
+ slanic_DJI_0956_0957_combined_sliced_780_9780/780
157
+ slanic_DJI_0956_0957_combined_sliced_780_9780/840
158
+ slanic_DJI_0956_0957_combined_sliced_780_9780/900
159
+ slanic_DJI_0956_0957_combined_sliced_780_9780/960
160
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1020
161
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1080
162
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1140
163
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1200
164
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1260
165
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1320
166
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1380
167
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1440
168
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1500
169
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1560
170
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1620
171
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1680
172
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1740
173
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1800
174
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1860
175
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1920
176
+ slanic_DJI_0956_0957_combined_sliced_780_9780/1980
177
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2040
178
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2100
179
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2160
180
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2220
181
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2280
182
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2340
183
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2400
184
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2460
185
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2520
186
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2580
187
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2640
188
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2700
189
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2760
190
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2820
191
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2880
192
+ slanic_DJI_0956_0957_combined_sliced_780_9780/2940
193
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3000
194
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3060
195
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3120
196
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3180
197
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3240
198
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3300
199
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3360
200
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3420
201
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3480
202
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3540
203
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3600
204
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3660
205
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3720
206
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3780
207
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3840
208
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3900
209
+ slanic_DJI_0956_0957_combined_sliced_780_9780/3960
210
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4020
211
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4080
212
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4140
213
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4200
214
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4260
215
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4320
216
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4380
217
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4440
218
+ slanic_DJI_0956_0957_combined_sliced_780_9780/4500
txt_files/manually_annotated_files/val_files_15.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8880
2
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/8940
3
+ gradistei_DJI_0787_0788_0789_combined_sliced_3510_13110/9000
4
+ herculane_DJI_0021_full/8880
5
+ herculane_DJI_0021_full/8940
6
+ herculane_DJI_0021_full/9000
7
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10680
8
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10740
9
+ jupiter_DJI_0703_0704_0705_combined_sliced_10650_21715/10800
10
+ olanesti_DJI_0416_full/8880
11
+ olanesti_DJI_0416_full/8940
12
+ olanesti_DJI_0416_full/9000
13
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8880
14
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/8940
15
+ petrova_DJI_0525_0526_combined_sliced_2850_11850/9000