Update README.md
Browse files
README.md
CHANGED
@@ -12,13 +12,23 @@ size_categories:
|
|
12 |
- 1K<n<10K
|
13 |
---
|
14 |
|
15 |
-
|
|
|
16 |
|
17 |
-
Original data source: https://www.kaggle.com/datasets/newslab/cholecseg8k
|
18 |
|
19 |
-
|
20 |
```python
|
21 |
from datasets import load_dataset
|
22 |
|
23 |
dataset = load_dataset("minwoosun/CholecSeg8k", trust_remote_code=True)
|
24 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
- 1K<n<10K
|
13 |
---
|
14 |
|
15 |
+
# Description
|
16 |
+
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.
|
17 |
|
18 |
+
Paper: https://arxiv.org/abs/2012.12453 | Original data source: https://www.kaggle.com/datasets/newslab/cholecseg8k
|
19 |
|
20 |
+
# Loading data
|
21 |
```python
|
22 |
from datasets import load_dataset
|
23 |
|
24 |
dataset = load_dataset("minwoosun/CholecSeg8k", trust_remote_code=True)
|
25 |
+
```
|
26 |
+
|
27 |
+
# Tutorial
|
28 |
+
A short tutorial on how to load and use the data can be found in `tutorial/`.
|
29 |
+
|
30 |
+
Setup the conda environment using the yaml file,
|
31 |
+
```
|
32 |
+
conda env create -f environment.yaml
|
33 |
+
conda activate cholecseg8k
|
34 |
+
```
|