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:    ValueError
Message:      Invalid string class label Deventer-512@d13e878eb597d4fa6b22cdad72f0aa92fcef20a2
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 2157, in _apply_feature_types_on_example
                  encoded_example = features.encode_example(example)
                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 2152, in encode_example
                  return encode_nested_example(self, example)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1437, in encode_nested_example
                  {k: encode_nested_example(schema[k], obj.get(k), level=level + 1) for k in schema}
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1460, in encode_nested_example
                  return schema.encode_example(obj) if obj is not None else None
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1143, in encode_example
                  example_data = self.str2int(example_data)
                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1080, in str2int
                  output = [self._strval2int(value) for value in values]
                            ^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1101, in _strval2int
                  raise ValueError(f"Invalid string class label {value}")
              ValueError: Invalid string class label Deventer-512@d13e878eb597d4fa6b22cdad72f0aa92fcef20a2

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.

Deventer-512

Dataset Summary

Deventer-512 is the benchmark dataset introduced in our paper ACPV-Net: All-Class Polygonal Vectorization for Seamless Vector Map Generation from Aerial Imagery. It is the first public benchmark for All-Class Polygonal Vectorization (ACPV), a task that aims to generate a complete vector map from aerial imagery in a single run by producing polygons for all land-cover classes with shared boundaries and without gaps or overlaps.

The dataset contains 2,148 orthophoto tiles of size 512 x 512 pixels, together with raster masks and per-class COCO-style polygon annotations. It is designed for standardized evaluation of semantic fidelity, geometric accuracy, vertex efficiency, per-class topological fidelity, and global topological consistency.

The benchmark is organized around five semantically meaningful urban land-cover categories:

  • building
  • road
  • vegetation
  • water
  • unvegetated

Supported Tasks

Deventer-512 supports the following research tasks:

  • All-Class Polygonal Vectorization (ACPV): seamless multi-class vector map generation over the full image domain with shared boundaries and no gaps or overlaps
  • Multi-class semantic segmentation: dense semantic prediction using the provided raster masks
  • Single-class polygonal vectorization: category-wise polygon extraction such as building outline extraction or road region vectorization
  • Instance segmentation and object detection: supported for categories and settings where COCO-style polygon annotations are appropriate

Data Composition

Each split follows the same directory structure:

deventer_512/
β”œβ”€β”€ train/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   └── annotations/
β”œβ”€β”€ val/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   └── annotations/
└── test/
    β”œβ”€β”€ images/
    β”œβ”€β”€ masks/
    └── annotations/

Splits

The official split sizes are:

Split Number of tiles
train 1716
val 212
test 220

Total: 2,148 image tiles.

Files in Each Split

  • images/: RGB orthophoto tiles in PNG format
  • masks/: raster semantic masks aligned with the image tiles
  • annotations/: per-class COCO-style polygon annotations

The annotations/ folder contains one JSON file per class:

  • building.json
  • road.json
  • vegetation.json
  • water.json
  • unvegetated.json

Annotation Format

Polygon annotations are stored in standard COCO-style JSON format. Each annotation file corresponds to a single semantic category and contains:

  • categories
  • images
  • annotations

Each images entry provides:

  • id
  • file_name
  • height
  • width

Each annotations entry provides:

  • id
  • image_id
  • category_id
  • segmentation
  • area
  • bbox
  • iscrowd

Citation

If you use Deventer-512 in your research, please cite:

@misc{jiao2026acpvnetallclasspolygonalvectorization,
  title={ACPV-Net: All-Class Polygonal Vectorization for Seamless Vector Map Generation from Aerial Imagery},
  author={Weiqin Jiao and Hao Cheng and George Vosselman and Claudio Persello},
  year={2026},
  eprint={2603.16616},
  archivePrefix={arXiv},
  primaryClass={cs.CV},
  url={https://arxiv.org/abs/2603.16616},
}
Downloads last month
63

Paper for HeinzJiao/Deventer-512