sebasmos commited on
Commit
f4a9519
1 Parent(s): 8f0da84

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -4,6 +4,8 @@ license: mit
4
 
5
  # Creating Cloud-Cloudless Paired Dataset
6
 
 
 
7
  To generate the Cloud-Cloudless Paired Dataset, we utilize an existing dataset that encompasses imagery from five municipalities in Colombia. This dataset is structured with each municipality containing 165 images, acquired through the satellite_extractor API and based on SentinelHub, spanning across 12 different channels. Within each municipality, we have meticulously identified the optimal cloudless image and stored the corresponding names in a dictionary called `cloudless_groundtruths`.
8
 
9
  The primary objective is to subtract this specific cloudless image from the set of 165 images, resulting in 164 images per municipality. Subsequently, each of these 164 images will be paired with the previously identified cloudless image. Consequently, this process creates a total of `164 * 2 * NUM_MUNICIPALITIES`, yielding 1640 images or 820 image pairs in total.
@@ -15,3 +17,6 @@ Originally, the images were formatted as `image_DD%%MM%%YY`. As part of the data
15
  Upon initialization, the class requires the path to the source dataset, which contains raw images for each municipality organized in N folders, and the final path where the new dataset will be stored.
16
 
17
  The implementation includes thorough testing to verify the number of images, ensuring that the final count aligns with the total number of images encountered in the source folder path. Additionally, one of the functions within this class ensures the existence of each folder in the specified destination path, guaranteeing a well-organized and comprehensive Cloud-Cloudless Paired Dataset.
 
 
 
 
4
 
5
  # Creating Cloud-Cloudless Paired Dataset
6
 
7
+
8
+
9
  To generate the Cloud-Cloudless Paired Dataset, we utilize an existing dataset that encompasses imagery from five municipalities in Colombia. This dataset is structured with each municipality containing 165 images, acquired through the satellite_extractor API and based on SentinelHub, spanning across 12 different channels. Within each municipality, we have meticulously identified the optimal cloudless image and stored the corresponding names in a dictionary called `cloudless_groundtruths`.
10
 
11
  The primary objective is to subtract this specific cloudless image from the set of 165 images, resulting in 164 images per municipality. Subsequently, each of these 164 images will be paired with the previously identified cloudless image. Consequently, this process creates a total of `164 * 2 * NUM_MUNICIPALITIES`, yielding 1640 images or 820 image pairs in total.
 
17
  Upon initialization, the class requires the path to the source dataset, which contains raw images for each municipality organized in N folders, and the final path where the new dataset will be stored.
18
 
19
  The implementation includes thorough testing to verify the number of images, ensuring that the final count aligns with the total number of images encountered in the source folder path. Additionally, one of the functions within this class ensures the existence of each folder in the specified destination path, guaranteeing a well-organized and comprehensive Cloud-Cloudless Paired Dataset.
20
+
21
+
22
+ Github code [here](https://github.com/sebasmos/satellite.extractor/blob/main/notebooks/create_Cloud2CloudlesDataset.ipynb):