Zegkim commited on
Commit
3d51aed
·
verified ·
1 Parent(s): bb1e50d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -3
README.md CHANGED
@@ -1,3 +1,103 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+ # STFD Dataset
5
+
6
+ This folder contains the **STFD (Screenshot Text Forgery Dataset)** used in the paper:
7
+
8
+ **Learning to Locate the Text Forgery in Smartphone Screenshots**
9
+ Zeqin Yu, Bin Li, Yuzhen Lin, Jinhua Zeng, Jishen Zeng
10
+ ICASSP 2023
11
+
12
+ Project page: https://github.com/ZeqinYu/STFL-Net
13
+
14
+ STFD is designed for **text image forgery localization (T-IFL)** in smartphone screenshots.
15
+ The dataset contains tampered screenshots and their corresponding **pixel-level forgery masks**.
16
+
17
+ ---
18
+
19
+ ## Dataset Structure
20
+
21
+ ```
22
+ STFD/
23
+ ├── 1_Copy-move/
24
+ │ ├── tamper/ # tampered screenshots
25
+ │ └── masks/ # binary forgery masks
26
+ ├── 2_Splicing/
27
+ │ ├── tamper/
28
+ │ └── masks/
29
+ ├── 3_Removal/
30
+ │ ├── tamper/
31
+ │ └── masks/
32
+ ├── 4_Insertion/
33
+ │ ├── tamper/
34
+ │ └── masks/
35
+ └── 5_Replacement/
36
+ ├── tamper/
37
+ └── masks/
38
+ ```
39
+
40
+ Each image in `tamper/` has a corresponding mask with the **same filename** in `masks/`.
41
+
42
+ Example:
43
+
44
+ ```
45
+ tamper/ffa3cedd4317633601c6fb82d94fc783.png
46
+ masks/ffa3cedd4317633601c6fb82d94fc783.png
47
+ ```
48
+
49
+ The mask is a **binary image**, where:
50
+
51
+ * **0** = non-tampered region
52
+ * **255** = tampered region
53
+
54
+ ---
55
+
56
+ ## Tampering Types
57
+
58
+ STFD contains five common screenshot text manipulation operations:
59
+
60
+ 1. **Copy-Move**: copy a text region and paste it to another location within the same image.
61
+ 2. **Splicing**: paste text regions from another image into the target image.
62
+ 3. **Removal**: remove existing text and fill the region using inpainting.
63
+ 4. **Insertion**: insert new text content into blank regions.
64
+ 5. **Replacement**: replace original text with newly generated text.
65
+
66
+ ---
67
+
68
+ ### Screenshot Sources
69
+ The screenshots were captured from real devices to reflect realistic usage scenarios.
70
+
71
+ | Category | Description |
72
+ |----------|-------------|
73
+ | Systems | Android, HarmonyOS, iOS, Windows |
74
+ | Scenes | Chat, Social Media, Mobile Payment, E-commerce, Online Banking, Maps & Transportation, Web Browsing, System Interfaces, Documents|
75
+ | Devices | Realme Q3 Pro, Oppo Reno1, Honor 9, Honor V30, Vivo X21s, Samsung Note20 Ultra, Vivo X60, Honor 30-1, Xiaomi 9, Honor V20, Nova 8, OnePlus 9, Huawei Mate30, Honor 30-2, Honor 20 Pro, iPhone 7, iPad Air 3, iPad 2020, iPhone 12, iPhone XS, iPhone 11, iPhone SE2, iPhone 14 Pro, MacBook Air 2015, MacBook Pro 2017, Win10 Dell Optiplex 7080, Win11 Xiaomi Air14, Win10 Xiaomi Air14 |
76
+ | Format | PNG / JPEG |
77
+
78
+ ---
79
+
80
+ ## Citation
81
+
82
+ If you use this dataset in your research, please cite:
83
+
84
+ ```bibtex
85
+ @inproceedings{yu2023learning,
86
+ title = {Learning to Locate the Text Forgery in Smartphone Screenshots},
87
+ author = {Yu, Zeqin and Li, Bin and Lin, Yuzhen and Zeng, Jinhua and Zeng, Jishen},
88
+ booktitle = {ICASSP 2023–2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
89
+ pages = {1--5},
90
+ year = {2023},
91
+ organization = {IEEE}
92
+ }
93
+ ```
94
+
95
+ ## License and Notice
96
+
97
+ * This dataset is released for **academic research purposes only**.
98
+
99
+ * All images are collected from **real-world scenarios** and have been manually screened to remove sensitive information.
100
+
101
+ * If you believe that any image may contain unintended information leakage, please notify us so that we can remove it promptly. We kindly ask users **not to redistribute such images**.
102
+
103
+ * For any concerns, please contact: **Zeqin Yu ([kimjyu@foxmail.com](mailto:kimjyu@foxmail.com))**.