Datasets:

License:
csaybar commited on
Commit
e7cc0c9
1 Parent(s): 0a2727f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -18,6 +18,30 @@ images to match the characteristics of Sentinel-2 imagery (S2like). Subsequently
18
  a synthetic dataset comprising 17,657 NAIP and S2like image pairs. With the SEN2NAIP dataset, we aim to provide a valuable resource that facilitates
19
  the exploration of new techniques for enhancing the spatial resolution of Sentinel-2 satellite imagery.
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  ## Load cross-sensor dataset
23
 
@@ -100,3 +124,7 @@ plt.show()
100
  <center>
101
  <img src="demo/image_demo.png" width=75%>
102
  </center>
 
 
 
 
 
18
  a synthetic dataset comprising 17,657 NAIP and S2like image pairs. With the SEN2NAIP dataset, we aim to provide a valuable resource that facilitates
19
  the exploration of new techniques for enhancing the spatial resolution of Sentinel-2 satellite imagery.
20
 
21
+ # DOWNLOAD DATASET
22
+
23
+ ```
24
+ from huggingface_hub import hf_hub_download
25
+
26
+ # Donwload cross-sensor dataset
27
+ hf_hub_download(
28
+ repo_id="isp-uv-es/SEN2NAIP",
29
+ repo_type="dataset",
30
+ filename="cross-sensor/cross-sensor.zip"
31
+ )
32
+
33
+ # Donwload synthetic dataset
34
+ for i in range(1, 19):
35
+ hf_hub_download(
36
+ repo_id="isp-uv-es/SEN2NAIP",
37
+ repo_type="dataset",
38
+ filename="synthetic/synthetic_%02d.zip" % i
39
+ )
40
+ ```
41
+
42
+
43
+
44
+ # REPRODUCIBLE EXAMPLES
45
 
46
  ## Load cross-sensor dataset
47
 
 
124
  <center>
125
  <img src="demo/image_demo.png" width=75%>
126
  </center>
127
+
128
+ # CITATION
129
+
130
+ TODO!