File size: 5,208 Bytes
890ef85
 
3f0fd69
 
 
 
 
 
 
 
 
890ef85
3f0fd69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
---
license: apache-2.0
language:
  - en
pretty_name: AITIR Asymmetric Text Annotations
tags:
  - infrared-small-target-detection
  - multimodal
  - vision-language
  - text-annotations

---


<h1>πŸ“ AITIR: Asymmetric Image-Text Infrared Text Annotations</h1>

<p>
  Official asymmetric text annotations for infrared small target detection.
</p>


<p>
  <a href="https://github.com/iLearn-Lab/MM26-ADGNet">
    <img src="https://img.shields.io/badge/GitHub-MM26--ADGNet-black?logo=github" alt="GitHub">
  </a>
  <a href="<paper-link>">
    <img src="https://img.shields.io/badge/ACM%20MM-2026-blue" alt="ACM MM 2026">
  </a>
</p>

---

## πŸ“– Description

This repository provides the official asymmetric text annotations used to construct the **Asymmetric Image-Text Infrared (AITIR)** dataset introduced in:

**ADGNet: Asymmetric Dual-text Guided Network for Infrared Small Target Detection**, accepted by **ACM Multimedia 2026**.

The released annotations cover three infrared small target detection datasets:

- **IRSTD-1K**
- **NUDT-SIRST**
- **SIRST**

This repository contains text annotations only. The original infrared images and ground-truth masks are not included.

---

## 🏷️ Annotation Design

Each infrared image is associated with two asymmetric text prompts.

### Fixed Target Prompt

A concise and image-independent target prompt is shared across all images:

```text
an infrared image featuring one or multiple target
```

### Detailed Background Prompt

Each image is assigned an image-dependent background prompt following the template:

```text
an infrared [S] image with [C]
```

where:

- `[S]` describes the global infrared scene.
- `[C]` describes local structures, thermal clutter, and potential distractors.

Example:

```text
an infrared cloudy sky image with faint dark cloud structures and bright illuminated building tops
```

---

## πŸ“Š Annotation Coverage

|  Dataset   | Fixed Target Prompt | Detailed Background Prompt |
| :--------: | :-----------------: | :------------------------: |
|  IRSTD-1K  |          βœ“          |             βœ“              |
| NUDT-SIRST |          βœ“          |             βœ“              |
|   SIRST    |          βœ“          |             βœ“              |

---

## πŸ“ Repository Structure

The asymmetric text annotations are organized by dataset and data split:

```text
MM26-ADGNet-AITIR-Text/
β”œβ”€β”€ IRSTD-1K/
β”‚   └── text/
β”‚       β”œβ”€β”€ train_fg.json
β”‚       β”œβ”€β”€ train_bg.json
β”‚       β”œβ”€β”€ test_fg.json
β”‚       └── test_bg.json
β”œβ”€β”€ NUDT-SIRST/
β”‚   └── text/
β”‚       β”œβ”€β”€ train_fg.json
β”‚       β”œβ”€β”€ train_bg.json
β”‚       β”œβ”€β”€ test_fg.json
β”‚       └── test_bg.json
└── SIRST/
    └── text/
        β”œβ”€β”€ train_fg.json
        β”œβ”€β”€ train_bg.json
        β”œβ”€β”€ test_fg.json
        └── test_bg.json
```

---

## 🧾 Annotation Files

Each dataset contains four JSON annotation files:

| File            | Description                                        |
| :-------------- | :------------------------------------------------- |
| `train_fg.json` | Target prompts for the training split              |
| `train_bg.json` | Detailed background prompts for the training split |
| `test_fg.json`  | Target prompts for the testing split               |
| `test_bg.json`  | Detailed background prompts for the testing split  |

Here, `fg` denotes the foreground or target prompt, while `bg` denotes the detailed background prompt.

---

## πŸš€ Usage

Download the annotations and place the corresponding JSON files under the `text/` directory of each original dataset:

```text
datasets/
β”œβ”€β”€ IRSTD-1K/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   β”œβ”€β”€ img_idx/
β”‚   └── text/
β”‚       β”œβ”€β”€ train_fg.json
β”‚       β”œβ”€β”€ train_bg.json
β”‚       β”œβ”€β”€ test_fg.json
β”‚       └── test_bg.json
β”œβ”€β”€ NUDT-SIRST/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   β”œβ”€β”€ img_idx/
β”‚   └── text/
β”‚       β”œβ”€β”€ train_fg.json
β”‚       β”œβ”€β”€ train_bg.json
β”‚       β”œβ”€β”€ test_fg.json
β”‚       └── test_bg.json
└── SIRST/
    β”œβ”€β”€ images/
    β”œβ”€β”€ masks/
    β”œβ”€β”€ img_idx/
    └── text/
        β”œβ”€β”€ train_fg.json
        β”œβ”€β”€ train_bg.json
        β”œβ”€β”€ test_fg.json
        └── test_bg.json
```

> [!NOTE]
> 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.

## ⚠️ Notes

- This repository provides text annotations only.
- The original infrared images and ground-truth masks must be obtained separately.
- The annotations are written in English.
- Users must comply with the licenses and terms of use of the original datasets.
- Annotation filenames must match the corresponding infrared image filenames.

---

## πŸ“š Citation

If you find this project useful in your research, please consider citing our paper:

```bibtex

```

Please also consider checking out and citing our other related work:

```bibtex

```