kecao commited on
Commit
62d3993
·
verified ·
1 Parent(s): 539f7cc

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. README.md +25 -96
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  pretty_name: PanScale
3
- license: other
4
  task_categories:
5
  - image-to-image
6
  tags:
@@ -12,23 +12,21 @@ size_categories:
12
  - 1K<n<10K
13
  ---
14
 
15
- # PanScale Dataset
16
 
17
  ## Dataset Summary
18
 
19
- PanScale is a remote sensing pansharpening dataset organized as paired multispectral (`ms`) and panchromatic (`pan`) TIFF images.
20
 
21
- - Total paired samples: **7,559**
22
- - Total size on disk: **~6.9 GB**
23
- - Pairing rule: files are matched by identical filename in `ms/` and `pan/` (for example, `123.tif` with `123.tif`)
24
- - Data type (checked from files): **8-bit TIFF**, with `ms` as **4-channel** and `pan` as **1-channel**
25
-
26
- This release contains standard train/test subsets and full-resolution cross-scale test subsets.
27
 
28
  ## Supported Tasks
29
 
30
  - Pansharpening (PAN + MS fusion)
31
- - Cross-scale generalization evaluation for pansharpening methods
32
 
33
  ## Dataset Structure
34
 
@@ -68,101 +66,36 @@ PanScale/
68
  test2000/{ms,pan}
69
  ```
70
 
71
- ## Split Statistics
72
-
73
- ### Standard subsets (same spatial size for `ms` and `pan`)
74
-
75
- | Sensor | Split | # Pairs | MS size | PAN size |
76
- |---|---:|---:|---:|---:|
77
- | jilin | train200 | 1055 | 200x200 | 200x200 |
78
- | jilin | test200 | 34 | 200x200 | 200x200 |
79
- | jilin | test400 | 34 | 400x400 | 400x400 |
80
- | jilin | test800 | 34 | 800x800 | 800x800 |
81
- | landsat | train256 | 2484 | 256x256 | 256x256 |
82
- | landsat | test200 | 96 | 200x200 | 200x200 |
83
- | landsat | test400 | 96 | 400x400 | 400x400 |
84
- | landsat | test800 | 96 | 800x800 | 800x800 |
85
- | landsat | test1600 | 96 | 1600x1600 | 1600x1600 |
86
- | skysat | train200 | 2370 | 200x200 | 200x200 |
87
- | skysat | test200 | 88 | 200x200 | 200x200 |
88
- | skysat | test400 | 88 | 400x400 | 400x400 |
89
- | skysat | test800 | 88 | 800x800 | 800x800 |
90
- | skysat | test1600 | 88 | 1600x1600 | 1600x1600 |
91
-
92
- ### Full-resolution cross-scale subsets (`f*`)
93
-
94
- | Sensor | Split | # Pairs | MS size | PAN size | PAN/MS scale |
95
- |---|---:|---:|---:|---:|---:|
96
- | fjilin | test800 | 121 | 200x200 | 800x800 | 4.0 |
97
- | fjilin | test1200 | 121 | 300x300 | 1200x1200 | 4.0 |
98
- | fjilin | test1600 | 121 | 400x400 | 1600x1600 | 4.0 |
99
- | fjilin | test2000 | 121 | 500x500 | 2000x2000 | 4.0 |
100
- | flandsat | test800 | 48 | 400x400 | 800x800 | 2.0 |
101
- | flandsat | test1200 | 48 | 600x600 | 1200x1200 | 2.0 |
102
- | flandsat | test1600 | 48 | 800x800 | 1600x1600 | 2.0 |
103
- | flandsat | test2000 | 48 | 1000x1000 | 2000x2000 | 2.0 |
104
- | fskysat | test800 | 34 | 320x320 | 800x800 | 2.5 |
105
- | fskysat | test1200 | 34 | 480x480 | 1200x1200 | 2.5 |
106
- | fskysat | test1600 | 34 | 640x640 | 1600x1600 | 2.5 |
107
- | fskysat | test2000 | 34 | 800x800 | 2000x2000 | 2.5 |
108
-
109
- ## Data Fields
110
-
111
- Each sample consists of:
112
-
113
- - `pan`: panchromatic image (`.tif`, 1 channel)
114
- - `ms`: multispectral image (`.tif`, 4 channels)
115
- - `id`: numeric filename stem (for example, `1`, `2`, ...)
116
 
117
- ## Example Loading (Python)
118
-
119
- ```python
120
- from pathlib import Path
121
-
122
- root = Path("PanScale/jilin/train200")
123
- ms_dir = root / "ms"
124
- pan_dir = root / "pan"
125
-
126
- for ms_path in sorted(ms_dir.glob("*.tif")):
127
- pan_path = pan_dir / ms_path.name
128
- if not pan_path.exists():
129
- continue
130
- # Use your TIFF reader here (e.g., tifffile, rasterio, PIL)
131
- # ms = read_tiff(ms_path)
132
- # pan = read_tiff(pan_path)
133
- ```
134
 
135
- ## Recommended Hugging Face Upload Layout
136
 
137
- Upload the `PanScale/` directory directly so users can keep the current sensor/split organization:
 
 
138
 
139
- ```text
140
- dataset-repo/
141
- README.md
142
- PanScale/
143
- ...
144
- ```
145
 
146
  ## Intended Use
147
 
148
- This dataset is intended for research and benchmarking in:
149
-
150
- - pansharpening model training and evaluation
151
- - cross-scale robustness analysis
152
- - comparison of remote sensing fusion methods across sensors
153
-
154
- ## Limitations
155
-
156
- - The dataset card currently omits full acquisition/annotation details because the corresponding paper metadata is pending public release.
157
- - Sensor-specific radiometric and preprocessing details should be added before final camera-ready publication.
158
 
159
  ## License
160
 
161
- **TBD**. Please replace this section with the actual license and usage restrictions before public release.
162
 
163
  ## Citation
164
 
165
- Citation will be added after the paper is publicly available.
166
 
167
  ```bibtex
168
  @article{,
@@ -172,7 +105,3 @@ Citation will be added after the paper is publicly available.
172
  year={}
173
  }
174
  ```
175
-
176
- ## Contact
177
-
178
- Please add maintainer contact information (email or project page) before release.
 
1
  ---
2
  pretty_name: PanScale
3
+ license: cc-by-4.0
4
  task_categories:
5
  - image-to-image
6
  tags:
 
12
  - 1K<n<10K
13
  ---
14
 
15
+ # PanScale
16
 
17
  ## Dataset Summary
18
 
19
+ PanScale is a remote-sensing pansharpening dataset with paired multispectral (`ms`) and panchromatic (`pan`) TIFF images for cross-scale evaluation.
20
 
21
+ - Total pairs: **7,559**
22
+ - Disk size: **~6.9 GB**
23
+ - Format: **8-bit TIFF**, `ms` = **4 channels**, `pan` = **1 channel**
24
+ - Pairing: same filename in `ms/` and `pan/` (for example, `123.tif` <-> `123.tif`)
 
 
25
 
26
  ## Supported Tasks
27
 
28
  - Pansharpening (PAN + MS fusion)
29
+ - Cross-scale generalization benchmarking
30
 
31
  ## Dataset Structure
32
 
 
66
  test2000/{ms,pan}
67
  ```
68
 
69
+ ## Subsets at a Glance
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
+ | Subset | Splits | # Pairs | MS size | PAN size | PAN/MS scale |
72
+ |---|---|---:|---|---|---:|
73
+ | `jilin` | `train200`, `test200/400/800` | 1,157 | 200-800 | 200-800 | 1.0 |
74
+ | `landsat` | `train256`, `test200/400/800/1600` | 2,868 | 200-1600 | 200-1600 | 1.0 |
75
+ | `skysat` | `train200`, `test200/400/800/1600` | 2,722 | 200-1600 | 200-1600 | 1.0 |
76
+ | `fjilin` | `test800/1200/1600/2000` | 484 | 200-500 | 800-2000 | 4.0 |
77
+ | `flandsat` | `test800/1200/1600/2000` | 192 | 400-1000 | 800-2000 | 2.0 |
78
+ | `fskysat` | `test800/1200/1600/2000` | 136 | 320-800 | 800-2000 | 2.5 |
 
 
 
 
 
 
 
 
 
79
 
80
+ ## Data Fields
81
 
82
+ - `ms`: 4-channel multispectral image (`.tif`)
83
+ - `pan`: 1-channel panchromatic image (`.tif`)
84
+ - `id`: filename stem (integer)
85
 
 
 
 
 
 
 
86
 
87
  ## Intended Use
88
 
89
+ - Pansharpening training and evaluation
90
+ - Cross-scale robustness analysis across sensors
 
 
 
 
 
 
 
 
91
 
92
  ## License
93
 
94
+ This dataset is released under **CC BY 4.0**.
95
 
96
  ## Citation
97
 
98
+ Citation information will be added after the paper is publicly available.
99
 
100
  ```bibtex
101
  @article{,
 
105
  year={}
106
  }
107
  ```