ttw116 commited on
Commit
3f0fd69
Β·
verified Β·
1 Parent(s): 8d8630b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +192 -0
README.md CHANGED
@@ -1,3 +1,195 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - en
5
+ pretty_name: AITIR Asymmetric Text Annotations
6
+ tags:
7
+ - infrared-small-target-detection
8
+ - multimodal
9
+ - vision-language
10
+ - text-annotations
11
+
12
  ---
13
+
14
+
15
+ <h1>πŸ“ AITIR: Asymmetric Image-Text Infrared Text Annotations</h1>
16
+
17
+ <p>
18
+ Official asymmetric text annotations for infrared small target detection.
19
+ </p>
20
+
21
+
22
+ <p>
23
+ <a href="https://github.com/iLearn-Lab/MM26-ADGNet">
24
+ <img src="https://img.shields.io/badge/GitHub-MM26--ADGNet-black?logo=github" alt="GitHub">
25
+ </a>
26
+ <a href="<paper-link>">
27
+ <img src="https://img.shields.io/badge/ACM%20MM-2026-blue" alt="ACM MM 2026">
28
+ </a>
29
+ </p>
30
+
31
+ ---
32
+
33
+ ## πŸ“– Description
34
+
35
+ This repository provides the official asymmetric text annotations used to construct the **Asymmetric Image-Text Infrared (AITIR)** dataset introduced in:
36
+
37
+ **ADGNet: Asymmetric Dual-text Guided Network for Infrared Small Target Detection**, accepted by **ACM Multimedia 2026**.
38
+
39
+ The released annotations cover three infrared small target detection datasets:
40
+
41
+ - **IRSTD-1K**
42
+ - **NUDT-SIRST**
43
+ - **SIRST**
44
+
45
+ This repository contains text annotations only. The original infrared images and ground-truth masks are not included.
46
+
47
+ ---
48
+
49
+ ## 🏷️ Annotation Design
50
+
51
+ Each infrared image is associated with two asymmetric text prompts.
52
+
53
+ ### Fixed Target Prompt
54
+
55
+ A concise and image-independent target prompt is shared across all images:
56
+
57
+ ```text
58
+ an infrared image featuring one or multiple target
59
+ ```
60
+
61
+ ### Detailed Background Prompt
62
+
63
+ Each image is assigned an image-dependent background prompt following the template:
64
+
65
+ ```text
66
+ an infrared [S] image with [C]
67
+ ```
68
+
69
+ where:
70
+
71
+ - `[S]` describes the global infrared scene.
72
+ - `[C]` describes local structures, thermal clutter, and potential distractors.
73
+
74
+ Example:
75
+
76
+ ```text
77
+ an infrared cloudy sky image with faint dark cloud structures and bright illuminated building tops
78
+ ```
79
+
80
+ ---
81
+
82
+ ## πŸ“Š Annotation Coverage
83
+
84
+ | Dataset | Fixed Target Prompt | Detailed Background Prompt |
85
+ | :--------: | :-----------------: | :------------------------: |
86
+ | IRSTD-1K | βœ“ | βœ“ |
87
+ | NUDT-SIRST | βœ“ | βœ“ |
88
+ | SIRST | βœ“ | βœ“ |
89
+
90
+ ---
91
+
92
+ ## πŸ“ Repository Structure
93
+
94
+ The asymmetric text annotations are organized by dataset and data split:
95
+
96
+ ```text
97
+ MM26-ADGNet-AITIR-Text/
98
+ β”œβ”€β”€ IRSTD-1K/
99
+ β”‚ └── text/
100
+ β”‚ β”œβ”€β”€ train_fg.json
101
+ β”‚ β”œβ”€β”€ train_bg.json
102
+ β”‚ β”œβ”€β”€ test_fg.json
103
+ β”‚ └── test_bg.json
104
+ β”œβ”€β”€ NUDT-SIRST/
105
+ β”‚ └── text/
106
+ β”‚ β”œβ”€β”€ train_fg.json
107
+ β”‚ β”œβ”€β”€ train_bg.json
108
+ β”‚ β”œβ”€β”€ test_fg.json
109
+ β”‚ └── test_bg.json
110
+ └── SIRST/
111
+ └── text/
112
+ β”œβ”€β”€ train_fg.json
113
+ β”œβ”€β”€ train_bg.json
114
+ β”œβ”€β”€ test_fg.json
115
+ └── test_bg.json
116
+ ```
117
+
118
+ ---
119
+
120
+ ## 🧾 Annotation Files
121
+
122
+ Each dataset contains four JSON annotation files:
123
+
124
+ | File | Description |
125
+ | :-------------- | :------------------------------------------------- |
126
+ | `train_fg.json` | Target prompts for the training split |
127
+ | `train_bg.json` | Detailed background prompts for the training split |
128
+ | `test_fg.json` | Target prompts for the testing split |
129
+ | `test_bg.json` | Detailed background prompts for the testing split |
130
+
131
+ Here, `fg` denotes the foreground or target prompt, while `bg` denotes the detailed background prompt.
132
+
133
+ ---
134
+
135
+ ## πŸš€ Usage
136
+
137
+ Download the annotations and place the corresponding JSON files under the `text/` directory of each original dataset:
138
+
139
+ ```text
140
+ datasets/
141
+ β”œβ”€β”€ IRSTD-1K/
142
+ β”‚ β”œβ”€β”€ images/
143
+ β”‚ β”œβ”€β”€ masks/
144
+ β”‚ β”œβ”€β”€ img_idx/
145
+ β”‚ └── text/
146
+ β”‚ β”œβ”€β”€ train_fg.json
147
+ β”‚ β”œβ”€β”€ train_bg.json
148
+ β”‚ β”œβ”€β”€ test_fg.json
149
+ β”‚ └── test_bg.json
150
+ β”œβ”€β”€ NUDT-SIRST/
151
+ β”‚ β”œβ”€β”€ images/
152
+ β”‚ β”œβ”€β”€ masks/
153
+ β”‚ β”œβ”€β”€ img_idx/
154
+ β”‚ └── text/
155
+ β”‚ β”œβ”€β”€ train_fg.json
156
+ β”‚ β”œβ”€β”€ train_bg.json
157
+ β”‚ β”œβ”€β”€ test_fg.json
158
+ β”‚ └── test_bg.json
159
+ └── SIRST/
160
+ β”œβ”€β”€ images/
161
+ β”œβ”€β”€ masks/
162
+ β”œβ”€β”€ img_idx/
163
+ └── text/
164
+ β”œβ”€β”€ train_fg.json
165
+ β”œβ”€β”€ train_bg.json
166
+ β”œβ”€β”€ test_fg.json
167
+ └── test_bg.json
168
+ ```
169
+
170
+ > [!NOTE]
171
+ > The JSON entries correspond to the samples in the respective training or testing split. Please keep the provided filenames and directory structure unchanged when using them with the official ADGNet implementation.
172
+
173
+ ## ⚠️ Notes
174
+
175
+ - This repository provides text annotations only.
176
+ - The original infrared images and ground-truth masks must be obtained separately.
177
+ - The annotations are written in English.
178
+ - Users must comply with the licenses and terms of use of the original datasets.
179
+ - Annotation filenames must match the corresponding infrared image filenames.
180
+
181
+ ---
182
+
183
+ ## πŸ“š Citation
184
+
185
+ If you find this project useful in your research, please consider citing our paper:
186
+
187
+ ```bibtex
188
+
189
+ ```
190
+
191
+ Please also consider checking out and citing our other related work:
192
+
193
+ ```bibtex
194
+
195
+ ```