File size: 2,600 Bytes
1a33700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c64dcce
1a33700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a6488b6
 
1a33700
 
 
 
 
 
 
 
 
 
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
license: cc-by-4.0
task_categories:
- image-segmentation
tags:
- medical
- polyp-segmentation
- colonoscopy
- gastrointestinal
size_categories:
- n<1K
pretty_name: CVC-ClinicDB
---

# CVC-ClinicDB: Colonoscopy Polyp Segmentation Dataset

## Dataset Description

CVC-ClinicDB is a colonoscopy polyp segmentation dataset containing 612 frames extracted from 29 colonoscopy sequences with corresponding ground truth segmentation masks.

- **Task**: Binary segmentation (polyp vs. background)
- **Modality**: Colonoscopy
- **Format**: PNG images (384x288 pixels) with binary masks
- **Splits**: Training, Validation, and Test sets

## Dataset Structure

```
CVC-ClinicDB/
├── train/
│   ├── images/  # Training images
│   └── masks/   # Training masks
├── validation/
│   ├── images/  # Validation images
│   └── masks/   # Validation masks
└── test/
    ├── images/  # Test images
    └── masks/   # Test masks
```

## Citation

If you use this dataset, please cite:

```bibtex
@article{bernal2015wm,
  title={WM-DOVA maps for accurate polyp highlighting in colonoscopy: Validation vs. saliency maps from physicians},
  author={Bernal, Jorge and S{'a}nchez, F Javier and Fern{'a}ndez-Esparrach, Gloria and Gil, Debora and Rodr{\'\i}guez, Cristina and Vilari{\~n}o, Fernando},
  journal={Computerized Medical Imaging and Graphics},
  volume={43},
  pages={99--111},
  year={2015},
  publisher={Elsevier}
}
```

**Dataset Split**: This train/validation/test split is created by the following study. Please find more details in:

```bibtex
@article{chang2024esfpnet,
  title={ESFPNet: Efficient Stage-Wise Feature Pyramid on Mix Transformer for Deep Learning-Based Cancer Analysis in Endoscopic Video},
  author={Chang, Qi and Ahmad, Danish and Toth, Jennifer and Bascom, Rebecca and Higgins, William E},
  journal={Journal of Imaging},
  volume={10},
  number={8},
  pages={191},
  year={2024},
  publisher={MDPI}
}
```

## Usage

```python
from datasets import load_dataset

# Load dataset
dataset = load_dataset("Angelou0516/CVC-ClinicDB")

# Access splits
train_data = dataset['train']
val_data = dataset['validation']
test_data = dataset['test']

# Access a sample
sample = train_data[0]
image = sample['file_name']  # Image
mask = sample['mask_file_name']  # Segmentation mask
```

## License

Please refer to the original CVC-ClinicDB dataset license and citation requirements.

## Links

- Original Dataset: https://polyp.grand-challenge.org/CVCClinicDB/
- Paper: https://www.sciencedirect.com/science/article/pii/S0895611115000567