Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,24 +1,59 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
- name: test
|
| 13 |
-
num_bytes: 622780532
|
| 14 |
-
num_examples: 2026
|
| 15 |
-
download_size: 1568995436
|
| 16 |
-
dataset_size: 1568414945
|
| 17 |
-
configs:
|
| 18 |
-
- config_name: default
|
| 19 |
-
data_files:
|
| 20 |
-
- split: train
|
| 21 |
-
path: data/train-*
|
| 22 |
-
- split: test
|
| 23 |
-
path: data/test-*
|
| 24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: COD10K
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-segmentation
|
| 6 |
+
tags:
|
| 7 |
+
- camouflaged-object-detection
|
| 8 |
+
- binary-segmentation
|
| 9 |
+
- saliency
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# COD10K (Camouflaged Object Detection 10K)
|
| 15 |
+
|
| 16 |
+
This dataset contains the **COD10K** subset for camouflaged object detection,
|
| 17 |
+
packaged from the [SINet repository](https://github.com/DengPingFan/SINet)
|
| 18 |
+
(DengPingFan/SINet). Each example is a natural image paired with a binary
|
| 19 |
+
ground-truth object mask.
|
| 20 |
+
|
| 21 |
+
## Contents
|
| 22 |
+
|
| 23 |
+
Only the **COD10K** portion of the SINet train/test bundles is included here.
|
| 24 |
+
The SINet distribution also ships CAMO and CHAMELEON samples; those were
|
| 25 |
+
**excluded**:
|
| 26 |
+
|
| 27 |
+
- **train**: 3040 COD10K samples (the 1000 CAMO `camourflage_*` samples bundled
|
| 28 |
+
in the SINet TrainDataset were filtered out).
|
| 29 |
+
- **test**: 2026 COD10K samples (the CAMO (251) and CHAMELEON (77) test sets
|
| 30 |
+
bundled in the SINet TestDataset were filtered out).
|
| 31 |
+
|
| 32 |
+
## Features
|
| 33 |
+
|
| 34 |
+
- `image`: the RGB input image (`datasets.Image`).
|
| 35 |
+
- `mask`: the binary ground-truth object segmentation mask (`datasets.Image`, mode `L`).
|
| 36 |
+
|
| 37 |
+
Edge/instance maps that ship with COD10K are not included; only the binary
|
| 38 |
+
object mask is provided as `mask`.
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
If you use this dataset, please cite the COD10K paper:
|
| 43 |
+
|
| 44 |
+
```bibtex
|
| 45 |
+
@inproceedings{fan2020camouflaged,
|
| 46 |
+
title={Camouflaged Object Detection},
|
| 47 |
+
author={Fan, Deng-Ping and Ji, Ge-Peng and Sun, Guolei and Cheng, Ming-Ming and Shen, Jianbing and Shao, Ling},
|
| 48 |
+
booktitle={IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 49 |
+
year={2020}
|
| 50 |
+
}
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## License
|
| 54 |
+
|
| 55 |
+
Released for **academic / research (non-commercial)** use, following the terms
|
| 56 |
+
of the original COD10K / SINet release. No explicit SPDX license is provided by
|
| 57 |
+
the authors; this repository is tagged `cc-by-nc-4.0` to reflect the
|
| 58 |
+
non-commercial, attribution-based terms. Please refer to the
|
| 59 |
+
[original repository](https://github.com/DengPingFan/SINet) for authoritative terms.
|