Commit ·
e897238
1
Parent(s): 2bab5c1
init
Browse files
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
# Dataset README
|
| 5 |
+
|
| 6 |
+
## Dataset Structure
|
| 7 |
+
|
| 8 |
+
The dataset is organized into the following directory structure:
|
| 9 |
+
|
| 10 |
+
ambaraw_20240111/ │ ├── RAW/ │ ├── gt/ │ │ └── Scene_Gain_Exposure_Sigma.npy │ ├── noisy/ │ │ └── Scene_Gain_Exposure.npy │ ├── RGB/ │ ├── gt/ │ │ └── Scene_Gain_Exposure_Sigma.png │ ├── noisy/ │ │ └── Scene_Gain_Exposure.png
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
### Description
|
| 14 |
+
|
| 15 |
+
- **RAW Folder**: Contains the raw data files.
|
| 16 |
+
- `gt/`: Ground truth data in `.npy` format.
|
| 17 |
+
- `noisy/`: Noisy data in `.npy` format.
|
| 18 |
+
- **RGB Folder**: Contains RGB images for visualization purposes.
|
| 19 |
+
- `gt/`: Ground truth images in `.png` format.
|
| 20 |
+
- `noisy/`: Noisy images in `.png` format.
|
| 21 |
+
|
| 22 |
+
### Image Sensor Details
|
| 23 |
+
|
| 24 |
+
- **Sensor**: Sony IMX678
|
| 25 |
+
- **Aperture**: f/1.65
|
| 26 |
+
- **Field of View (FOV)**: 109°
|
| 27 |
+
- **Exposure**: 1/30
|
| 28 |
+
|
| 29 |
+
## Data Loading
|
| 30 |
+
|
| 31 |
+
To load the dataset, use the provided `dataloader_raw.py` script. Below is an example of how to use the script:
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
# Example usage of dataloader_raw.py
|
| 35 |
+
gt_path = "your_path/ambaraw_20240111/RAW/gt/"
|
| 36 |
+
noisy_path = "your_path/ambaraw_20240111/RAW/noisy/"
|
| 37 |
+
dataset = loadnpy(gt_path, noisy_path)
|
| 38 |
+
|
| 39 |
+
Contact
|
| 40 |
+
For any questions or issues, please contact [Tim Liu] at [Tim.Liu@liteon.com].
|