Meehai commited on
Commit
a3c6a05
β€’
1 Parent(s): d079c18

various little updates

Browse files
.gitignore CHANGED
@@ -11,4 +11,5 @@ exception.txt
11
  __pycache__
12
  error.txt
13
  sanity_check.py
 
14
 
 
11
  __pycache__
12
  error.txt
13
  sanity_check.py
14
+ commands.txt
15
 
README.md CHANGED
@@ -8,7 +8,12 @@ As introduced in our ICCV 2023 workshop paper: [link](https://openaccess.thecvf.
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>
@@ -36,16 +41,16 @@ We use the [video-representations-extractor](https://gitlab.com/meehai/video-rep
36
  the rest of the labels using pre-traing networks or algoritms.
37
 
38
  ```
39
- 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"
40
- 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"
41
- 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"
42
- 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"
43
- 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"
44
- 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"
45
- 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"
46
- 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"
47
- 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"
48
- 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"
49
  ```
50
 
51
  ### 1.2.4 Convert Mask2Former from Mapillary classes to segprop8 classes
@@ -54,7 +59,7 @@ TODO
54
 
55
  ### 1.2.5 Check counts for consistency
56
 
57
- Run: `bash count_npz.sh raw_data/npz_540p`. At this point it should return:
58
  | scene | rgb | depth_dpt | depth_sfm_manual20.. | edges_dexined | normals_sfm_manual.. | opticalflow_rife | semantic_mask2form.. | semantic_segprop8 |
59
  |:----------|------:|------------:|-----------------------:|----------------:|-----------------------:|-------------------:|-----------------------:|--------------------:|
60
  | atanasie | 9021 | 9021 | 9020 | 9021 | 9020 | 9021 | 9021 | 9001 |
@@ -77,14 +82,14 @@ annotated semantic files. We include all representations from above, not just se
77
  Adding new representations is as simple as running VRE on the 540p mp4 file
78
 
79
  ```
80
- ./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
81
- ./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
82
- ./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
83
- ./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
84
- ./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
85
- ./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
86
- ./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
87
- ./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
88
  ```
89
 
90
  Note: `add --copy_files` if you want to make copies instead of using symlinks.
@@ -137,7 +142,7 @@ The data is in `data/*` (see the `ls` call above, it should match even if you do
137
  ## 2.1 Using the provided viewer
138
  Basic usage:
139
  ```
140
- ./dronescapes_viewer.py data/test_set_annotated_only/ # or any of the 8 directories
141
  ```
142
 
143
  <details>
 
8
 
9
  ## Option 1. Download the pre-processed dataset from HuggingFace repository
10
 
11
+ ```
12
+ git lfs install # Make sure you have git-lfs installed (https://git-lfs.com)
13
+ git clone https://huggingface.co/datasets/Meehai/dronescapes
14
+ ```
15
+
16
+ Note: the dataset has about 300GB, so it may take a while to clone it.
17
 
18
  <details>
19
  <summary> <b> Option 2. Generating the dataset from raw videos and basic labels </b>.</summary>
 
41
  the rest of the labels using pre-traing networks or algoritms.
42
 
43
  ```
44
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
45
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
46
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
47
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
48
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
49
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
50
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
51
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
52
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
53
+ 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 scripts/cfg.yaml --batch_size 3 --n_threads_data_storer 4 --output_dir_exist_mode overwrite --representations rgb "opticalflow_rife" "depth_dpt" "edges_dexined" "semantic_mask2former_swin_mapillary"
54
  ```
55
 
56
  ### 1.2.4 Convert Mask2Former from Mapillary classes to segprop8 classes
 
59
 
60
  ### 1.2.5 Check counts for consistency
61
 
62
+ Run: `bash scripts/count_npz.sh raw_data/npz_540p`. At this point it should return:
63
  | scene | rgb | depth_dpt | depth_sfm_manual20.. | edges_dexined | normals_sfm_manual.. | opticalflow_rife | semantic_mask2form.. | semantic_segprop8 |
64
  |:----------|------:|------------:|-----------------------:|----------------:|-----------------------:|-------------------:|-----------------------:|--------------------:|
65
  | atanasie | 9021 | 9021 | 9020 | 9021 | 9020 | 9021 | 9021 | 9001 |
 
82
  Adding new representations is as simple as running VRE on the 540p mp4 file
83
 
84
  ```
85
+ python scripts/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
86
+ python scripts/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
87
+ python scripts/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
88
+ python scripts/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
89
+ python scripts/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
90
+ python scripts/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
91
+ python scripts/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
92
+ python scripts/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
93
  ```
94
 
95
  Note: `add --copy_files` if you want to make copies instead of using symlinks.
 
142
  ## 2.1 Using the provided viewer
143
  Basic usage:
144
  ```
145
+ python scripts/dronescapes_viewer.py data/test_set_annotated_only/ # or any of the 8 directories in data/
146
  ```
147
 
148
  <details>
commands.txt DELETED
@@ -1,63 +0,0 @@
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
{txt_files β†’ raw_data/txt_files}/annotated_and_segprop/semisup_files_11299.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/annotated_and_segprop/test_files_5603.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/annotated_and_segprop/train_files_11664.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/annotated_and_segprop/val_files_605.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/manually_annotated_files/semisup_files_207.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/manually_annotated_files/test_files_116.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/manually_annotated_files/train_files_218.txt RENAMED
File without changes
{txt_files β†’ raw_data/txt_files}/manually_annotated_files/val_files_15.txt RENAMED
File without changes
cfg.yaml β†’ scripts/cfg.yaml RENAMED
File without changes
count_npz.sh β†’ scripts/count_npz.sh RENAMED
File without changes
dronescapes_viewer.ipynb β†’ scripts/dronescapes_viewer.ipynb RENAMED
File without changes
dronescapes_viewer.py β†’ scripts/dronescapes_viewer.py RENAMED
File without changes
symlinks_from_txt_list.py β†’ scripts/symlinks_from_txt_list.py RENAMED
File without changes