Pith. sign in

REVIEW 3 major objections 4 minor 159 references

ZenSVI: An Open-Source Software for the Integrated Acquisition, Processing and Analysis of Street View Imagery Towards Scalable Urban Science

T0 review · 3 major / 4 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read ZenSVI integrates the full street view imagery workflow into one open-source pipeline.

desk verdict A solid, genuinely integrative software paper whose case study contains a reversible but embarrassing blur-filter typo that should be fixed before publication. read the letter →

arxiv 2412.18641 v3 pith:6EFIBOLL submitted 2024-12-24 cs.CV

classification cs.CV
keywords Street-levelimageryUrbananalyticsPythonpackageComputervisionFAIRReproducibilityCrowdsourcedOpen-sourcesoftware
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

ZenSVI is an open-source Python package that claims to integrate the whole street view imagery (SVI) workflow—downloading, metadata analysis, image transformation, computer vision feature extraction, visualization, and export—into one modular tool. The authors position it as the first integrated software of its kind for SVI and urban imagery research, arguing that current practice is fragmented into isolated, single-purpose scripts that hamper reproducibility and exclude researchers without strong programming skills. The paper demonstrates the package end-to-end on Singapore, downloading 932,596 crowdsourced images, filtering them to 270,864 daytime images of acceptable quality, extracting urban features, and clustering them into five distinct streetscape types. If the central claim holds, a researcher with minimal code could go from a place name to cleaned, analyzed, and mapped street-level indicators, which would make SVI studies more transparent and comparable across cities.

What carries the argument

The load-bearing mechanism is the modular five-subpackage architecture with standardized inputs and outputs. Download wraps crowdsourced and city-provided APIs with parallel processing and checkpoints; Metadata Analysis augments platform metadata with derived indicators such as season, day/night status, relative camera angle, speed, and H3 hexagon identifiers at image, street, and grid levels; Transformation converts panoramas into perspective and fisheye views and generates point clouds from depth estimates; Computer Vision exposes pre-trained segmentation, classification, object detection, depth estimation, embedding, and low-level feature models behind a common interface; Visualization produces point, line, and hexagonal maps plus distribution plots. The case study chains these modules, using a Shannon-index visual complexity threshold, Laplacian sharpness, speed, lighting, view direction, and platform filters before k-means clustering with k=5.

What would settle it

Take a stratified sample of crowdsourced street view images from a new city, run ZenSVI's full pipeline, and compare its quality-suitability decisions, segmentation ratios, perception scores, and scene labels against manual annotations or reference measurements; material disagreement on held-out images would show that the integrated pipeline's reliability depends on the wrapper assumptions rather than being guaranteed by the package.

Watch

Extended reading notes

Core claim

On the paper's own terms, the discovery is a design and implementation result: an integrated, free, and open-source software framework that covers the entire SVI analysis pipeline, where no such integrated tool previously existed for street-level or urban imagery. The package standardizes inputs and outputs across five sub-packages—download, metadata analysis, transformation, computer vision, and visualization—so that established computer vision models and platform APIs can be chained into a single reproducible workflow. The Singapore case study functions as a proof that the integrated pipeline works at scale: 932,596 images were downloaded, quality-filtered to 270,864 suitable daytime images, and clustered into five interpretable urban streetscape categories with mapped spatial patterns.

Load-bearing premise

The load-bearing premise is that wrapping established platform APIs and pre-trained computer vision models without revalidating them on the target crowdsourced images preserves their performance and therefore yields outputs trustworthy enough for downstream urban science.

Editorial extensions

If this is right

  • A researcher can reproduce a full SVI study from a single documented pipeline instead of stitching together ad hoc scripts, directly addressing the reproducibility gap the paper identifies.
  • Comparisons across cities and across crowdsourced versus commercial imagery become more feasible because data acquisition, cleaning, and feature extraction share one standardized interface.
  • Researchers without deep programming or deep-learning expertise can apply state-of-the-art segmentation, perception, scene classification, and object detection to street-level imagery, lowering the entry barrier the paper highlights.
  • The modular design means new imagery platforms, new computer vision models, and new visualization types can be added without rewriting the pipeline, so the tool can grow with the field.
  • Outputs saved as CSV and standard geospatial files allow downstream analysis in other software, so ZenSVI can act as a preprocessing and feature-extraction layer in larger workflows.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If ZenSVI becomes a widely used standard, the field may converge on common cleaning and feature-extraction protocols, making published SVI-derived indicators more directly comparable across studies; the paper points toward this potential but does not itself establish cross-city validity.
  • The wrapper-based integration inherits the biases and failure modes of the pre-trained models and platform APIs without revalidating them on target crowdsourced data, so a careful user should benchmark model outputs on a local sample before trusting downstream indicators.
  • The case study's thresholds (Laplacian variance above 100, visual complexity at least 1.0, speed at most 200 km/h, and k=5) are set without sensitivity analysis, and missing metadata is treated as suitable to avoid data loss; testing how cluster results and suitability flags shift with these choices would quantify the pipeline's reliability.
  • The same modular pipeline could extend beyond street-level imagery to satellite, aerial, and CCTV imagery, as the authors note as future work, but that would require new download and transformation modules and is not demonstrated here.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper presents ZenSVI, an open-source Python package that integrates the acquisition, processing, transformation, computer vision analysis, and visualization of street view imagery (SVI). The authors describe the package's modular architecture, compare it with existing urban-analysis and SVI tools, and demonstrate its functionality through a case study in Singapore that applies quality filtering and k-means clustering on crowdsourced Mapillary imagery.

Significance. If the software performs as described, ZenSVI fills a genuine gap in SVI research by providing a single, well-documented, open-source workflow that could lower technical barriers for researchers and improve reproducibility. The paper contributes a detailed comparison of existing tools, a clear description of the package's five sub-packages, extensive online documentation, and a concrete case study. A particular strength is the reuse of established computer vision models with transparent citations, which supports the reproducibility claim. However, the case study as written contains an apparent error in the blur-detection filter and lacks sensitivity analysis for key thresholds; these issues directly affect the credibility of the demonstration and, in turn, the paper's central claim of a reliable, reproducible end-to-end workflow.

major comments (3)
  1. [Section 4.1] The sharpness filter states that "Blurry images with Laplacian variance over 100 were removed." In standard focus/quality assessment, the variance of the Laplacian is a focus measure: low variance indicates blur, while high variance indicates sharp imagery. As written, this filter would discard the sharpest images and retain blurry ones, contradicting the stated goal of removing unsuitable imagery and the claim that the filtering ensures a high-quality dataset. If this is a typographical error and the implemented test is variance below 100, the text must be corrected because a user following the paper would otherwise apply the inverse filter, compromising reproducibility. Either way, the case study's quality-assessment demonstration is unreliable as written.
  2. [Sections 4.1-4.2] The quality thresholds (Laplacian variance, visual complexity score of 1.0, device speed at most 200 km/h) and the number of clusters (k=5) are set without sensitivity analysis. The paper mentions that the elbow method suggested a range of possible k values, but it does not report how the clustering results vary across that range, nor how the filtering outcomes change with the thresholds. Since the case study is the primary evidence for the pipeline's effectiveness, the absence of robustness analysis leaves the reliability of the integrated workflow unquantified.
  3. [Section 4.1] The statement "For each criterion, missing values (NA) were treated as suitable to avoid excessive data loss" means that images with missing metadata or missing classification outputs are automatically retained. This treatment biases the suitability flag toward retaining incomplete records and could undermine the claim that the filtering approach "ensures a consistent and high-quality dataset." The paper does not report how many images had missing values for each criterion, nor does it analyze the potential impact of this choice on the final 270,864-image dataset.
minor comments (4)
  1. [Table 5] The row for the Mask2Former model reports four accuracy values with ambiguous associations: "Achieves mean IoU of 84.5% (semantic) and 64.7% (panoptic) for semantic segmentation and 66.6% and 45.5% for panoptic segmentation." Please restructure the table to clearly map each metric (semantic vs. panoptic, Cityscapes vs. Mapillary Vistas) to its corresponding value.
  2. [Section 1] The claim that "This study is the first to create such an integrated software not only in SVI research but also in urban imagery" is strong and not fully substantiated by the comparison in Table 2, which lists several tools with overlapping (if narrower) functionality. The authors may wish to soften the claim or provide a more systematic basis for it.
  3. [Section 3.3] The description of the equisolid angle projection states that "its pixel ratio directly corresponds to solid angles from a viewpoint," which is only exactly true under the ideal equisolid-angle model. The wording could be clarified to avoid overstating the geometric accuracy.
  4. [General] The manuscript uses "sub-package" and "subpackage" inconsistently; please standardize the spelling throughout.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the paper's claims concern package functionality, demonstrated with independently sourced models and a case study; self-citations are contextual and not load-bearing.

full rationale

ZenSVI is a software/engineering contribution, not a derivational result. The central claim—that an integrated open-source SVI workflow exists and operates as described—is evidenced by the released code, documentation, unit tests, and a Singapore case study. The computer vision models are imported from external publications (Cheng et al. 2022; Dubey et al. 2016; Zhou et al. 2017; Ranftl et al. 2021; Yang et al. 2024) and from the authors' prior Global Streetscapes work (Hou et al. 2024); citing and wrapping these models does not make ZenSVI's functionality identical to its inputs. The case-study thresholds (Laplacian variance >100, visual complexity >=1.0, speed <=200 km/h, k=5) are analytic choices, not parameters fitted to the demonstration and then renamed as predictions. Self-citations (e.g., Biljecki and Ito 2021; Hou et al. 2024) are contextual and non-load-bearing for the package's existence or utility. One non-circular concern: the written blur filter (Section 4.1: 'Blurry images with Laplacian variance over 100 were removed') appears inverted relative to standard blur detection, which would undermine reproducibility if not corrected; however, this is a correctness issue, not circularity.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The paper introduces no new theoretical entities. The free parameters are case-study thresholds and cluster count, none of which affect the software's core functionality but do affect the demonstration's reliability. The axioms are domain assumptions about external data sources and pre-trained models.

free parameters (4)
  • Laplacian variance threshold = 100
    Set as a sharpness cutoff in the case study's quality filtering with no sensitivity analysis or justification.
  • Visual complexity threshold = 1.0
    Minimum Shannon index used to filter images; arbitrary cutoff in the case study.
  • Device speed threshold = 200 km/h
    Used to remove outliers such as airplane images; chosen by hand without robustness testing.
  • Number of clusters (k) = 5
    Selected via a combination of elbow method and qualitative interpretation, not a rigorous model selection.
assumptions (4)
  • domain assumption Mapillary and KartaView provide sufficient coverage and metadata for city-scale street view analysis.
    The case study and the package's download sub-package rely on these platforms' data quality and availability, which is not validated in the paper.
  • domain assumption Pre-trained computer vision models (Mask2Former, Places365, Place Pulse, Global Streetscapes, etc.) generalize to new crowdsourced SVI without fine-tuning.
    Section 3.4 states models are integrated 'maintaining their original architectures and parameters' to ensure reproducibility, but no revalidation on the target data is performed.
  • domain assumption OSMnx and OpenStreetMap road network data are accurate enough for matching SVI to streets and generating sampling points.
    Used for boundary retrieval and street network operations in the download and metadata sub-packages.
  • standard math Standard algorithms (k-means, Shannon index, cosine distance, edge detection kernels) behave as documented.
    These are well-established techniques used without modification.

how reviews work

0 comments
Cite this review

Pith. "Pith review of ZenSVI: An Open-Source Software for the Integrated Acquisition, Processing and Analysis of Street View Imagery Towards Scalable Urban Science." pith.science (2026). https://pith.science/paper/6EFIBOLL

@misc{pith2026241218641,
  author       = {Pith},
  title        = {Pith review of: ZenSVI: An Open-Source Software for the Integrated Acquisition, Processing and Analysis of Street View Imagery Towards Scalable Urban Science},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/6EFIBOLL}},
  note         = {Machine review of arXiv:2412.18641}
}
read the original abstract

Street view imagery (SVI) has been instrumental in many studies in the past decade to understand and characterize street features and the built environment. Researchers across a variety of domains, such as transportation, health, architecture, human perception, and infrastructure have employed different methods to analyze SVI. However, these applications and image-processing procedures have not been standardized, and solutions have been implemented in isolation, often making it difficult for others to reproduce existing work and carry out new research. Using SVI for research requires multiple technical steps: accessing APIs for scalable data collection, preprocessing images to standardize formats, implementing computer vision models for feature extraction, and conducting spatial analysis. These technical requirements create barriers for researchers in urban studies, particularly those without extensive programming experience. We developed ZenSVI, a free and open-source Python package that integrates and implements the entire process of SVI analysis, supporting a wide range of use cases. Its end-to-end pipeline includes downloading SVI from multiple platforms (e.g., Mapillary and KartaView) efficiently, analyzing metadata of SVI, applying computer vision models to extract target features, transforming SVI into different projections (e.g., fish-eye and perspective) and different formats (e.g., depth map and point cloud), visualizing analyses with maps and plots, and exporting outputs to other software tools. We demonstrated its use in Singapore through a case study of data quality assessment and clustering analysis in a streamlined manner. Our software improves the transparency, reproducibility, and scalability of research relying on SVI and supports researchers in conducting urban analyses efficiently. Its modular design facilitates extensions of the package for new use cases.

Figures

Figures reproduced from arXiv: 2412.18641 by the authors.

Figure 1
Figure 1. Overview of the framework of ZenSVI package, consisting of five sub-packages: 1) [PITH_FULL_IMAGE:figures/full_fig_p010_1.png] view at source ↗
Figure 2
Figure 2. A matrix of maps representing various metadata. Columns show three different types [PITH_FULL_IMAGE:figures/full_fig_p013_2.png] view at source ↗
Figure 3
Figure 3. This figure illustrates different configurations of transformation from panorama SVI to [PITH_FULL_IMAGE:figures/full_fig_p013_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Example of depth estimation for a Mapillary SVI using the Depth Anything model and the [PITH_FULL_IMAGE:figures/full_fig_p015_4.png]
Figure 5
Figure 5. Figure 5: An example of scores and indicators on the right computed for the image on the left. [PITH_FULL_IMAGE:figures/full_fig_p016_5.png]
Figure 6
Figure 6. Figure 6: Panoptic segmentation results of five Mapillary images using Cityscapes and Mapillary [PITH_FULL_IMAGE:figures/full_fig_p016_6.png]
Figure 7
Figure 7. Figure 7: Image samples from Mapillary evaluated using human perception models, ranked from [PITH_FULL_IMAGE:figures/full_fig_p019_7.png]
Figure 8
Figure 8. Figure 8: Places365 scene classification examples in five different settings: highway, residential [PITH_FULL_IMAGE:figures/full_fig_p020_8.png]
Figure 9
Figure 9. Figure 9: This figure shows examples of SVI classified into different conditions, under which they [PITH_FULL_IMAGE:figures/full_fig_p021_9.png]
Figure 10
Figure 10. Figure 10: Extracting image embeddings from pre-trained Models. The image embeddings are [PITH_FULL_IMAGE:figures/full_fig_p022_10.png]
Figure 11
Figure 11. Figure 11: Illustration of image embeddings in embedding space. Each image can be represented [PITH_FULL_IMAGE:figures/full_fig_p023_11.png]
Figure 12
Figure 12. Figure 12: Examples of how our visualization sub-package can be used to plot maps, histograms, [PITH_FULL_IMAGE:figures/full_fig_p025_12.png]
Figure 13
Figure 13. Figure 13: A map of suitable SVI points in Singapore downloaded from Mapillary. The color [PITH_FULL_IMAGE:figures/full_fig_p028_13.png]
Figure 14
Figure 14. Figure 14: Representative street-level images and their corresponding feature profiles for the five [PITH_FULL_IMAGE:figures/full_fig_p030_14.png]
Figure 15
Figure 15. Figure 15: Spatial distribution of the five visual clusters across Singapore. The clusters show distinct [PITH_FULL_IMAGE:figures/full_fig_p031_15.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

159 extracted references · 32 canonical work pages

  1. [1]

    Effectiveness of Deep Image Embedding Clustering Methods on Tabular Data

    author Abrar, S. , author Sekmen, A. , author Samad, M.D. , year 2023 . title Effectiveness of Deep Image Embedding Clustering Methods on Tabular Data . :10.48550/arXiv.2212.14111, arXiv:2212.14111 http://arxiv.org/abs/2212.14111

  2. [2]

    , author Jiang, G

    author Ai, D. , author Jiang, G. , author Siew Kei, L. , author Li, C. , year 2018 . title Automatic Pixel-Level Pavement Crack Detection Using Information of Multi-Scale Neighborhoods . journal IEEE Access volume 6 , pages 24452--24463 . :10.1109/ACCESS.2018.2829347

  3. [3]

    , author Homma, R

    author Aikoh, T. , author Homma, R. , author Abe, Y. , year 2023 . title Comparing conventional manual measurement of the green view index with modern automatic methods using google street view and semantic segmentation . journal Urban Forestry & Urban Greening volume 80 , pages 127845

  4. [4]

    , author Gonz \'a lez, M

    author Alhasoun, F. , author Gonz \'a lez, M. , year 2019 . title Streetify: using street view imagery and deep learning for urban streets development , in: booktitle 2019 IEEE International Conference on Big Data (Big Data) , organization IEEE . pp. pages 2001--2006

  5. [5]

    , author Maeda, H

    author Arya, D. , author Maeda, H. , author Ghosh, S.K. , author Toshniwal, D. , author Mraz, A. , author Kashiyama, T. , author Sekimoto, Y. , year 2021 . title Deep learning-based road damage detection and classification for multiple countries . journal Automation in Construction volume 132 , pages 103935 . :10.1016/j.autcon.2021.103935

  6. [6]

    , author Lusk, A

    author Asgarzadeh, M. , author Lusk, A. , author Koga, T. , author Hirate, K. , year 2012 . title Measuring oppressiveness of streetscapes . journal Landsc. Urban Plan. volume 107 , pages 1--11

  7. [7]

    , author Adams, B

    author Bahrehdar, A.R. , author Adams, B. , author Purves, R.S. , year 2020 . title Streets of london: Using flickr and openstreetmap to build an interactive image of the city . journal Computers, Environment and Urban Systems volume 84 , pages 101524

  8. [8]

    , author Sawhney, H.S

    author Bansal, M. , author Sawhney, H.S. , author Cheng, H. , author Daniilidis, K. , year 2011 . title Geo-localization of street views with aerial image databases , in: booktitle Proceedings of the 19th ACM international conference on Multimedia , pp. pages 1125--1128

Show all 159 references
  1. [9]

    , author Kanhema, T

    author Bendixen, M. , author Kanhema, T. , author Iversen, L.L. , year 2023 . title Putting africa on the map . journal Nature Africa :10.1038/d44148-023-00204-1

  2. [10]

    , author Ito, K

    author Biljecki, F. , author Ito, K. , year 2021 . title Street view imagery in urban analytics and GIS : A review . journal Landscape and Urban Planning volume 215 , pages 104217 . :10.1016/j.landurbplan.2021.104217

  3. [11]

    , author Stoter, J

    author Biljecki, F. , author Stoter, J. , author Ledoux, H. , author Zlatanova, S. , author C \"o ltekin, A. , year 2015 . title Applications of 3D City Models : State of the Art Review . journal ISPRS International Journal of Geo-Information volume 4 , pages 2842--2889 . :10....

  4. [12]

    , author Zhao, T

    author Biljecki, F. , author Zhao, T. , author Liang, X. , author Hou, Y. , year 2023 . title Sensitivity of measuring the urban form and greenery using street-level imagery: A comparative study of approaches and visual perspectives . journal International Journal of Applied E...

  5. [13]

    , year 2017

    author Boeing, G. , year 2017 . title OSMnx : New methods for acquiring, constructing, analyzing, and visualizing complex street networks . journal Computers, Environment and Urban Systems volume 65 , pages 126--139 . :10.1016/j.compenvurbsys.2017.05.004

  6. [14]

    , author Lang, I.M

    author Bromm, K.N. , author Lang, I.M. , author Twardzik, E.E. , author Antonakos, C.L. , author Dubowitz, T. , author Colabianchi, N. , year 2020 . title Virtual audits of the urban streetscape: Comparing the inter-rater reliability of GigaPan to Google Street View . journal ...

  7. [15]

    , author Abdel-Aty, M

    author Cai, Q. , author Abdel-Aty, M. , author Zheng, O. , author Wu, Y. , year 2022 . title Applying machine learning and google street view to explore effects of drivers’ visual environment on traffic safety . journal Transportation research part C: emerging technologies vol...

  8. [16]

    author Callau, A. \`A . , author Albert, M.Y.P. , author Rota, J.J. , author Gin \'e , D.S. , year 2019 . title Landscape characterization using photographs from crowdsourced platforms: content analysis of social media photographs . journal Open Geosciences volume 11 , pages 558--571

  9. [17]

    , author Both, A

    author Campbell, A. , author Both, A. , author Sun, Q.C. , year 2019 . title Detecting and mapping traffic signs from google street view images using deep learning and gis . journal Computers, Environment and Urban Systems volume 77 , pages 101350

  10. [18]

    , year 1986

    author Canny, J. , year 1986 . title A Computational Approach to Edge Detection . journal IEEE Transactions on Pattern Analysis and Machine Intelligence volume PAMI-8 , pages 679--698 . :10.1109/TPAMI.1986.4767851

  11. [19]

    , author Zhu, J

    author Cao, R. , author Zhu, J. , author Tu, W. , author Li, Q. , author Cao, J. , author Liu, B. , author Zhang, Q. , author Qiu, G. , year 2018 . title Integrating Aerial and Street View Images for Urban Land Use Classification . journal Remote Sensing volume 10 , pages 1553...

  12. [20]

    , author Smedley, A.R.D

    author Carrasco-Hernandez, R. , author Smedley, A.R.D. , author Webb, A.R. , year 2015 . title Using urban canyon geometries obtained from google street view for atmospheric studies: Potential applications in the calculation of street level total shortwave irradiances . journa...

  13. [21]

    , year 2015

    author Cavallo, M. , year 2015 . title 3d city reconstruction from google street view . https://api.semanticscholar.org/CorpusID:26811584

  14. [22]

    , author Zhou, C

    author Chen, J. , author Zhou, C. , author Li, F. , year 2020 a. title Quantifying the green view indicator for assessing urban greening quality: An analysis based on Internet-crawling street view data . journal Ecological Indicators volume 113 , pages 106192 . :10.1016/j.ecol...

  15. [23]

    , author Arribas-Bel, D

    author Chen, M. , author Arribas-Bel, D. , author Singleton, A. , year 2020 b. title Quantifying the characteristics of the local urban environment through geotagged flickr photographs and image recognition . journal ISPRS International Journal of Geo-Information volume 9 , pages 264

  16. [24]

    , author Biljecki, F

    author Chen, S. , author Biljecki, F. , year 2023 . title Automatic assessment of public open spaces using street view imagery . journal Cities volume 137 , pages 104329

  17. [25]

    , author Meng, Q

    author Chen, X. , author Meng, Q. , author Hu, D. , author Zhang, L. , author Yang, J. , year 2019 . title Evaluating greenery around streets using baidu panoramic street view images and the panoramic green view index . journal Forests volume 10 , pages 1109

  18. [26]

    , author Misra, I

    author Cheng, B. , author Misra, I. , author Schwing, A.G. , author Kirillov, A. , author Girdhar, R. , year 2022 . title Masked-attention Mask Transformer for Universal Image Segmentation . :10.48550/arXiv.2112.01527, arXiv:2112.01527 http://arxiv.org/abs/2112.01527

  19. [27]

    , author Labib, S.M

    author Danish, M. , author Labib, S.M. , author Ricker, B. , author Helbich, M. , year 2025 . title A citizen science toolkit to collect human perceptions of urban environments using open street view images . journal Computers, Environment and Urban Systems volume 116 , pages ...

  20. [28]

    , author Ren, T.I

    author de Mesquita , R.G. , author Ren, T.I. , author Mello, C.A.B. , author Silva, M.L.P.C. , year 2022 . title Street pavement classification based on navigation through street view imagery . journal AI & SOCIETY :10.1007/s00146-022-01520-0

  21. [29]

    , author Dorini, L.B

    author de Oliveira , W.B. , author Dorini, L.B. , author Minetto, R. , author Silva, T.H. , year 2020 . title OutdoorSent : Sentiment Analysis of Urban Outdoor Images by Using Semantic and Deep Features . journal ACM Transactions on Information Systems volume 38 , pages 1--28 ...

  22. [30]

    , author Naik, N

    author Dubey, A. , author Naik, N. , author Parikh, D. , author Raskar, R. , author Hidalgo, C.A. , year 2016 . title Deep learning the city: Quantifying urban perception at a global scale , in: booktitle Computer Vision--ECCV 2016: 14th European Conference, Amsterdam, The Net...

  23. [31]

    , author Biljecki, F

    author Fan, Z. , author Biljecki, F. , year 2024 . title Nighttime Street View Imagery : A new perspective for sensing urban lighting landscape . journal Sustainable Cities and Society volume 116 , pages 105862 . :10.1016/j.scs.2024.105862

  24. [32]

    , author Zhang, F

    author Fan, Z. , author Zhang, F. , author Loo, B.P.Y. , author Ratti, C. , year 2023 . title Urban visual intelligence: Uncovering hidden city profiles with street view images . journal Proceedings of the National Academy of Sciences volume 120 , pages e2220417120 . :10.1073/...

  25. [33]

    , author Zeng, L

    author Fang, F. , author Zeng, L. , author Li, S. , author Zheng, D. , author Zhang, J. , author Liu, Y. , author Wan, B. , year 2022 . title Spatial context-aware method for urban land use classification using street view images . journal ISPRS Journal of Photogrammetry and R...

  26. [34]

    , author Ito, K

    author Fujiwara, K. , author Ito, K. , author Ignatius, M. , author Biljecki, F. , year 2024 . title A panorama-based technique to estimate sky view factor and solar irradiance considering transmittance of tree canopies . journal Build. Environ. volume 266 , pages 112071

  27. [35]

    , author Guo, H

    author Gao, M. , author Guo, H. , author Liu, L. , author Zeng, Y. , author Liu, W. , author Liu, Y. , author Xing, H. , year 2024 . title Integrating street view imagery and taxi trajectory for identifying urban function of street space . journal Geo-spatial Information Scien...

  28. [36]

    , author Ramirez, J.M

    author Garcia-Gil, G. , author Ramirez, J.M. , year 2019 . title Fish-eye camera and image processing for commanding a solar tracker . journal Heliyon volume 5 , pages e01398

  29. [37]

    , author Woods, R.E

    author Gonzalez, R.C. , author Woods, R.E. , year 2006 . title Digital Image Processing (3rd Edition ) . publisher Prentice-Hall, Inc

  30. [38]

    , author Zhang, C

    author Gou, A. , author Zhang, C. , author Wang, J. , year 2022 . title Study on the identification and dynamics of green vision rate in jing’an district, shanghai based on deeplab v3+ model . journal Earth Science Informatics volume 15 , pages 163--181

  31. [39]

    , year 2019

    author Graser, A. , year 2019 . title MovingPandas : Efficient Structures for Movement Data in Python . journal GI\_Forum ‒ Journal of Geographic Information Science volume 7 , pages 54--68 . https://hw.oeaw.ac.at?arp=0x003aba2b, :10.1553/giscience2019_01_s54

  32. [40]

    , author Chen, Z

    author Guan, W. , author Chen, Z. , author Feng, F. , author Liu, W. , author Nie, L. , year 2021 . title Urban perception: Sensing cities via a deep interactive multi-task learning framework . journal ACM Transactions on Multimedia Computing, Communications and Applications v...

  33. [41]

    , author Le, V

    author Hara, K. , author Le, V. , author Froehlich, J. , year 2013 . title Combining crowdsourcing and google street view to identify street-level accessibility problems , in: booktitle Proceedings of the SIGCHI conference on human factors in computing systems , pp. pages 631--640

  34. [42]

    , author Zhang, X

    author He, K. , author Zhang, X. , author Ren, S. , author Sun, J. , year 2016 . title Deep residual learning for image recognition , in: booktitle Proceedings of the IEEE conference on computer vision and pattern recognition , pp. pages 770--778

  35. [43]

    , author Li, G

    author He, N. , author Li, G. , year 2021 . title Urban neighbourhood environment assessment based on street view image processing: A review of research trends . journal Environmental Challenges volume 4 , pages 100090

  36. [44]

    , author Danish, M

    author Helbich, M. , author Danish, M. , author Labib, S. , author Ricker, B. , year 2024 . title To use or not to use proprietary street view images in (health and place) research? that is the question . journal Health & Place volume 87 , pages 103244 . :10.1016/j.healthplace...

  37. [45]

    , author Liu, S

    author Higgs, C. , author Liu, S. , author Boeing, G. , author Arundel, J. , author Lowe, M. , author Adlakha, D. , author Resendiz, E. , author Heikinheimo, V. , author Giles-Corti, B. , author Delclòs-Alió, X. , author Puig-Ribera, A. , author Vargas, J.C.B. , author Castill...

  38. [46]

    , author Biljecki, F

    author Hou, Y. , author Biljecki, F. , year 2022 . title A comprehensive framework for evaluating the quality of street view imagery . journal International Journal of Applied Earth Observation and Geoinformation volume 115 , pages 103094

  39. [47]

    , author Quintana, M

    author Hou, Y. , author Quintana, M. , author Khomiakov, M. , author Ouyang, J. , author Ito, K. , author Wang, Z. , author Zhao, T. , author Biljecki, F. , year 2024 . title Global streetscapes -- a comprehensive dataset of 10 million street-level images across 688 cities for...

  40. [48]

    , author Qian, F

    author Hu, Y. , author Qian, F. , author Yan, H. , author Middel, A. , author Wu, R. , author Zhu, M. , author Han, Q. , author Zhao, K. , author Wang, H. , author Shao, F. , author Bao, Z. , year 2024 . title Which street is hotter? street morphology may hold clues -thermal e...

  41. [49]

    , author Liu, Z

    author Huang, G. , author Liu, Z. , author Van Der Maaten, L. , author Weinberger, K.Q. , year 2017 . title Densely connected convolutional networks , in: booktitle Proceedings of the IEEE conference on computer vision and pattern recognition , pp. pages 4700--4708

  42. [50]

    , author Fei, T

    author Huang, J. , author Fei, T. , author Kang, Y. , author Li, J. , author Liu, Z. , author Wu, G. , year 2024 . title Estimating urban noise along road network from street view imagery . journal International Journal of Geographical Information Science volume 38 , pages 128--155

  43. [51]

    , year 2007

    author Hunter, J.D. , year 2007 . title Matplotlib: A 2d graphics environment . journal Computing in Science & Engineering volume 9 , pages 90--95 . :10.1109/MCSE.2007.55

  44. [52]

    , author Haworth, J

    author Ibrahim, M.R. , author Haworth, J. , author Cheng, T. , year 2020 . title Understanding cities with machine eyes: A review of deep computer vision in urban analytics . journal Cities volume 96 , pages 102481

  45. [53]

    , author Bansal, P

    author Ito, K. , author Bansal, P. , author Biljecki, F. , year 2024 a. title Examining the causal impacts of the built environment on cycling activities using time-series street view imagery . journal Transportation Research Part A: Policy and Practice volume 190 , pages 1042...

  46. [54]

    , author Biljecki, F

    author Ito, K. , author Biljecki, F. , year 2021 . title Assessing bikeability with street view imagery and computer vision . journal Transportation Research Part C: Emerging Technologies volume 132 , pages 103371 . :10.1016/j.trc.2021.103371

  47. [55]

    , author Kang, Y

    author Ito, K. , author Kang, Y. , author Zhang, Y. , author Zhang, F. , author Biljecki, F. , year 2024 b. title Understanding urban perception with visual data: A systematic review . journal Cities volume 152 , pages 105169 . :10.1016/j.cities.2024.105169

  48. [56]

    , author Quintana, M

    author Ito, K. , author Quintana, M. , author Han, X. , author Zimmermann, R. , author Biljecki, F. , year 2024 c. title Translating street view imagery to correct perspectives to enhance bikeability and walkability studies . journal International Journal of Geographical Infor...

  49. [57]

    , author Gueymard, C.A

    author Ivanova, S.M. , author Gueymard, C.A. , year 2019 . title Simulation and applications of cumulative anisotropic sky radiance patterns . journal Solar Energy volume 178 , pages 278--294

  50. [58]

    , author Wang, H

    author Jiao, J. , author Wang, H. , year 2023 . title Forecasting Traffic Speed during Daytime from Google Street View Images using Deep Learning . journal Transportation Research Record volume 2677 , pages 743--753 . :10.1177/03611981231169531

  51. [59]

    , author den Bossche, J.V

    author Jordahl, K. , author den Bossche, J.V. , author Fleischmann, M. , author Wasserman, J. , author McBride, J. , author Gerard, J. , author Tratner, J. , author Perry, M. , author Badaracco, A.G. , author Farmer, C. , author Hjelle, G.A. , author Snow, A.D. , author Cochra...

  52. [60]

    , author Hochmair, H.H

    author Juh \'a sz, L. , author Hochmair, H.H. , year 2016 . title User contribution patterns and completeness evaluation of mapillary, a crowdsourced street level photo service . journal Transactions in GIS volume 20 , pages 925--947

  53. [61]

    , author Truong, T

    author Jush, F.K. , author Truong, T. , author Vogler, S. , author Lenga, M. , year 2023 . title Medical Image Retrieval Using Pretrained Embeddings . :10.48550/arXiv.2311.13547, arXiv:2311.13547 http://arxiv.org/abs/2311.13547

  54. [62]

    o rner, M. , author Wang, Y. , author Taubenb \

    author Kang, J. , author K \"o rner, M. , author Wang, Y. , author Taubenb \"o ck, H. , author Zhu, X.X. , year 2018 . title Building instance classification using street view images . journal ISPRS Journal of Photogrammetry and Remote Sensing volume 145 , pages 44--59 . :10.1...

  55. [63]

    , author Abraham, J

    author Kang, Y. , author Abraham, J. , author Ceccato, V. , author Duarte, F. , author Gao, S. , author Ljungqvist, L. , author Zhang, F. , author N \"a sman, P. , author Ratti, C. , year 2023 . title Assessing differences in safety perceptions using geoai and survey across ne...

  56. [64]

    , author Zhang, F

    author Kang, Y. , author Zhang, F. , author Gao, S. , author Lin, H. , author Liu, Y. , year 2020 . title A review of urban physical environment sensing using street view imagery in public health studies . journal Annals of GIS volume 26 , pages 261--275 . :10.1080/19475683.20...

  57. [65]

    , author Mintun, E

    author Kirillov, A. , author Mintun, E. , author Ravi, N. , author Mao, H. , author Rolland, C. , author Gustafson, L. , author Xiao, T. , author Whitehead, S. , author Berg, A.C. , author Lo, W.Y. , author Doll \'a r, P. , author Girshick, R. , year 2023 . title Segment Anyth...

  58. [66]

    , author Guhathakurta, S

    author Koo, B. , author Guhathakurta, S. , author Botchwey, N. , year 2022 . title How are Neighborhood and Street-Level Walkability Factors Associated with Walking Behaviors ? A Big Data Approach Using Street View Images . journal Environment and Behavior volume 54 , pages 21...

  59. [67]

    , author Sutskever, I

    author Krizhevsky, A. , author Sutskever, I. , author Hinton, G.E. , year 2012 . title Imagenet classification with deep convolutional neural networks . journal Advances in neural information processing systems volume 25

  60. [68]

    , author Kang, Y

    author Kruse, J. , author Kang, Y. , author Liu, Y.N. , author Zhang, F. , author Gao, S. , year 2021 . title Places for play: Understanding human perception of playability in cities using street view images and deep learning . journal Comput. Environ. Urban Syst. volume 90 , ...

  61. [69]

    , author Kenny, E

    author Krylov, V.A. , author Kenny, E. , author Dahyot, R. , year 2018 . title Automatic discovery and geotagging of objects from street view imagery . journal Remote Sensing volume 10 , pages 661

  62. [70]

    , author Paige, B

    author Law, S. , author Paige, B. , author Russell, C. , year 2019 . title Take a Look Around : Using Street View and Satellite Images to Estimate House Prices . journal ACM Transactions on Intelligent Systems and Technology volume 10 , pages 54:1--54:19 . :10.1145/3342240

  63. [71]

    , author Seresinhe, C.I

    author Law, S. , author Seresinhe, C.I. , author Shen, Y. , author Gutierrez-Roig, M. , year 2020 . title Street-frontage-net: urban image classification using deep convolutional neural networks . journal International Journal of Geographical Information Science volume 34 , pa...

  64. [72]

    , author Li, D

    author Li, J. , author Li, D. , author Xiong, C. , author Hoi, S. , year 2022 a. title BLIP : Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation . :10.48550/arXiv.2201.12086, arXiv:2201.12086 http://arxiv.org/abs/2201.12086

  65. [73]

    , author Ma, S

    author Li, S. , author Ma, S. , author Tong, D. , author Jia, Z. , author Li, P. , author Long, Y. , year 2022 b. title Associations between the quality of street space and the attributes of the built environment using large volumes of street view pictures . journal Environmen...

  66. [74]

    , author Ning, H

    author Li, X. , author Ning, H. , author Huang, X. , author Dadashova, B. , author Kang, Y. , author Ma, A. , year 2022 c. title Urban infrastructure audit: an effective protocol to digitize signalized intersections by mining street view images . journal Cartography and Geogra...

  67. [75]

    , author Ratti, C

    author Li, X. , author Ratti, C. , author Seiferling, I. , year 2018 a. title Quantifying the shade provision of street trees in urban landscape: A case study in boston, usa, using google street view . journal Landscape and Urban Planning volume 169 , pages 81--91

  68. [76]

    , author Zhang, C

    author Li, X. , author Zhang, C. , author Li, W. , author Ricard, R. , author Meng, Q. , author Zhang, W. , year 2015 . title Assessing street-level urban greenery using Google Street View and a modified green view index . journal Urban Forestry & Urban Greening volume 14 , pa...

  69. [77]

    , author Chen, Y

    author Li, Y. , author Chen, Y. , author Rajabifard, A. , author Khoshelham, K. , author Aleksandrov, M. , year 2018 b. title Estimating Building Age from Google Street View Images Using Deep Learning ( Short Paper ) , in: editor Winter, S. , editor Griffin, A. , editor Sester...

  70. [78]

    , author Ma, L

    author Li, Y. , author Ma, L. , author Zhong, Z. , author Liu, F. , author Cao, D. , author Li, J. , author Chapman, M.A. , year 2020 . title Deep Learning for LiDAR Point Clouds in Autonomous Driving : A Review . :10.48550/arXiv.2005.09830, arXiv:2005.09830 http://arxiv.org/a...

  71. [79]

    , author Yabuki, N

    author Li, Y. , author Yabuki, N. , author Fukuda, T. , year 2022 d. title Measuring visual walkability perception using panoramic street view images, virtual reality, and deep learning . journal Sustainable Cities and Society volume 86 , pages 104140

  72. [80]

    , author Gong, J

    author Liang, J. , author Gong, J. , author Sun, J. , author Zhou, J. , author Li, W. , author Li, Y. , author Liu, J. , author Shen, S. , year 2017 . title Automatic Sky View Factor Estimation from Street View Photographs --- A Big Data Approach . journal Remote Sensing volum...

  73. [81]

    , author Chang, J.H

    author Liang, X. , author Chang, J.H. , author Gao, S. , author Zhao, T. , author Biljecki, F. , year 2024 . title Evaluating human perception of building exteriors using street view imagery . journal Building and Environment volume 263 , pages 111875

  74. [82]

    , author Zhao, T

    author Liang, X. , author Zhao, T. , author Biljecki, F. , year 2023 . title Revealing spatio-temporal evolution of urban visual environments with street view imagery . journal Landscape and Urban Planning volume 237 , pages 104802 . :10.1016/j.landurbplan.2023.104802

  75. [83]

    , year 1998

    author Lindeberg, T. , year 1998 . title Feature Detection with Automatic Scale Selection . journal International Journal of Computer Vision volume 30 , pages 79--116 . :10.1023/A:1008045108935

  76. [84]

    , author Zeng, Z

    author Liu, S. , author Zeng, Z. , author Ren, T. , author Li, F. , author Zhang, H. , author Yang, J. , author Li, C. , author Yang, J. , author Su, H. , author Zhu, J. , et al., year 2023 . title Grounding dino: Marrying dino with grounded pre-training for open-set object de...

  77. [85]

    , author Goodman, A

    author Lovelace, R. , author Goodman, A. , author Aldred, R. , author Berkoff, N. , author Abbas, A. , author Woodcock, J. , year 2017 . title The Propensity to Cycle Tool : An open source online system for sustainable transport planning . journal Journal of Transport and Land...

  78. [86]

    , author Hu, Y

    author Lu, B. , author Hu, Y. , author Yang, D. , author Liu, Y. , author Liao, L. , author Yin, Z. , author Xia, T. , author Dong, Z. , author Harris, P. , author Brunsdon, C. , et al., year 2023 a. title Gwmodels: A software for geographically weighted models . journal Softw...

  79. [87]

    , year 2019

    author Lu, Y. , year 2019 . title Using google street view to investigate the association between street greenery and physical activity . journal Landscape and Urban Planning volume 191 , pages 103435

  80. [88]

    , author Ferranti, E.J.S

    author Lu, Y. , author Ferranti, E.J.S. , author Chapman, L. , author Pfrang, C. , year 2023 b. title Assessing urban greenery by harvesting street view data: A review . journal Urban Forestry & Urban Greening , pages 127917

  81. [89]

    , author Danelljan, M

    author Lugmayr, A. , author Danelljan, M. , author Romero, A. , author Yu, F. , author Timofte, R. , author Van Gool, L. , year 2022 . title RePaint : Inpainting using Denoising Diffusion Probabilistic Models . :10.48550/arXiv.2201.09865, arXiv:2201.09865 http://arxiv.org/abs/...

  82. [90]

    , author Leong, C.T

    author Luo, Y. , author Leong, C.T. , author Jiao, S. , author Chung, F.L. , author Li, W. , author Liu, G. , year 2023 . title Geo- Tile2Vec : A Multi-Modal and Multi-Stage Embedding Framework for Urban Analytics . journal ACM Transactions on Spatial Algorithms and Systems vo...

  83. [91]

    , author Ma, C

    author Ma, X. , author Ma, C. , author Wu, C. , author Xi, Y. , author Yang, R. , author Peng, N. , author Zhang, C. , author Ren, F. , year 2021 . title Measuring human perceptions of streetscapes to better inform urban renewal: A perspective of scene semantic parsing . journ...

  84. [92]

    , author Schuchard, R

    author Mahabir, R. , author Schuchard, R. , author Crooks, A. , author Croitoru, A. , author Stefanidis, A. , year 2020 . title Crowdsourcing street view imagery: a comparison of mapillary and openstreetcam . journal ISPRS International Journal of Geo-Information volume 9 , pages 341

  85. [93]

    , year 2024

    author Mahajan, S. , year 2024 . title greenR : An open-source framework for quantifying urban greenness . journal Ecological Indicators volume 163 , pages 112108 . :10.1016/j.ecolind.2024.112108

  86. [94]

    , author Camp, C.V

    author Maniat, M. , author Camp, C.V. , author Kashani, A.R. , year 2021 . title Deep learning-based visual crack detection using google street view images . journal Neural computing and applications volume 33 , pages 14565--14582

  87. [95]

    , author Hildreth, E

    author Marr, D. , author Hildreth, E. , author Brenner, S. , year 1997 . title Theory of edge detection . journal Proceedings of the Royal Society of London. Series B. Biological Sciences volume 207 , pages 187--217 . :10.1098/rspb.1980.0020

  88. [96]

    , author Hong, Y

    author Martin, H. , author Hong, Y. , author Wiedemann, N. , author Bucher, D. , author Raubal, M. , year 2023 a. title Trackintel: An open-source Python library for human mobility analysis . journal Computers, Environment and Urban Systems volume 101 , pages 101938 . :10.1016...

  89. [97]

    , author Hong, Y

    author Martin, H. , author Hong, Y. , author Wiedemann, N. , author Bucher, D. , author Raubal, M. , year 2023 b. title Trackintel: An open-source python library for human mobility analysis . journal Computers, Environment and Urban Systems volume 101 , pages 101938

  90. [98]

    , author Xing, H

    author Meng, Y. , author Xing, H. , author Yuan, Y. , author Wong, M.S. , author Fan, K. , year 2020 . title Sensing urban poverty: From the perspective of human perception-based greenery and open-space landscapes . journal Comput. Environ. Urban Syst. volume 84 , pages 101544

  91. [99]

    , author Yu, S

    author Miao, C. , author Yu, S. , author Hu, Y. , author Zhang, H. , author He, X. , author Chen, W. , year 2020 . title Review of methods used to estimate the sky view factor in urban street canyons . journal Build. Environ. volume 168 , pages 106497

  92. [100]

    , author Grimes, M.K

    author Mirowski, P. , author Grimes, M.K. , author Malinowski, M. , author Hermann, K.M. , author Anderson, K. , author Teplyashin, D. , author Simonyan, K. , author Kavukcuoglu, K. , author Zisserman, A. , author Hadsell, R. , year 2018 . title Learning to navigate in cities ...

  93. [101]

    , author Yamamoto, T

    author Miyake, H. , author Yamamoto, T. , author Yamaguchi, H. , author Yoshizawa, N. , year 2019 . title Effects of lighting on perception of spaciousness . journal PROCEEDINGS OF the 29th Quadrennial Session of the CIE

  94. [102]

    , author Gemmell, E

    author Muller, E. , author Gemmell, E. , author Choudhury, I. , author Nathvani, R. , author Metzler, A.B. , author Bennett, J. , author Denton, E. , author Flaxman, S. , author Ezzati, M. , year 2022 . title City-wide perceptions of neighbourhood quality using street view ima...

  95. [103]

    , author Li, Z

    author Ning, H. , author Li, Z. , author Wang, C. , author Hodgson, M.E. , author Huang, X. , author Li, X. , year 2022 . title Converting street view images to land cover maps for metric mapping: A case study on sidewalk network extraction for the wheelchair users . journal C...

  96. [104]

    , author Vi \ n als, M.J

    author Orozco Carpio, P.R. , author Vi \ n als, M.J. , author L \'o pez-Gonz \'a lez , M.C. , year 2024 . title 3D Point Cloud and GIS Approach to Assess Street Physical Attributes . journal Smart Cities volume 7 , pages 991--1006 . :10.3390/smartcities7030042

  97. [105]

    , author Simini, F

    author Pappalardo, L. , author Simini, F. , author Barlacchi, G. , author Pellungrini, R. , year 2022 . title scikit-mobility: A python library for the analysis, generation, and risk assessment of mobility data . journal Journal of Statistical Software volume 103 , pages 1–38 ...

  98. [106]

    , author Tenkanen, H

    author P \"o nk \"a nen, M. , author Tenkanen, H. , author Mladenovi \'c , M. , year 2025 . title Spatial accessibility and transport inequity in finland: Open source models and perspectives from planning practice . journal Computers, Environment and Urban Systems volume 116 ,...

  99. [107]

    , author Kumar, V

    author Ramalingam, S.P. , author Kumar, V. , year 2025 . title Building usage prediction in complex urban scenes by fusing text and facade features from street view images using deep learning . journal Building and Environment volume 267 , pages 112174

  100. [108]

    , author Hurtubia, R

    author Ram \'i rez, T. , author Hurtubia, R. , author Lobel, H. , author Rossetti, T. , year 2021 . title Measuring heterogeneous perception of urban space with massive data and machine learning: An application to safety . journal Landscape and Urban Planning volume 208 . :10....

  101. [109]

    , author Bochkovskiy, A

    author Ranftl, R. , author Bochkovskiy, A. , author Koltun, V. , year 2021 . title Vision Transformers for Dense Prediction . :10.48550/arXiv.2103.13413, arXiv:2103.13413 http://arxiv.org/abs/2103.13413

  102. [110]

    , author Zhang, X

    author Ren, M. , author Zhang, X. , author Chen, X. , author Zhou, B. , author Feng, Z. , year 2023 . title Yolov5s-m: A deep learning network model for road pavement damage detection from urban street-view imagery . journal International Journal of Applied Earth Observation a...

  103. [111]

    , author Pearson, A.L

    author Rzotkiewicz, A. , author Pearson, A.L. , author Dougherty, B.V. , author Shortridge, A. , author Wilson, N. , year 2018 . title Systematic review of the use of Google Street View in health research: Major themes, strengths, weaknesses and possibilities for future resear...

  104. [112]

    , author Chan, W

    author Saharia, C. , author Chan, W. , author Saxena, S. , author Li, L. , author Whang, J. , author Denton, E. , author Ghasemipour, S.K.S. , author Gontijo-Lopes , R. , author Ayan, B.K. , author Salimans, T. , author Ho, J. , author Fleet, D.J. , author Norouzi, M. , year 2...

  105. [113]

    , author Labib, S

    author S \'a nchez, I.A.V. , author Labib, S. , year 2024 . title Accessing eye-level greenness visibility from open-source street view images: A methodological development and implementation in multi-city and multi-country contexts . journal Sustainable Cities and Society vol...

  106. [114]

    , author Johnstone, D

    author Sanusi, R. , author Johnstone, D. , author May, P. , author Livesley, S.J. , year 2016 . title Street orientation and side of the street greatly influence the microclimatic benefits street trees can provide in summer . journal Journal of environmental quality volume 45 ...

  107. [115]

    , author Schwalbe, E

    author Schneider, D. , author Schwalbe, E. , author Maas, H.G. , year 2009 . title Validation of geometric models for fisheye lenses . journal ISPRS J. Photogramm. Remote Sens. volume 64 , pages 259--266

  108. [116]

    , author Preis, T

    author Seresinhe, C.I. , author Preis, T. , author Moat, H.S. , year 2017 . title Using deep learning to quantify the beauty of outdoor places . journal Royal Society Open Science volume 4 , pages 170170 . :10.1098/rsos.170170

  109. [117]

    , author Yan, Z

    author Shu, Z. , author Yan, Z. , author Xu, X. , year 2021 . title Pavement Crack Detection Method of Street View Images Based on Deep Learning . journal Journal of Physics: Conference Series volume 1952 , pages 022043 . :10.1088/1742-6596/1952/2/022043

  110. [118]

    , author Zisserman, A

    author Simonyan, K. , author Zisserman, A. , year 2014 . title Very deep convolutional networks for large-scale image recognition . journal arXiv preprint arXiv:1409.1556

  111. [119]

    , author Polyak, A

    author Singer, U. , author Polyak, A. , author Hayes, T. , author Yin, X. , author An, J. , author Zhang, S. , author Hu, Q. , author Yang, H. , author Ashual, O. , author Gafni, O. , author Parikh, D. , author Gupta, S. , author Taigman, Y. , year 2022 . title Make- A-Video :...

  112. [120]

    , author Feldman, G

    author Sobel, I. , author Feldman, G. , year 1968 . title A 3x3 Isotropic Gradient Operator for Image Processing

  113. [121]

    , author Ross, R

    author de Souza-Daw, T. , author Ross, R. , author Nhan, T.D. , author Hung, L.A. , author Trung, N.D.Q. , author Chau, L.H. , author Phuong, H.M. , author Ngoc, L.H. , author Nkhoma, M. , year 2015 . title Design and evaluation of a low-cost street-level image capturing vehic...

  114. [122]

    , author Zhang, F

    author Sun, M. , author Zhang, F. , author Duarte, F. , author Ratti, C. , year 2022 . title Understanding architecture age and style through deep learning . journal Cities volume 128 , pages 103787

  115. [123]

    , author Le, Q

    author Tan, M. , author Le, Q. , year 2019 . title Efficientnet: Rethinking model scaling for convolutional neural networks , in: booktitle International conference on machine learning , organization PMLR . pp. pages 6105--6114

  116. [124]

    , author Zhou, X

    author Tu, P. , author Zhou, X. , author Wang, M. , author Yang, X. , author Peng, B. , author Chen, P. , author Su, X. , author Huang, Y. , author Zheng, Y. , author Xu, C. , year 2024 . title NeRF2Points : Large-Scale Point Cloud Generation From Street Views ' Radiance Field...

  117. [125]

    title H3: Uber 's Hexagonal Hierarchical Spatial Index

    author Uber , year 2018 . title H3: Uber 's Hexagonal Hierarchical Spatial Index . howpublished https://www.uber.com/en-JP/blog/h3/

  118. [126]

    , author Hu, Y

    author Wang, J. , author Hu, Y. , author Duolihong, W. , year 2023 . title Diagnosis and planning strategies for quality of urban street space based on street view images . journal ISPRS International Journal of Geo-Information volume 12 , pages 15

  119. [127]

    , author Liu, W

    author Wang, J. , author Liu, W. , author Gou, A. , year 2022 a. title Numerical characteristics and spatial distribution of panoramic street green view index based on segnet semantic segmentation in savannah . journal Urban Forestry & Urban Greening volume 69 , pages 127488

  120. [128]

    , author Haworth, J

    author Wang, M. , author Haworth, J. , author Chen, H. , author Liu, Y. , author Shi, Z. , year 2024 a. title Investigating the potential of crowdsourced street-level imagery in understanding the spatiotemporal dynamics of cities: A case study of walkability in Inner London . ...

  121. [129]

    , author He, Y

    author Wang, M. , author He, Y. , author Meng, H. , author Zhang, Y. , author Zhu, B. , author Mango, J. , author Li, X. , year 2022 b. title Assessing Street Space Quality Using Street View Imagery and Function-Driven Method : The Case of Xiamen , China . journal ISPRS Intern...

  122. [130]

    , author Liu, Y

    author Wang, R. , author Liu, Y. , author Lu, Y. , author Zhang, J. , author Liu, P. , author Yao, Y. , author Grekousis, G. , year 2019 . title Perceptions of built environment and health outcomes for older chinese in beijing: A big data approach with street view images and d...

  123. [131]

    , author Huang, X

    author Wang, S. , author Huang, X. , author Liu, P. , author Zhang, M. , author Biljecki, F. , author Hu, T. , author Fu, X. , author Liu, L. , author Liu, X. , author Wang, R. , author Huang, Y. , author Yan, J. , author Jiang, J. , author Chukwu, M. , author Reza Naghedi, S....

  124. [132]

    , author Ito, K

    author Wang, Z. , author Ito, K. , author Biljecki, F. , year 2024 c. title Assessing the equity and evolution of urban visual perceptual quality with time series street view imagery . journal Cities volume 145 , pages 104704 . :10.1016/j.cities.2023.104704

  125. [133]

    , author Horikoshi, T

    author Watanabe, S. , author Horikoshi, T. , author Ishii, J. , author Tomita, A. , year 2013 . title The measurement of the solar absorptance of the clothed human body -- the case of japanese, college-aged male subjects . journal Build. Environ. volume 59 , pages 492--500

  126. [134]

    , author Jang, E

    author Weld, G. , author Jang, E. , author Li, A. , author Zeng, A. , author Heimerl, K. , author Froehlich, J.E. , year 2019 . title Deep Learning for Automatically Detecting Sidewalk Accessibility Problems Using Streetscape Imagery , in: booktitle The 21st International ACM ...

  127. [135]

    , author Bewley, A

    author Wojke, N. , author Bewley, A. , year 2018 . title Deep cosine metric learning for person re-identification , in: booktitle 2018 IEEE Winter Conference on Applications of Computer Vision (WACV) , organization IEEE . pp. pages 748--756 . :10.1109/WACV.2018.00087

  128. [136]

    , author Bewley, A

    author Wojke, N. , author Bewley, A. , author Paulus, D. , year 2017 . title Simple online and realtime tracking with a deep association metric , in: booktitle 2017 IEEE International Conference on Image Processing (ICIP) , organization IEEE . pp. pages 3645--3649 . :10.1109/I...

  129. [137]

    , author Yabuki, N

    author Xia, Y. , author Yabuki, N. , author Fukuda, T. , year 2021 a. title Development of a system for assessing the quality of urban street-level greenery using street view images and deep learning . journal Urban Forestry & Urban Greening volume 59 , pages 126995

  130. [138]

    , author Yabuki, N

    author Xia, Y. , author Yabuki, N. , author Fukuda, T. , year 2021 b. title Sky view factor estimation from street view images based on semantic segmentation . journal Urban Climate volume 40 , pages 100999

  131. [139]

    , author Zhang, Y

    author Yang, C. , author Zhang, Y. , year 2024 . title Public emotions and visual perception of the East Coast Park in Singapore : A deep learning method using social media data . journal Urban Forestry & Urban Greening volume 94 , pages 128285 . :10.1016/j.ufug.2024.128285

  132. [140]

    , author Zhao, L

    author Yang, J. , author Zhao, L. , author Mcbride, J. , author Gong, P. , year 2009 . title Can you see green? Assessing the visibility of urban forests in cities . journal Landscape and Urban Planning volume 91 , pages 97--104 . :10.1016/j.landurbplan.2008.12.004

  133. [141]

    , author Kang, B

    author Yang, L. , author Kang, B. , author Huang, Z. , author Xu, X. , author Feng, J. , author Zhao, H. , year 2024 . title Depth Anything : Unleashing the Power of Large-Scale Unlabeled Data . howpublished https://arxiv.org/abs/2401.10891v2

  134. [142]

    streetscape

    author Yang, X. , author Lindquist, M. , author Van Berkel, D. , year 2025 . title “streetscape” package in r: A reproducible method for analyzing open-source street view datasets and facilitating research for urban analytics . journal SoftwareX volume 29 , pages 101981

  135. [143]

    , author Janssen, P

    author Yap, W. , author Janssen, P. , author Biljecki, F. , year 2022 . title Free and open source urbanism: Software for urban planning practice . journal Computers, Environment and Urban Systems volume 96 , pages 101825 . :10.1016/j.compenvurbsys.2022.101825

  136. [144]

    , author Stouffs, R

    author Yap, W. , author Stouffs, R. , author Biljecki, F. , year 2023 . title Urbanity: Automated modelling and analysis of multidimensional networks in cities . journal npj Urban Sustainability volume 3 , pages 1--11 . :10.1038/s42949-023-00125-w

  137. [145]

    , author Zeng, W

    author Ye, Y. , author Zeng, W. , author Shen, Q. , author Zhang, X. , author Lu, Y. , year 2019 . title The visual quality of streets: A human-centred continuous measurement based on machine learning algorithms and street view images . journal Environment and Planning B: Urba...

  138. [146]

    , author Wang, Z

    author Yin, L. , author Wang, Z. , year 2016 . title Measuring visual enclosure for street walkability: Using machine learning algorithms and google street view imagery . journal Applied geography volume 76 , pages 147--153

  139. [147]

    , author Chen, K

    author Ypsilantis, N.A. , author Chen, K. , author Cao, B. , author Lipovsk \'y , M. , author Dogan-Sch \"o nberger , P. , author Makosa, G. , author Bluntschli, B. , author Seyedhosseini, M. , author Chum, O. , author Araujo, A. , year 2023 . title Towards Universal Image Emb...

  140. [148]

    , author Zhou, B

    author Zhang, F. , author Zhou, B. , author Liu, L. , author Liu, Y. , author Fung, H.H. , author Lin, H. , author Ratti, C. , year 2018 . title Measuring human perceptions of a large-scale urban region using machine learning . journal Landscape and Urban Planning volume 180 ,...

  141. [149]

    , author Yi, J

    author Zhang, G. , author Yi, J. , author Yuan, J. , author Li, Y. , author Jin, D. , year 2023 . title DAS : Efficient Street View Image Sampling for Urban Prediction . journal ACM Trans. Intell. Syst. Technol. volume 14 , pages 35:1--35:20 . :10.1145/3576902

  142. [150]

    , author Pei, T

    author Zhang, L. , author Pei, T. , author Wang, X. , author Wu, M. , author Song, C. , author Guo, S. , author Chen, Y. , year 2020 . title Quantifying the urban visual perception of chinese traditional-style building with street view images . journal applied sciences volume ...

  143. [151]

    , author Dong, R

    author Zhang, Y. , author Dong, R. , year 2018 . title Impacts of street-visible greenery on housing prices: Evidence from a hedonic price model and a massive street view image dataset in beijing . journal ISPRS International Journal of Geo-Information volume 7 , pages 104

  144. [152]

    , author Ogawa, Y

    author Zhao, C. , author Ogawa, Y. , author Chen, S. , author Oki, T. , author Sekimoto, Y. , year 2023 a. title Quantitative land price analysis via computer vision from street view images . journal Engineering Applications of Artificial Intelligence volume 123 , pages 106294...

  145. [153]

    , author Liu , Y

    author Zhao , K. , author Liu , Y. , author Hao , S. , author Lu , S. , author Liu , H. , author Zhou , L. , year 2021 . title Bounding boxes are all we need: Street view image classification via context encoding of detected buildings . journal IEEE Transactions on Geoscience ...

  146. [154]

    , author Liang, X

    author Zhao, T. , author Liang, X. , author Tu, W. , author Huang, Z. , author Biljecki, F. , year 2023 b. title Sensing urban soundscapes from street view imagery . journal Computers, Environment and Urban Systems volume 99 , pages 101915

  147. [155]

    , author Amemiya, M

    author Zheng, X. , author Amemiya, M. , year 2023 . title Method for applying crowdsourced street-level imagery data to evaluate street-level greenness . journal ISPRS International Journal of Geo-Information volume 12 , pages 108

  148. [156]

    , author Lapedriza, \`A

    author Zhou, B. , author Lapedriza, \`A . , author Khosla, A. , author Oliva, A. , author Torralba, A. , year 2017 . title Places: A 10 Million Image Database for Scene Recognition . journal IEEE Transactions on Pattern Analysis and Machine Intelligence volume PP , pages 1--1 ...

  149. [157]

    , author He, S

    author Zhou, H. , author He, S. , author Cai, Y. , author Wang, M. , author Su, S. , year 2019 . title Social inequalities in neighborhood visual walkability: Using street view imagery and deep learning technologies to facilitate healthy city planning . journal Sustainable Cit...

  150. [158]

    , author Zhang, Y

    author Zhu, Y. , author Zhang, Y. , author Biljecki, F. , year 2025 . title Understanding the user perspective on urban public spaces: A systematic review and opportunities for machine learning . journal Cities volume 156 , pages 105535

  151. [159]

    , author Kang, Y

    author Zhuang, Y. , author Kang, Y. , author Fei, T. , author Bian, M. , author Du, Y. , year 2024 . title From hearing to seeing: Linking auditory and visual place perceptions with soundscape-to-image generative artificial intelligence . journal Computers, Environment and Urb...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.