Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,162 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# VoDaSuRe: A Large-Scale Dataset Revealing Domain Shift in Volumetric Super-Resolution
|
| 6 |
+
|
| 7 |
+
## Dataset Summary
|
| 8 |
+
|
| 9 |
+
**VoDaSuRe** is a large-scale dataset for volumetric super-resolution (VSR), designed to study **domain shift between laboratory CT (Lab-CT) acquisitions**. The dataset is released in conjunction with the CVPR 2026 paper:
|
| 10 |
+
|
| 11 |
+
> *VoDaSuRe: A Large-Scale Dataset Revealing Domain Shift in Volumetric Super-Resolution*
|
| 12 |
+
|
| 13 |
+
The dataset consists of **32 volumetric scans of 16 samples**, each acquired under varying imaging conditions, enabling research on generalization, robustness, and cross-domain learning in 3D super-resolution.
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
## 🔗 Resources
|
| 18 |
+
|
| 19 |
+
* **Project page**: https://augusthoeg.github.io/VoDaSuRe/
|
| 20 |
+
* **Paper (arXiv)**: https://arxiv.org/abs/2603.23153
|
| 21 |
+
* **Code & pipelines**: https://github.com/AugustHoeg/VoxelSR
|
| 22 |
+
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
## Dataset Structure
|
| 26 |
+
|
| 27 |
+
The dataset is organized into **training and test splits**:
|
| 28 |
+
|
| 29 |
+
```
|
| 30 |
+
VoDaSuRe/
|
| 31 |
+
└── ome/
|
| 32 |
+
├── train/
|
| 33 |
+
└── test/
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
Each split contains volumetric data stored in OME-Zarr format, a hierarchical and chunked format that enables efficient, lazy loading of large-scale volumetric data.
|
| 37 |
+
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+
## Data Format (OME-Zarr)
|
| 41 |
+
|
| 42 |
+
Each sample is stored as a `.zarr` hierarchy with the following structure:
|
| 43 |
+
|
| 44 |
+
```
|
| 45 |
+
ome.zarr
|
| 46 |
+
├── HR (High-resolution volume)
|
| 47 |
+
│ ├── 0 (full resolution)
|
| 48 |
+
│ ├── 1 (2× downsampled)
|
| 49 |
+
│ ├── 2 (4× downsampled)
|
| 50 |
+
│ └── 3 (8× downsampled)
|
| 51 |
+
│
|
| 52 |
+
├── LR (Unregistered low-resolution volume)
|
| 53 |
+
│ ├── 0 (full resolution)
|
| 54 |
+
│ ├── 1 (2× downsampled)
|
| 55 |
+
│ ├── 2 (4× downsampled)
|
| 56 |
+
│ └── 3 (8× downsampled)
|
| 57 |
+
│
|
| 58 |
+
└── REG (Registered + intensity-matched low-resolution volume)
|
| 59 |
+
├── 0 (full resolution)
|
| 60 |
+
└── 1 (2× downsampled)
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
### Modalities
|
| 64 |
+
|
| 65 |
+
* **HR**: High-resolution reference volumes
|
| 66 |
+
* **LR**: Low-resolution volumes (unregistered)
|
| 67 |
+
* **REG**: Registered and intensity-matched low-resolution volumes
|
| 68 |
+
|
| 69 |
+
---
|
| 70 |
+
|
| 71 |
+
## Dataset Size
|
| 72 |
+
|
| 73 |
+
* **Total size**: ~489 GB (compressed)
|
| 74 |
+
* **Disk requirement after extraction**: ~500 GB
|
| 75 |
+
|
| 76 |
+
⚠️ Ensure sufficient disk space before downloading.
|
| 77 |
+
|
| 78 |
+
---
|
| 79 |
+
|
| 80 |
+
## Download Instructions
|
| 81 |
+
|
| 82 |
+
You can download the dataset directly from the Hugging Face Hub:
|
| 83 |
+
|
| 84 |
+
https://huggingface.co/datasets/AugustHoeg/VoDaSuRe
|
| 85 |
+
|
| 86 |
+
### Python (recommended)
|
| 87 |
+
|
| 88 |
+
```python
|
| 89 |
+
from huggingface_hub import snapshot_download
|
| 90 |
+
|
| 91 |
+
snapshot_download(
|
| 92 |
+
repo_id="AugustHoeg/VoDaSuRe",
|
| 93 |
+
repo_type="dataset"
|
| 94 |
+
)
|
| 95 |
+
```
|
| 96 |
+
|
| 97 |
+
### Git (with Git LFS)
|
| 98 |
+
|
| 99 |
+
```bash
|
| 100 |
+
git lfs install
|
| 101 |
+
git clone https://huggingface.co/datasets/AugustHoeg/VoDaSuRe
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
---
|
| 105 |
+
|
| 106 |
+
## Data Usage
|
| 107 |
+
|
| 108 |
+
The dataset is provided as compressed `.tar` archives containing `.zarr` folders.
|
| 109 |
+
|
| 110 |
+
To extract:
|
| 111 |
+
|
| 112 |
+
```bash
|
| 113 |
+
cd VoDaSuRe && bash extract_files.sh
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
After extraction, the dataset can be accessed using libraries supporting OME-Zarr, such as:
|
| 117 |
+
|
| 118 |
+
* `zarr`
|
| 119 |
+
* `ome-zarr-py`
|
| 120 |
+
* `dask`
|
| 121 |
+
|
| 122 |
+
---
|
| 123 |
+
|
| 124 |
+
## Intended Use
|
| 125 |
+
|
| 126 |
+
VoDaSuRe is designed for:
|
| 127 |
+
|
| 128 |
+
* Volumetric super-resolution (3D SR)
|
| 129 |
+
* Domain generalization and domain shift analysis
|
| 130 |
+
* Benchmarking learning-based SR methods under realistic acquisition scenarios
|
| 131 |
+
|
| 132 |
+
---
|
| 133 |
+
|
| 134 |
+
## Dataset Creation
|
| 135 |
+
|
| 136 |
+
The dataset was created using **laboratory CT (Lab-CT) imaging systems**, capturing paired high- and low-resolution volumetric scans under varying acquisition conditions.
|
| 137 |
+
|
| 138 |
+
Further details are available in the associated paper and project page.
|
| 139 |
+
|
| 140 |
+
---
|
| 141 |
+
|
| 142 |
+
## Citation
|
| 143 |
+
|
| 144 |
+
If you use this dataset, please cite our paper:
|
| 145 |
+
|
| 146 |
+
```bibtex
|
| 147 |
+
@article{hoeg2026vodasure,
|
| 148 |
+
title={VoDaSuRe: A Large-Scale Dataset Revealing Domain Shift in Volumetric Super-Resolution},
|
| 149 |
+
author={August Leander Høeg and Sophia Wiinberg Bardenfleth and Hans Martin Kjer and Tim Bjørn Dyrby and Vedrana Andersen Dahl and Anders Dahl},
|
| 150 |
+
journal={Proceedings of the Computer Vision and Pattern Recognition Conference},
|
| 151 |
+
year={2026},
|
| 152 |
+
url={https://augusthoeg.github.io/VoDaSuRe/}
|
| 153 |
+
}
|
| 154 |
+
```
|
| 155 |
+
|
| 156 |
+
---
|
| 157 |
+
|
| 158 |
+
## Contact
|
| 159 |
+
|
| 160 |
+
For questions or issues, please open an issue in the GitHub repository:
|
| 161 |
+
|
| 162 |
+
https://github.com/AugustHoeg/VoxelSR
|