Datasets:
File size: 2,351 Bytes
c59146a 7de405a c59146a 5cef418 c59146a a2424c0 c59146a 6f232c2 c59146a 6f232c2 c59146a 1f13438 c59146a |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
---
license: mit
task_categories:
- image-segmentation
language:
- en
pretty_name: CSeg
size_categories:
- 100K<n<1M
---
# Dataset Card for Dataset Name
<!-- Provide a quick summary of the dataset. -->
CSeg (Change Segmentation) dataset is a large-scale, varying-view, and text-guided change detection dataset. With over 500k datapoints, CSeg was used to train ViewDelta to associate a text prompt to relevant changes between two images.
### Paper and Repo
<!-- Provide the basic links for the dataset. -->
- **Repository:** [Github](https://github.com/drags99/ViewDelta)
- **Paper:** [ViewDelta: Text-Prompted Change Detection in Unaligned Images](https://arxiv.org/abs/2412.07612)
## Dataset Download
```
wget https://huggingface.co/datasets/hoskerelab/CSeg/resolve/main/download.sh
bash download.sh
```
## Dataset Structure
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
`cseg_test.csv` and `cseg_train.csv` have been provided to provide the paths of the corresponding Image A, Image B, and their Label.
```
cseg/
├── test/
│ ├── image_a
│ │ ├── 223762_1.png
│ │ ├── 223797_1.png
│ │ └── ...
│ ├── image_b
│ │ ├── 223762_1.png
│ │ ├── 223797_1.png
│ │ └── ...
│ └── label
│ ├── 223762_1.png
│ ├── 223797_1.png
│ └── ...
├── train/
│ ├── image_a
│ │ ├── 223750_1.png
│ │ ├── 223751_1.png
│ │ └── ...
│ ├── image_b
│ │ ├── 223750_1.png
│ │ ├── 223751_1.png
│ │ └── ...
│ └── label
│ ├── 223750_1.png
│ ├── 223751_1.png
│ └── ...
├── cseg_test.csv
└── cseg_train.csv
```
## Citation
```
@misc{varghese2025viewdeltatextpromptedchangedetection,
title={ViewDelta: Text-Prompted Change Detection in Unaligned Images},
author={Subin Varghese and Joshua Gao and Vedhus Hoskere},
year={2025},
eprint={2412.07612},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2412.07612},
}
``` |