File size: 1,348 Bytes
e897238 44bdf40 46c1728 44bdf40 46c1728 44bdf40 46c1728 44bdf40 46c1728 44bdf40 e897238 e08e2a6 e897238 9923841 e897238 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ---
license: mit
---
# Dataset README
## Dataset Structure
The dataset is organized into the following directory structure:
<pre>
sony_IMX678_20240111/
│
├── RAW/
│ ├── gt/
│ │ └── Scene_Gain_Exposure_gt.npy
│ ├── noisy/
│ │ └── Scene_Gain_Exposure_noisy.npy
│
├── RGB/
│ ├── gt/
│ │ └── Scene_Gain_Exposure_gt.png
│ ├── noisy/
│ │ └── Scene_Gain_Exposure_noisy.png
</pre>
### Description
- **RAW Folder**: Contains the raw data files.
- `gt/`: Ground truth data in `.npy` format.
- `noisy/`: Noisy data in `.npy` format.
- **RGB Folder**: Contains RGB images for visualization purposes.
- `gt/`: Ground truth images in `.png` format.
- `noisy/`: Noisy images in `.png` format.
### Image Sensor Details
- **Sensor**: Sony IMX678
- **Aperture**: f/1.65
- **Field of View (FOV)**: 109°
- **Exposure**: 1/30
## Data Loading
To load the dataset, use the provided `dataloader_raw.py` script. Below is an example of how to use the script:
```python
# Example usage of dataloader_raw.py
gt_path = "your_path/sony_IMX678_20240111/RAW/gt/"
noisy_path = "your_path/sony_IMX678_20240111/RAW/noisy/"
dataset = loadnpy(gt_path, noisy_path)
```
Contact
For any questions or issues, please contact [Tim Liu] at [Tim.Liu@liteon.com]. |