iLearn-Lab/MM26-ADGNet-AITIR-Text
π AITIR: Asymmetric Image-Text Infrared Text Annotations Official asymmetric text annotations for infrared small target detection. " rel="nofollow"> π 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β¦ See the full description on the dataset page: https://huggingface.co/datasets/iLearn-Lab/MM26-ADGNet-AITIR-Text.
054
1---2license: apache-2.03language:4 - en5pretty_name: AITIR Asymmetric Text Annotations6tags:7 - infrared-small-target-detection8 - multimodal9 - vision-language10 - text-annotations11 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## π Description34 35This 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 39The released annotations cover three infrared small target detection datasets:40 41- **IRSTD-1K**42- **NUDT-SIRST**43- **SIRST**44 45This repository contains text annotations only. The original infrared images and ground-truth masks are not included.46 47---48 49## π·οΈ Annotation Design50 51Each infrared image is associated with two asymmetric text prompts.52 53### Fixed Target Prompt54 55A concise and image-independent target prompt is shared across all images:56 57```text58an infrared image featuring one or multiple target59```60 61### Detailed Background Prompt62 63Each image is assigned an image-dependent background prompt following the template:64 65```text66an infrared [S] image with [C]67```68 69where:70 71- `[S]` describes the global infrared scene.72- `[C]` describes local structures, thermal clutter, and potential distractors.73 74Example:75 76```text77an infrared cloudy sky image with faint dark cloud structures and bright illuminated building tops78```79 80---81 82## π Annotation Coverage83 84| Dataset | Fixed Target Prompt | Detailed Background Prompt |85| :--------: | :-----------------: | :------------------------: |86| IRSTD-1K | β | β |87| NUDT-SIRST | β | β |88| SIRST | β | β |89 90---91 92## π Repository Structure93 94The asymmetric text annotations are organized by dataset and data split:95 96```text97MM26-ADGNet-AITIR-Text/98βββ IRSTD-1K/99β βββ text/100β βββ train_fg.json101β βββ train_bg.json102β βββ test_fg.json103β βββ test_bg.json104βββ NUDT-SIRST/105β βββ text/106β βββ train_fg.json107β βββ train_bg.json108β βββ test_fg.json109β βββ test_bg.json110βββ SIRST/111 βββ text/112 βββ train_fg.json113 βββ train_bg.json114 βββ test_fg.json115 βββ test_bg.json116```117 118---119 120## π§Ύ Annotation Files121 122Each 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 131Here, `fg` denotes the foreground or target prompt, while `bg` denotes the detailed background prompt.132 133---134 135## π Usage136 137Download the annotations and place the corresponding JSON files under the `text/` directory of each original dataset:138 139```text140datasets/141βββ IRSTD-1K/142β βββ images/143β βββ masks/144β βββ img_idx/145β βββ text/146β βββ train_fg.json147β βββ train_bg.json148β βββ test_fg.json149β βββ test_bg.json150βββ NUDT-SIRST/151β βββ images/152β βββ masks/153β βββ img_idx/154β βββ text/155β βββ train_fg.json156β βββ train_bg.json157β βββ test_fg.json158β βββ test_bg.json159βββ SIRST/160 βββ images/161 βββ masks/162 βββ img_idx/163 βββ text/164 βββ train_fg.json165 βββ train_bg.json166 βββ test_fg.json167 βββ test_bg.json168```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## β οΈ Notes174 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## π Citation184 185If you find this project useful in your research, please consider citing our paper:186 187```bibtex188 189```190 191Please also consider checking out and citing our other related work:192 193```bibtex194 195```