File size: 1,394 Bytes
c1552cd
 
c126fd1
 
 
 
 
 
 
 
 
 
bd17906
 
58b70bc
91237d9
 
 
58b70bc
7df916d
 
58b70bc
7df916d
 
 
 
58b70bc
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-nc-sa-4.0
task_categories:
- image-segmentation
language:
- en
tags:
- medical
- biology
pretty_name: CholecSeg8k
size_categories:
- 1K<n<10K
---

# Description

[Paper](https://arxiv.org/abs/2012.12453) | [kaggle data](https://www.kaggle.com/datasets/newslab/cholecseg8k)

The CholecSeg8k dataset, an extension of the Cholec80 collection, includes 8,080 carefully annotated images from laparoscopic cholecystectomy surgeries, selected from 17 video clips in Cholec80. Each image in CholecSeg8K is pixel-level annotated for thirteen different surgical elements. The dataset is efficiently organized in a directory structure, featuring 101 folders, each containing 80 frames at a resolution of 854x480, along with three types of masks for each frame: a color mask for visualization, an annotation tool mask, and a watershed mask for simplified processing. This comprehensive dataset, freely available under the CC BY-NC-SA 4.0 license, is a critical resource for advancing the field of computer-assisted surgical procedures.


# Loading data
```python
from datasets import load_dataset

dataset = load_dataset("minwoosun/CholecSeg8k", trust_remote_code=True)
```

# Tutorial
A short tutorial on how to load and use the data can be found in `tutorial/`. 

Setup the conda environment using the yaml file,
```
conda env create -f environment.yaml
conda activate cholecseg8k
```