Datasets:
Joshua Gao commited on
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-segmentation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: CSeg
|
| 8 |
+
size_categories:
|
| 9 |
+
- 100K<n<1M
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Dataset Card for Dataset Name
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of the dataset. -->
|
| 15 |
+
|
| 16 |
+
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.
|
| 17 |
+
|
| 18 |
+
### Dataset Sources [optional]
|
| 19 |
+
|
| 20 |
+
<!-- Provide the basic links for the dataset. -->
|
| 21 |
+
|
| 22 |
+
- **Repository:** [Github](https://github.com/drags99/ViewDelta)
|
| 23 |
+
- **Paper [optional]:** [ViewDelta: Text-Prompted Change Detection in Unaligned Images](https://arxiv.org/abs/2412.07612)
|
| 24 |
+
|
| 25 |
+
## Dataset Structure
|
| 26 |
+
|
| 27 |
+
<!-- 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. -->
|
| 28 |
+
|
| 29 |
+
`cseg_test.csv` and `cseg_train.csv` have been provided to provide the paths of the corresponding Image A, Image B, and their Label.
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
cseg/
|
| 33 |
+
├── test/
|
| 34 |
+
│ ├── image_a
|
| 35 |
+
│ │ ├── 223762_1.png
|
| 36 |
+
│ │ ├── 223797_1.png
|
| 37 |
+
│ │ └── ...
|
| 38 |
+
│ ├── image_b
|
| 39 |
+
│ │ ├── 223762_1.png
|
| 40 |
+
│ │ ├── 223797_1.png
|
| 41 |
+
│ │ └── ...
|
| 42 |
+
│ └── label
|
| 43 |
+
│ ├── 223762_1_all_Can you determine what has changed in this image?.png
|
| 44 |
+
│ ├── 223797_1_bird, poster, tower_Identify any changes to the bird, poster, tower..png
|
| 45 |
+
│ └── ...
|
| 46 |
+
├── train/
|
| 47 |
+
│ ├── image_a
|
| 48 |
+
│ │ ├── 223750_1.png
|
| 49 |
+
│ │ ├── 223751_1.png
|
| 50 |
+
│ │ └── ...
|
| 51 |
+
│ ├── image_b
|
| 52 |
+
│ │ ├── 223750_1.png
|
| 53 |
+
│ │ ├── 223751_1.png
|
| 54 |
+
│ │ └── ...
|
| 55 |
+
│ └── label
|
| 56 |
+
│ ├── 223750_1_houses, wires, person, grass_Are there any modifications to the houses, wires, person, grass?.png
|
| 57 |
+
│ ├── 223751_1_lights, signs, fountain, columns, railings_What lights, signs, fountain, columns, railings have been updated?
|
| 58 |
+
│ └── ...
|
| 59 |
+
├── cseg_test.csv
|
| 60 |
+
├── cseg_test.hdf5
|
| 61 |
+
├── cseg_train.csv
|
| 62 |
+
├── cseg_train.hdf5
|
| 63 |
+
└── README.md
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
## Citation
|
| 67 |
+
```
|
| 68 |
+
@misc{varghese2025viewdeltatextpromptedchangedetection,
|
| 69 |
+
title={ViewDelta: Text-Prompted Change Detection in Unaligned Images},
|
| 70 |
+
author={Subin Varghese and Joshua Gao and Vedhus Hoskere},
|
| 71 |
+
year={2025},
|
| 72 |
+
eprint={2412.07612},
|
| 73 |
+
archivePrefix={arXiv},
|
| 74 |
+
primaryClass={cs.CV},
|
| 75 |
+
url={https://arxiv.org/abs/2412.07612},
|
| 76 |
+
}
|
| 77 |
+
```
|