Datasets:

ArXiv:
Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    UnidentifiedImageError
Message:      cannot identify image file <_io.BytesIO object at 0x7efd6a85b150>
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
                  return get_rows(
                         ^^^^^^^^^
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
                  rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2240, in __iter__
                  example = _apply_feature_types_on_example(
                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2159, in _apply_feature_types_on_example
                  decoded_example = features.decode_example(encoded_example, token_per_repo_id=token_per_repo_id)
                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 2204, in decode_example
                  column_name: decode_nested_example(feature, value, token_per_repo_id=token_per_repo_id)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1508, in decode_nested_example
                  return schema.decode_example(obj, token_per_repo_id=token_per_repo_id) if obj is not None else None
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/image.py", line 190, in decode_example
                  image = PIL.Image.open(bytes_)
                          ^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/PIL/Image.py", line 3498, in open
                  raise UnidentifiedImageError(msg)
              PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x7efd6a85b150>

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.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

AeroScene: Progressive Scene Synthesis for Aerial Robotics (ICRA 2026)

Nghia Vu

[Project Page] [Paper]

Abstract

Generative models have shown substantial impact across multiple domains, their potential for scene synthesis remains underexplored in robotics. This gap is more evident in drone simulators, where simulation environments still rely heavily on manual efforts, which are time-consuming to create and difficult to scale. In this work, we introduce AeroScene, a hierarchical diffusion model for progressive 3D scene synthesis. Our approach leverages hierarchy-aware tokenization and multi-branch feature extraction to reason across both global layouts and local details, ensuring physical plausibility and semantic consistency. This makes AeroScene particularly suited for generating realistic scenes for aerial robotics tasks such as navigation, landing, and perching. We demonstrate its effectiveness through extensive experiments on our newly collected dataset and a public benchmark, showing that AeroScene significantly outperforms prior methods. Furthermore, we use AeroScene to generate a large-scale dataset of over 1,000 physics-ready, high fidelity 3D scenes that can be directly integrated into NVIDIA Isaac Sim. Finally, we illustrate the utility of these generated environments on downstream drone navigation tasks.

We introduce AeroScene, a progressive scene synthesis method and dataset for aerial robotics.

AeroScene Dataset

[Download] The dataset can be downloaded here

The structure of dataset is described below:

  • sample_outdoor: contains scene samples (usd file) and their metadata (json) file.
  • props_mesh: Mesh file of outdoor buildings
  • island_mesh: Floor mesh file in each scene
  • indoor_rivermark: contains asset of indoor objects. We reuse the 3D-FRONT dataset to recreate our indoor assets.
  • dsready_content: contains references of building objects.

Each json file follows the structure below:

{
    'id': # sample id , 
    'mesh_floor': # mesh floor id, 
    'outdoor_scene': [
        'name': object id , 
        'translation': translation vector, 
        'rotation': rotation vector, 
        'scale': scale vector, 
        'indoor': null or list of indoor objects, containing translation, rotation and scale infor 
    ]
}

Visualizing

We use Isaac Sim to visualize the dataset.

Launch Isaac Sim and open a .usd file, for example sample_outdoor/island_2/gen_sample_0.usd. Once loaded, the scene will appear as shown below:

Figure

The scene includes an outdoor floor along with several outdoor buildings (props). To examine the indoor assets of each building, navigate to the corresponding asset path and open the associated asset files.

Figure

You can hide the outdoor assets to better inspect the indoor components of each building.

Figure Figure

Additionally, each building (including both indoor and outdoor components) has been extracted into a single mesh in .glb format, stored in the props_mesh directory. The floor mesh for each scene is also provided separately in the island_mesh directory.

Progress

  • AeroScene Annotation for Indoor-Outdoor Synchronization: ✅
  • Annotation for Drone Landing: TBD

Citation

If you find this work interesting and helpful, please consider citing

@inproceedings{vu2026AeroScene,
    title        = {AeroScene: Progressive Scene Synthesis for Aerial Robotics},
    author       = {Vu, Nghia and Do, Tuong and Tran, Dzung and Nguyen, Binh X and Nguyen, Hoan and Tjiputra, Erman and Tran, Quang D and Nguyen, Hai and Nguyen, Anh},
    year         = {2026},
    booktitle    = {ICRA},
}

License

MIT License

Downloads last month
65

Papers for aiozai/AeroScene