Datasets:
Tasks:
Image-to-Image
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
< 1K
ArXiv:
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,59 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- polarization
|
| 5 |
+
- computer-vision
|
| 6 |
+
- physics-informed
|
| 7 |
+
- stokes
|
| 8 |
+
- image-encoding
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
pretty_name: Polarization Encoding Dataset
|
| 12 |
+
task_categories:
|
| 13 |
+
- image-to-image
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Polarization Encoding Dataset
|
| 18 |
+
|
| 19 |
+
This dataset provides processed polarization data suitable for PolarAnything.
|
| 20 |
+
|
| 21 |
+
It contains two main components:
|
| 22 |
+
|
| 23 |
+
- **S0/**: Unpolarized intensity images, representing the total light intensity (Stokes S0).
|
| 24 |
+
- **Polarization_Encoding/**: A 3-channel encoding of polarization information, where each channel represents:
|
| 25 |
+
- Channel 0: sin(2 × AoLP)
|
| 26 |
+
- Channel 1: cos(2 × AoLP)
|
| 27 |
+
- Channel 2: Degree of Linear Polarization (DoLP)
|
| 28 |
+
|
| 29 |
+
## Usage
|
| 30 |
+
|
| 31 |
+
You can load this dataset via the Hugging Face `datasets` library:
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
|
| 36 |
+
ds = load_dataset("flztroro/PolarAnything")
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Or browse the dataset files manually on the Hugging Face Hub.
|
| 40 |
+
|
| 41 |
+
## Citation
|
| 42 |
+
|
| 43 |
+
If you use this dataset in your research, please cite the following paper:
|
| 44 |
+
|
| 45 |
+
```
|
| 46 |
+
@misc{zhang2025polaranythingdiffusionbasedpolarimetricimage,
|
| 47 |
+
title={PolarAnything: Diffusion-based Polarimetric Image Synthesis},
|
| 48 |
+
author={Kailong Zhang and Youwei Lyu and Heng Guo and Si Li and Zhanyu Ma and Boxin Shi},
|
| 49 |
+
year={2025},
|
| 50 |
+
eprint={2507.17268},
|
| 51 |
+
archivePrefix={arXiv},
|
| 52 |
+
primaryClass={cs.CV},
|
| 53 |
+
url={https://arxiv.org/abs/2507.17268},
|
| 54 |
+
}
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## License
|
| 58 |
+
|
| 59 |
+
This dataset is licensed under the Creative Commons Attribution-NonCommercial 4.0 License (CC-BY-NC-4.0).
|