not-lain commited on
Commit
53e67f1
·
verified ·
1 Parent(s): 2b4cbbb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -15
README.md CHANGED
@@ -1,19 +1,14 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- splits:
9
- - name: train
10
- num_bytes: 1498379344
11
- num_examples: 5248
12
- - name: test
13
- num_bytes: 148427155
14
- num_examples: 500
15
- download_size: 1647183668
16
- dataset_size: 1646806499
17
  configs:
18
  - config_name: default
19
  data_files:
@@ -22,3 +17,38 @@ configs:
22
  - split: test
23
  path: data/test-*
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-4.0
3
+ pretty_name: ThinObject-5K
4
+ task_categories:
5
+ - image-segmentation
6
+ tags:
7
+ - thin-object-segmentation
8
+ - saliency
9
+ - matting
10
+ size_categories:
11
+ - 1K<n<10K
 
 
 
 
 
12
  configs:
13
  - config_name: default
14
  data_files:
 
17
  - split: test
18
  path: data/test-*
19
  ---
20
+
21
+ # ThinObject-5K
22
+
23
+ ThinObject-5K is a high-resolution dataset for **thin object segmentation**, containing 5,748 images with pixel-accurate binary ground-truth masks that emphasize thin structures (e.g. wires, legs, handles, wineglass stems, antennae).
24
+
25
+ ## Splits
26
+
27
+ | Split | Rows | Source list |
28
+ |-------|------|-------------|
29
+ | train | 5248 | official `trainval.txt` |
30
+ | test | 500 | official `test.txt` |
31
+
32
+ The two splits are disjoint and together cover all 5,748 image/mask pairs. The original repository additionally provides a `train.txt` (4,748) / validation (500) partition; the validation subset is folded into the `train` split here and is recoverable from the original lists if needed.
33
+
34
+ ## Schema
35
+
36
+ | Column | Type | Description |
37
+ |--------|------|-------------|
38
+ | `image` | `Image` | RGB photograph (JPEG) |
39
+ | `mask` | `Image` | Single-channel (mode L) binary ground-truth segmentation mask, same resolution as the image |
40
+
41
+ ## Source & Credit
42
+
43
+ This dataset was introduced in:
44
+
45
+ > **Deep Interactive Thin Object Selection**
46
+ > Jun Hao Liew, Scott Cohen, Brian Price, Long Mai, Jiashi Feng. WACV 2021.
47
+
48
+ Original repository: https://github.com/liewjunhao/thin-object-selection
49
+
50
+ Original data (Google Drive) is redistributed here for convenience. All credit belongs to the original authors. Please cite the paper above when using this dataset.
51
+
52
+ ## License
53
+
54
+ Released under the **Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)** license, matching the license of the original `thin-object-selection` repository. Non-commercial use only.