File size: 1,423 Bytes
c121822 f042079 c121822 9d804e6 f042079 |
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 |
---
license: apache-2.0
---
### Dataset Download
I created a convenient PNG-formatted version of the ACDC dataset.
This version was converted from the files provided in the SSL4MIS repository:
[SSL4MIS ACDC Version](https://github.com/HiLab-git/SSL4MIS/tree/master/data/ACDC)
If you use the dataset in your research, please make sure to cite the **original ACDC paper**.
### Dataset Structure
```bash
XXX/
│
├── train-label/ # Labeled training set
│ ├── image/ # Input images (.png)
│ └── mask/ # Corresponding segmentation masks (.png)
│
├── train-unlabel/ # Unlabeled training set
│ └── image/ # Images without ground truth masks
│ └── mask/
│
├── val/ # Validation set
│ ├── image/ # Validation images (.png)
│ └── mask/ # Validation masks (.png)
│
└── test/ # Test set
├── image/ # Test images (.png)
└── mask/ # Test masks (optional)
```
This dataset is introduced and used in the following paper:
**VQ-Seg: Vector-Quantized Token Perturbation for Semi-Supervised Medical Image Segmentation**
arXiv: https://arxiv.org/abs/2601.10124
check: https://github.com/script-Yang/VQ-Seg
|