Dataset Viewer (First 5GB)
Auto-converted to Parquet Duplicate
Search is not available for this dataset
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 560277966 bytes, limit is 300000000 bytes Make sure that 1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
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: Synthetic Multi-Task Remote Sensing Dataset

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:

  • High-resolution RGB images (2048Γ—2048)
  • Multi-scale low-resolution images
  • Day/Night domain pairs
  • Ground-truth depth maps

Project Page

image

πŸ”— Links


🌍 Overview

SyMTRS enables multi-task learning for:

  • Super-resolution
  • Monocular depth estimation
  • Domain adaptation (day ↔ night)
  • Image-to-image translation
  • Generative aerial modeling

Unlike real aerial datasets, SyMTRS provides:

  • Pixel-perfect alignment across modalities
  • Accurate depth ground truth
  • Controlled lighting and environmental variation

🧠 Supported Tasks

1. Super-Resolution

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

2. Image-to-Image Translation / Domain Adaptation

Each scene includes:

  • Daytime image (hr/)
  • Nighttime image (night/)

Supports:

  • CycleGAN (unpaired)
  • pix2pix (paired)

3. Monocular Depth Estimation

Depth maps are stored as .npy files:

  • Directly rendered from UE5
  • Perfectly aligned with RGB images

πŸ“‚ Dataset Structure


SyMTRS/
β”œβ”€β”€ hr/
β”œβ”€β”€ night/
β”œβ”€β”€ depth/
└── lr/
β”œβ”€β”€ x2/
β”œβ”€β”€ x4/
└── x8/

Matching rules:

  • RS.{id}.png ↔ RS.{id}.png
  • RS.depth.{id}.npy ↔ RS.{id}.png

πŸ“¦ Loading the Dataset

Using πŸ€— Datasets

from datasets import load_dataset

ds = load_dataset("safouaneelg/SyMTRS")
print(ds)

πŸ”§ Official Dataloaders (Recommended)

Clone the repo:

git clone https://github.com/safouaneelg/SyMTRS
cd SyMTRS

Install dependencies:

pip install torch torchvision numpy pillow matplotlib tqdm timm datasets

Super-Resolution

from dataloader import SuperResDataset

dataset = SuperResDataset(
    lr_root="/path/to/SyMTRS/lr/x4",
    hr_root="/path/to/SyMTRS/hr",
)

Domain Adaptation

from dataloader import DomainAdaptDataset

dataset = DomainAdaptDataset(
    day_root="/path/to/SyMTRS/hr",
    night_root="/path/to/SyMTRS/night",
    paired=True,
)

Depth Estimation

from dataloader import DepthDataset

dataset = DepthDataset(
    depth_root="/path/to/SyMTRS/depth",
    hr_root="/path/to/SyMTRS/hr",
)

πŸš€ Training Code

Entry point:

python train_superresolution.py

Supported models:

  • SRCNN
  • Autoencoder
  • SRGAN
  • SwinIR

Example:

python train_superresolution.py \
  --lr_root /path/to/SyMTRS/lr/x4 \
  --hr_root /path/to/SyMTRS/hr \
  --model srcnn \
  --scale 4

πŸ§ͺ Research Directions

  • Multi-task learning (SR + depth)
  • Synthetic-to-real transfer
  • Domain-robust aerial perception
  • Generative aerial world models
  • Remote sensing data augmentation

⚠️ Limitations

  • Synthetic dataset β†’ domain gap with real-world imagery
  • Requires adaptation for real satellite/drone deployment

πŸ“œ License

Apache 2.0


πŸ“– Citation

@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}, 
}

Downloads last month
137

Paper for safouaneelg/SyMTRS