not-lain commited on
Commit
2547826
·
verified ·
1 Parent(s): ce8b4d4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -17
README.md CHANGED
@@ -1,19 +1,40 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- splits:
9
- - name: test
10
- num_bytes: 24103661
11
- num_examples: 280
12
- download_size: 24125938
13
- dataset_size: 24103661
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: test
18
- path: data/test-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-4.0
3
+ pretty_name: COIFT
4
+ task_categories:
5
+ - image-segmentation
6
+ tags:
7
+ - interactive-segmentation
8
+ - thin-object-segmentation
9
+ - foreground-segmentation
10
+ size_categories:
11
+ - n<1K
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # COIFT
15
+
16
+ COIFT (COco Instances For Thin objects) is an interactive/thin-object
17
+ segmentation benchmark consisting of 280 images with high-quality binary
18
+ foreground masks. It is used to evaluate segmentation of objects with thin
19
+ structures.
20
+
21
+ ## Dataset structure
22
+
23
+ - Split: `test` (280 examples) — COIFT is a single benchmark set with no train/test split.
24
+ - Columns:
25
+ - `image`: the RGB input image (`datasets.Image`).
26
+ - `mask`: the binary ground-truth foreground mask, single-channel (`datasets.Image`).
27
+
28
+ Images and masks are aligned 1:1 by filename stem.
29
+
30
+ ## Source & credit
31
+
32
+ Redistributed from the **thin-object-selection** repository accompanying the
33
+ paper *"Deep Interactive Thin Object Selection"* (Liew et al.).
34
+
35
+ - Repository: https://github.com/liewjunhao/thin-object-selection
36
+
37
+ ## License
38
+
39
+ Creative Commons Attribution-NonCommercial 4.0 International (CC-BY-NC-4.0),
40
+ following the source repository. Non-commercial use only.