遇见数据集

StreetSurfaceVis: a dataset of street-level imagery with annotations of road surface type and quality

收藏
Zenodo2025-01-20 更新2026-05-26 收录
官方服务:

资源简介:

StreetSurfaceVis StreetSurfaceVis is an image dataset containing 9,122 street-level images from Germany with labels on road surface type and quality. The CSV file streetSurfaceVis_v1_0.csv contains all image metadata and four folders contain the image files. All images are available in four different sizes, based on the image width, in 256px, 1024px, 2048px and the original size.Folders containing the images are named according to the respective image size. Image files are named based on the mapillary_image_id. You can find the corresponding publication here: StreetSurfaceVis: a dataset of crowdsourced street-level imagery with semi-automated annotations of road surface type and quality Image metadata Each CSV record contains information about one street-level image with the following attributes: mapillary_image_id: ID provided by Mapillary (see information below on Mapillary) user_id: Mapillary user ID of contributor user_name: Mapillary user name of contributor captured_at: timestamp, capture time of image longitude, latitude: location the image was taken at train: Suggestion to split train and test data. `True` for train data and `False` for test data. Test data contains data from 5 cities which are excluded in the training data. surface_type: Surface type of the road in the focal area (the center of the lower image half) of the image. Possible values: asphalt, concrete, paving_stones, sett, unpaved surface_quality: Surface quality of the road in the focal area of the image. Possible values: (1) excellent, (2) good, (3) intermediate, (4) bad, (5) very bad (see the attached Labeling Guide document for details) Image source Images are obtained from Mapillary, a crowd-sourcing plattform for street-level imagery. More metadata about each image can be obtained via the Mapillary API . User-generated images are shared by Mapillary under the CC-BY-SA License. For each image, the dataset contains the mapillary_image_id and user_name. You can access user information on the Mapillary website by https://www.mapillary.com/app/user/<USER_NAME> and image information by https://www.mapillary.com/app/?focus=photo&pKey=<MAPILLARY_IMAGE_ID> If you use the provided images, please adhere to the terms of use of Mapillary. Instances per class Total number of images: 9,122 excellent good intermediate bad very bad asphalt 971 1697 821 246 - concrete 314 350 250 58 - paving stones 385 1063 519 70 - sett - 129 694 540 - unpaved - - 326 387 303 For modeling, we recommend using a train-test split where the test data includes geospatially distinct areas, thereby ensuring the model's ability to generalize to unseen regions is tested. We propose five cities varying in population size and from different regions in Germany for testing - images are tagged accordingly. Number of test images (train-test split): 776 Inter-rater-reliablility Three annotators labeled the dataset, such that each image was annotated by one person. Annotators were encouraged to consult each other for a second opinion when uncertain.1,800 images were annotated by all three annotators, resulting in a Krippendorff's alpha of 0.96 for surface type and 0.74 for surface quality. Recommended image preprocessing As the focal road located in the bottom center of the street-level image is labeled, it is recommended to crop images to their lower and middle half prior using for classification tasks. This is an exemplary code for recommended image preprocessing in Python: from PIL import Imageimg = Image.open(image_path)width, height = img.sizeimg_cropped = img.crop((0.25 * width, 0.5 * height, 0.75 * width, height)) License CC-BY-SA Citation If you use this dataset, please cite as: Kapp, A., Hoffmann, E., Weigmann, E. et al. StreetSurfaceVis: a dataset of crowdsourced street-level imagery annotated by road surface type and quality. Sci Data 12, 92 (2025). https://doi.org/10.1038/s41597-024-04295-9 @article{kapp_streetsurfacevis_2025, title = {{StreetSurfaceVis}: a dataset of crowdsourced street-level imagery annotated by road surface type and quality}, volume = {12}, issn = {2052-4463}, url = {https://doi.org/10.1038/s41597-024-04295-9}, doi = {10.1038/s41597-024-04295-9}, pages = {92}, number = {1}, journaltitle = {Scientific Data}, shortjournal = {Scientific Data}, author = {Kapp, Alexandra and Hoffmann, Edith and Weigmann, Esther and Mihaljević, Helena}, date = {2025-01-16},} ----------------------------------------------------------------------------------------------------------------------------------------------------------- This is part of the SurfaceAI project at the University of Applied Sciences, HTW Berlin. - Prof. Dr. Helena Mihajlević- Alexandra Kapp- Edith Hoffmann- Esther Weigmann Contact: surface-ai@htw-berlin.de https://surfaceai.github.io/surfaceai/ Funding: SurfaceAI is a mFund project funded by the Federal Ministry for Digital and Transportation Germany.

### StreetSurfaceVis 数据集 StreetSurfaceVis 是一款图像数据集,包含来自德国的9122张街景图像,附带路面类型与路面质量的标注信息。配套的CSV文件 `streetSurfaceVis_v1_0.csv` 包含所有图像元数据,另有四个文件夹用于存储图像文件。所有图像均提供四种基于宽度的尺寸版本:256px、1024px、2048px 以及原始尺寸,文件夹名称与对应图像尺寸一致,图像文件以 `mapillary_image_id` 命名。 您可在此查阅相关研究论文:*StreetSurfaceVis: a dataset of crowdsourced street-level imagery with semi-automated annotations of road surface type and quality* #### 图像元数据 每条CSV记录对应一张街景图像,包含以下属性: 1. `mapillary_image_id`:Mapillary 平台提供的图像ID(详见下文关于Mapillary的说明) 2. `user_id`:贡献者的Mapillary用户ID 3. `user_name`:贡献者的Mapillary用户名 4. `captured_at`:时间戳,即图像拍摄时间 5. `longitude, latitude`:图像拍摄地点的经纬度 6. `train`:训练集与测试集的划分建议。取值为`True`时代表训练集数据,`False`时代表测试集数据。测试集数据来自5座城市,这些城市的样本未纳入训练集。 7. `surface_type`:图像聚焦区域(即图像下半部分中心区域)的路面类型,可选取值包括:沥青路面(asphalt)、水泥混凝土路面(concrete)、铺路砖路面(paving_stones)、块石路面(sett)、未铺装路面(unpaved) 8. `surface_quality`:图像聚焦区域的路面质量,可选取值为:(1) 优秀(excellent)、(2) 良好(good)、(3) 中等(intermediate)、(4) 较差(bad)、(5) 极差(very bad)(详细说明请参阅附带的《标注指南》文档) #### 图像来源 图像源自Mapillary——一款众包街景图像平台。您可通过Mapillary API获取更多图像元数据。用户上传的图像遵循CC-BY-SA许可协议进行共享。 本数据集为每张图像提供了`mapillary_image_id`与`user_name`。您可通过以下链接访问用户信息与图像信息: - 用户信息:`https://www.mapillary.com/app/user/<USER_NAME>` - 图像信息:`https://www.mapillary.com/app/?focus=photo&pKey=<MAPILLARY_IMAGE_ID>` 若使用本数据集提供的图像,请遵守Mapillary的使用条款。 #### 各类别样本数量 总图像数:9122 | 路面类型 | 优秀 | 良好 | 中等 | 较差 | 极差 | |------------------|------|------|------|------|------| | 沥青路面(asphalt) | 971 | 1697 | 821 | 246 | - | | 水泥混凝土路面(concrete) | 314 | 350 | 250 | 58 | - | | 铺路砖路面(paving_stones) | 385 | 1063 | 519 | 70 | - | | 块石路面(sett) | - | 129 | 694 | 540 | - | | 未铺装路面(unpaved) | - | - | 326 | 387 | 303 | 注:表中`-`代表无对应类别样本。 #### 建模建议 在建模时,我们建议采用该训练测试划分方式:测试集包含地理上独立的区域,以此确保模型对未见区域的泛化能力得到验证。我们选取了德国不同地区、人口规模各异的5座城市作为测试集,图像均已做好对应标记。 测试集图像数量(训练测试划分后):776 #### 标注者间信度 本数据集由三名标注者完成标注,每张图像仅由一名标注者独立标注。标注者在存疑时可相互咨询以获取参考意见。其中1800张图像由三名标注者共同标注,最终得到路面类型的克里彭多夫α系数(Krippendorff's alpha)为0.96,路面质量的克里彭多夫α系数为0.74。 #### 推荐的图像预处理方式 由于标注的聚焦路面位于街景图像的底部中心区域,因此在将图像用于分类任务前,建议将图像裁剪至下半边与中半边的区域。 以下为推荐的Python图像预处理示例代码: python from PIL import Image img = Image.open(image_path) width, height = img.size img_cropped = img.crop((0.25 * width, 0.5 * height, 0.75 * width, height)) #### 许可协议 CC-BY-SA #### 引用方式 若您使用本数据集,请按以下方式引用: Kapp, A., Hoffmann, E., Weigmann, E. et al. StreetSurfaceVis: a dataset of crowdsourced street-level imagery annotated by road surface type and quality. Sci Data 12, 92 (2025). https://doi.org/10.1038/s41597-024-04295-9 bibtex @article{kapp_streetsurfacevis_2025, title = {{StreetSurfaceVis}: a dataset of crowdsourced street-level imagery annotated by road surface type and quality}, volume = {12}, issn = {2052-4463}, url = {https://doi.org/10.1038/s41597-024-04295-9}, doi = {10.1038/s41597-024-04295-9}, pages = {92}, number = {1}, journaltitle = {Scientific Data}, shortjournal = {Scientific Data}, author = {Kapp, Alexandra and Hoffmann, Edith and Weigmann, Esther and Mihaljević, Helena}, date = {2025-01-16}, } ### 项目信息 本数据集隶属于柏林应用科技大学(HTW Berlin)的SurfaceAI项目。 - Prof. Dr. Helena Mihaljević - Alexandra Kapp - Edith Hoffmann - Esther Weigmann 联系方式:`surface-ai@htw-berlin.de` 项目官网:https://surfaceai.github.io/surfaceai/ 资助信息:SurfaceAI 是由德国联邦数字与交通部资助的mFund项目。

提供机构:
Zenodo
创建时间:
2024-06-04
二维码
社区交流群
二维码
科研交流群
商业服务