SyMTRS: Benchmark Multi-Task Synthetic Dataset for Depth, Domain Adaptation and Super-Resolution in Aerial Imagery
Paper β’ 2604.21801 β’ Published
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
SyMTRS is a high-fidelity simulation dataset generated with Unreal Engine 5 (UE5), built on top of the MatrixCity project. It provides multi-modal, perfectly aligned data for aerial imagery research, including:
SyMTRS enables multi-task learning for:
Unlike real aerial datasets, SyMTRS provides:
The dataset provides bicubic downsampled images at multiple scales:
| Scale | LR | HR |
|---|---|---|
| Γ2 | 1024Γ1024 | 2048Γ2048 |
| Γ4 | 512Γ512 | 2048Γ2048 |
| Γ8 | 256Γ256 | 2048Γ2048 |
Each scene includes:
hr/)night/)Supports:
Depth maps are stored as .npy files:
SyMTRS/
βββ hr/
βββ night/
βββ depth/
βββ lr/
βββ x2/
βββ x4/
βββ x8/
Matching rules:
RS.{id}.png β RS.{id}.pngRS.depth.{id}.npy β RS.{id}.pngfrom datasets import load_dataset
ds = load_dataset("safouaneelg/SyMTRS")
print(ds)
Clone the repo:
git clone https://github.com/safouaneelg/SyMTRS
cd SyMTRS
Install dependencies:
pip install torch torchvision numpy pillow matplotlib tqdm timm datasets
from dataloader import SuperResDataset
dataset = SuperResDataset(
lr_root="/path/to/SyMTRS/lr/x4",
hr_root="/path/to/SyMTRS/hr",
)
from dataloader import DomainAdaptDataset
dataset = DomainAdaptDataset(
day_root="/path/to/SyMTRS/hr",
night_root="/path/to/SyMTRS/night",
paired=True,
)
from dataloader import DepthDataset
dataset = DepthDataset(
depth_root="/path/to/SyMTRS/depth",
hr_root="/path/to/SyMTRS/hr",
)
Entry point:
python train_superresolution.py
Supported models:
Example:
python train_superresolution.py \
--lr_root /path/to/SyMTRS/lr/x4 \
--hr_root /path/to/SyMTRS/hr \
--model srcnn \
--scale 4
Apache 2.0
@misc{elghazoualisymtrs,
title={SyMTRS: Benchmark Multi-Task Synthetic Dataset for Depth, Domain Adaptation and Super-Resolution in Aerial Imagery},
author={Safouane El Ghazouali and Nicola Venturi and Michael Rueegsegger and Umberto Michelucci},
year={2026},
eprint={2604.21801},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2604.21801},
}