Pith. sign in

REVIEW 4 major objections 7 minor 63 references

LDPoly: Latent Diffusion for Polygonal Road Outline Extraction in Large-Scale Topographic Mapping

T0 review · 4 major / 7 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read A dual-latent diffusion model that jointly generates road masks and vertex heatmaps can extract vectorized road polygons from aerial images, outperforming seven baselines on a Dutch topographic benchmark and generalizing to unseen regions.

desk verdict A genuine first for polygonal road outline extraction with a sensible diffusion pipeline and honest ablations; the main risk is an unmeasured autoencoder assumption and missing reproducibility artifacts. read the letter →

arxiv 2504.20645 v1 pith:EX5KDHLF submitted 2025-04-29 cs.CV

classification cs.CV
keywords roadpolygonextractiontopographicmappinglatentdiffusionmodelvertexheatmappolygonizationaerialimageryconnectivityMap2ImLas
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

This paper tries to establish that polygonal road outlines for large-scale topographic maps can be extracted directly from aerial images by a diffusion model that jointly generates a road mask and a vertex heatmap in latent space, then vectorizes them. It claims this is the first dedicated framework for the task, and that on the Dutch Map2ImLas benchmark it beats seven existing segmentation and building-polygon baselines across pixel coverage, vertex efficiency, polygon regularity, and road connectivity. The authors introduce two evaluation metrics, S-IoU and SCR, to capture polygon simplicity and boundary smoothness. If correct, the result turns a manual, topologically delicate drafting step into a generative modeling problem that can be transferred to unseen regions.

What carries the argument

The load-bearing mechanism is a dual-latent diffusion model: two targets, a road mask and a vertex heatmap, are encoded into the latent space of a frozen Stable Diffusion autoencoder, corrupted with Gaussian noise, and denoised together by a UNet conditioned on the aerial image. The Channel-Embedded Fusion Module adds learnable channel embeddings to each projected latent feature before concatenation, so the two denoising objectives can exchange information without being confused. The accompanying polygonizer traces the predicted mask contour, keeps contour points near heatmap-extracted keypoints, and reinserts Douglas-Peucker-detected inflection points to preserve narrow alley junctions. The frozen autoencoder is what makes the whole latent-space operation possible, and the paper asserts without quantitative verification that it reconstructs precise masks and heatmaps.

What would settle it

Measure the reconstruction fidelity of the frozen autoencoder on Map2ImLas: encode ground-truth road masks and vertex heatmaps with E, decode with D, and compare mask IoU and vertex detection recall between the originals and the reconstructions. If the decoded masks already lose thin alleys or traffic-island holes, or vertices shift by more than a few pixels, the latent-space premise fails and downstream polygons inherit distortions no polygonizer can undo.

Watch

Extended reading notes

Core claim

On its own terms, the paper's central discovery is that a dual-latent conditional diffusion model can replace the usual segmentation-plus-vectorization pipeline for road polygons. The model denoises two targets at once, a binary road mask and a Gaussian vertex heatmap, in the frozen latent space of a pretrained Stable Diffusion autoencoder, with a Channel-Embedded Fusion Module letting the image condition, mask, and heatmap features interact. A custom polygonizer then traces the mask contour, selects vertices using non-maximum suppression on the heatmap, filters them by distance, and re-inserts near-right-angle inflection points found by Douglas-Peucker. The reported outcome is that generated polygons are smoother, more topologically connected, and use fewer redundant vertices than those from seven baselines, including on unseen Dutch regions, with the largest gaps appearing in vertex precision and recall.

Load-bearing premise

The frozen Stable Diffusion autoencoder can encode and decode binary road masks and vertex heatmaps without losing the fine corners and closely spaced vertices that the polygonizer needs.

Editorial extensions

If this is right

  • If the dual-latent design is correct, diffusion models can produce precise vectorized object outlines, not just raster labels, in remote-sensing imagery.
  • Jointly generating the mask and vertex heatmap sharply improves vertex localization over a non-diffusion baseline, with reported precision rising from 26.0 to 79.8 and recall from 70.6 to 75.4.
  • The proposed polygonizer preserves pixel-level coverage while reducing vertex redundancy, whereas direct Douglas-Peucker vectorization keeps high IoU but produces excessive vertices.
  • Cross-region results suggest a model trained on one Dutch region can generalize to unseen urban, suburban, and rural regions, with degradation mainly when the visual domain shifts strongly.
  • The new S-IoU metric can evaluate polygon simplicity using dataset-level vertex statistics, making it usable in annotation-limited settings.

Reading between the lines

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

  • The same dual-latent recipe could be extended to other topographic polygon classes such as buildings, water, and vegetation, since Map2ImLas contains those annotations, though the paper only evaluates roads.
  • Because the frozen-autoencoder reconstruction premise is unquantified, a natural test is to fine-tune the autoencoder on masks and heatmaps; if that improves vertex recall, the paper's latent-space premise is only partially responsible for its results.
  • The reference-free S-IoU idea could support semi-supervised topographic mapping by scoring predicted polygons in unlabeled regions against dataset-level vertex statistics rather than ground-truth contours.
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

4 major / 7 minor

Summary. The paper introduces LDPoly, a conditional latent diffusion framework for extracting polygonal road outlines from high-resolution aerial images. The method encodes road masks and vertex heatmaps into the latent space of a frozen Stable Diffusion autoencoder, jointly denoises the two latents with a U-Net augmented by a Channel-Embedded Fusion Module, and then converts the decoded mask and heatmap into vector polygons via a four-stage polygonization procedure. The authors introduce a new Dutch topographic dataset, Map2ImLas, and two new metrics, S-IoU and SCR. They report experiments on Deventer (in-region) and Enschede and Giethoorn (cross-region), comparing with seven baselines and showing consistent gains in vertex efficiency, polygon regularity, and connectivity.

Significance. If the results hold up, this is a useful first dedicated framework for polygonal road outline extraction, a task distinct from road segmentation, road centerline extraction, and building polygon extraction. The dual-latent diffusion design, the channel-embedding fusion idea, the cross-region evaluation protocol, and the new benchmark are all potentially valuable contributions to topographic mapping and remote-sensing vision. The paper also merits credit for extensive ablations that isolate the diffusion process, the fusion module, and the polygonization algorithm. However, the central claim is weakened by missing validation of the frozen autoencoder premise, the absence of any run-to-run variance or statistical significance reporting, and an inconsistency in the definition of the new S-IoU metric. Code, weights, and the Map2ImLas dataset are not available at submission, so the results cannot currently be independently reproduced.

major comments (4)
  1. [Section 4.1, Eq. (6)-(7)] The paper asserts, without quantitative support, that the frozen pretrained Stable Diffusion autoencoder reconstructs precise road masks and vertex heatmaps. This premise is load-bearing because the polygonization algorithm selects vertices along the decoded mask contour and uses the decoded heatmap only as guidance; any encode-decode distortion is inherited by the final polygon and cannot be corrected downstream. The manuscript reports no reconstruction IoU, boundary error, or vertex localization error, and it does not compare against a fine-tuned or purpose-trained autoencoder. Given the 8x downsampling and the thin, narrow structures present in road networks, such an experiment is necessary to support Eq. (7) and to attribute the gains in Tables 1-3 to the diffusion framework itself.
  2. [Section 5.2, Eq. (20)] The definition of the simplicity factor SF is internally inconsistent. As written, SF(N_hat m) = sum_i (1+e^{k(3-N_i_sigma)})/(1+e^{k(N_hat m - N_i_sigma)}). At N_hat m = 3 this evaluates to 3, contradicting the statement that "SF reaches its maximum value of 1" and the y-axis range in Figure 6. If the intended final SF is the mean of the three SFi_sigma terms, Eq. (20) is missing a factor of 1/3; if the sum was intended, S-IoU is not normalized to [0,1]. Because S-IoU is a headline metric in Tables 1-3, the formula must be corrected and the reported S-IoU values recomputed or confirmed.
  3. [Section 5.3, Tables 1-3] All comparisons are based on single runs with no reported variance, confidence intervals, or paired statistical tests. This is especially important because diffusion inference is stochastic and because several reported advantages over the second-best method are modest (e.g., Deventer IoU 75.0 vs. 71.5, APLS 68.9 vs. 65.6; Giethoorn APLS 71.1 vs. 71.4 for CoANet). Without multiple seeds and appropriate significance testing, the claim that LDPoly "outperforms state-of-the-art polygon extraction methods across various metrics" is not yet established for the smaller-margin differences.
  4. [Section 5.2 and Section 4.4] The S-IoU thresholds N1_sigma, N2_sigma, and N3_sigma are fitted to the vertex-count distribution of the Map2ImLas dataset and then used to score predictions on that same dataset, with no sensitivity analysis for the decay rate k or the threshold values. The polygonization thresholds dth, the heatmap NMS threshold, the Gaussian sigma, and the inflection-angle threshold tau are likewise fixed without sensitivity analysis even though they directly control vertex count and therefore influence N-ratio, C-IoU, and S-IoU. The authors should report how results vary with these thresholds and justify that the reported ranking is not an artifact of threshold selection.
minor comments (7)
  1. [Section 5.2] The APLS metric name is misspelled as "Average Pah Length Similarity"; it should be "Average Path Length Similarity." The table headers also contain a stray "1" ("APLS ↑1").
  2. [Section 4.2] The text says "Gaussian nosie" and "nosie" several times; the intended word is "noise."
  3. [Table 1] The DeepLabV3+ APLS value is printed as "56,4" with a comma decimal separator, while the rest of the paper uses periods; please standardize.
  4. [Section 4.4, Eq. (17)] The set-builder notation is malformed: V_inflection is written as an expression rather than as the intended set construction { v in C_hat | 90° - tau <= theta(v) <= 90° + tau }.
  5. [Section 5.3] The stitched evaluation in Figure 10 is described only qualitatively. Please clarify whether the tables report per-patch metrics, stitched-image metrics, or both, and how vertices are aggregated across patch boundaries without introducing discontinuities.
  6. [Section 1] The novelty claims are appropriately scoped, but the phrase "state-of-the-art polygon extraction methods" is based on a comparison set of building-polygon and segmentation baselines; recent HD-map reconstruction methods such as MapTR are mentioned in related work but not compared. A sentence explicitly stating why these methods are not applicable would strengthen the comparison.
  7. [Section 5.1] The release of code, weights, and the processed dataset is deferred until acceptance, and the Map2ImLas dataset is described as under review elsewhere. For a paper introducing a new benchmark, a description of the annotation process, the license, and a committed release timeline would materially improve reproducibility.

Circularity Check

0 steps flagged · score 0.0 of 10

No self-definitional or fitted-input circularity; unvalidated autoencoder premise and metric calibration are validation concerns, not derivation circularity.

full rationale

I examined the derivation chain for self-definition, fitted-input prediction, and load-bearing self-citation. LDPoly is trained with a standard conditional diffusion objective (Eq. 13) on rasterized road masks and Gaussian vertex heatmaps derived from vector annotations; at inference it denoises latent noise and polygonizes the decoded mask and heatmap. The outputs are therefore not algebraically forced by the training targets. The only asserted premise lacking direct evidence is Eq. (7), where the frozen Stable Diffusion autoencoder is assumed to reconstruct masks and heatmaps precisely; this is an unvalidated architectural assumption (no reconstruction IoU or vertex error is reported), but it is not circular because the premise is not derived from the conclusion. The S-IoU thresholds N1σ, N2σ, N3σ are fitted to the vertex-count distribution of Map2ImLas and then used to reward simplified polygons (Eqs. 19-20); this is a metric-calibration concern and can advantage vertex-reducing polygonization, but LDPoly is not trained to optimize S-IoU and its IoU, B-IoU, PoLiS, and APLS advantages are reported independently. Self-citations (Refs. 34, 36) appear only as related-work references to the authors' prior building-outline methods and do not carry the central argument. I therefore find no circular step under the stated criteria.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The central contribution is empirical, so the ledger is dominated by representation choices and evaluation hyperparameters rather than physical postulates. No new physical entities are introduced. The main external input is the pretrained Stable Diffusion autoencoder, whose reconstruction fidelity is asserted rather than measured. The S-IoU metric thresholds are fitted to the benchmark dataset itself, which couples the evaluation instrument to the data being evaluated.

free parameters (6)
  • Vertex heatmap Gaussian standard deviation = 5 pixels
    Set empirically in Section 4.1 to balance sparsity and density; directly affects vertex extraction and polygonization.
  • Polygonization distance threshold dth = not reported
    Eq. (16) in Section 4.4 filters contour vertices by distance to keypoints; the threshold is not specified, so results cannot be exactly reproduced.
  • Retained inflection angle threshold tau = 30 degrees
    Section 5.1 sets tau for Eq. (17), controlling which 90-degree-like corners are reinserted into polygons.
  • S-IoU simplicity factor thresholds N1σ, N2σ, N3σ and decay rate k = derived from log-normal fit to Map2ImLas vertex counts; k = 0.1
    Section 5.2 fits these from the evaluation dataset's vertex distribution; they directly determine S-IoU scores and favor low vertex counts.
  • Loss coefficients lambda_mt, lambda_kt, lambda_m0, lambda_k0 = all set to 1
    Section 5.1 states they are uniformly set to 1 based on comparable magnitude; no sensitivity analysis is provided.
  • NMS threshold for vertex heatmap extraction = not reported
    Section 4.4 uses a 'fixed threshold' for NMS to obtain sparse vertices; without its value, vertex selection cannot be reproduced.
assumptions (5)
  • standard math Gaussian posterior and noise schedule of DDPM, Eq. (1)-(3), correctly model the denoising process.
    The method relies on the standard DDPM forward-reverse derivation in Section 3 as background math.
  • domain assumption BGT road polygon definition, including internal holes and mixed road surfaces, is the correct and complete target representation.
    The task is defined by Dutch BGT specifications in Section 1; the entire dataset, masks, and metrics inherit this definition.
  • domain assumption The pretrained Stable Diffusion autoencoder reconstructs binary masks and Gaussian heatmaps with sufficient fidelity without fine-tuning.
    Stated in Section 4.1, Eq. (6)-(7), with no quantitative reconstruction evidence; this is the weakest load-bearing premise.
  • ad hoc to paper A binary road mask plus a vertex heatmap with Gaussian spread sigma=5 contains enough information to reconstruct all road polygon geometry, including narrow junctions.
    The representation choice in Section 4.1 and the DP-based inflection recovery in Section 4.4 assume no geometric information is lost outside the heatmap peaks.
  • domain assumption DDIM sampling converges to the learned data distribution for these low-dimensional latents in a feasible number of steps.
    Inference in Section 4.2 uses DDIM, but the step count and convergence behavior are not reported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of LDPoly: Latent Diffusion for Polygonal Road Outline Extraction in Large-Scale Topographic Mapping." pith.science (2026). https://pith.science/paper/EX5KDHLF

@misc{pith2026250420645,
  author       = {Pith},
  title        = {Pith review of: LDPoly: Latent Diffusion for Polygonal Road Outline Extraction in Large-Scale Topographic Mapping},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/EX5KDHLF}},
  note         = {Machine review of arXiv:2504.20645}
}
read the original abstract

Polygonal road outline extraction from high-resolution aerial images is an important task in large-scale topographic mapping, where roads are represented as vectorized polygons, capturing essential geometric features with minimal vertex redundancy. Despite its importance, no existing method has been explicitly designed for this task. While polygonal building outline extraction has been extensively studied, the unique characteristics of roads, such as branching structures and topological connectivity, pose challenges to these methods. To address this gap, we introduce LDPoly, the first dedicated framework for extracting polygonal road outlines from high-resolution aerial images. Our method leverages a novel Dual-Latent Diffusion Model with a Channel-Embedded Fusion Module, enabling the model to simultaneously generate road masks and vertex heatmaps. A tailored polygonization method is then applied to obtain accurate vectorized road polygons with minimal vertex redundancy. We evaluate LDPoly on a new benchmark dataset, Map2ImLas, which contains detailed polygonal annotations for various topographic objects in several Dutch regions. Our experiments include both in-region and cross-region evaluations, with the latter designed to assess the model's generalization performance on unseen regions. Quantitative and qualitative results demonstrate that LDPoly outperforms state-of-the-art polygon extraction methods across various metrics, including pixel-level coverage, vertex efficiency, polygon regularity, and road connectivity. We also design two new metrics to assess polygon simplicity and boundary smoothness. Moreover, this work represents the first application of diffusion models for extracting precise vectorized object outlines without redundant vertices from remote-sensing imagery, paving the way for future advancements in this field.

Figures

Figures reproduced from arXiv: 2504.20645 by the authors.

Figure 1
Figure 1. The differences between road networks (left), road boundaries (middle), and [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. The overall architecture of our proposed method LDPoly. The double-added [PITH_FULL_IMAGE:figures/full_fig_p013_2.png] view at source ↗
Figure 3
Figure 3. An example of the training input, including the aerial image (left), the road [PITH_FULL_IMAGE:figures/full_fig_p014_3.png] view at source ↗
Figures from the paper (15 more)
Figure 4
Figure 4. Figure 4: The detailed structure of the Channel-Embedded Fusion Module. Here, [PITH_FULL_IMAGE:figures/full_fig_p017_4.png]
Figure 5
Figure 5. Figure 5: Study area map indicating the locations of Deventer, Enschede, and Giethoorn [PITH_FULL_IMAGE:figures/full_fig_p021_5.png]
Figure 6
Figure 6. Figure 6: Simplicity Factor (SF) function curves with different vertex thresholds [PITH_FULL_IMAGE:figures/full_fig_p022_6.png]
Figure 7
Figure 7. Figure 7: The statistical distribution of vertex counts in the Map2ImLas dataset, with [PITH_FULL_IMAGE:figures/full_fig_p024_7.png]
Figure 8
Figure 8. Figure 8: Illustration of the APLS computation pipeline. Left: predicted (top) and ground [PITH_FULL_IMAGE:figures/full_fig_p026_8.png]
Figure 9
Figure 9. Figure 9: Qualitative comparison of polygonal road outlines on the Deventer region. Top [PITH_FULL_IMAGE:figures/full_fig_p029_9.png]
Figure 10
Figure 10. Figure 10: Stitched visualization of large-scale polygonal road outlines in the Deventer [PITH_FULL_IMAGE:figures/full_fig_p030_10.png]
Figure 11
Figure 11. Figure 11: Qualitative comparison of polygonal road outlines on the Enschede region. Top [PITH_FULL_IMAGE:figures/full_fig_p032_11.png]
Figure 12
Figure 12. Figure 12: Qualitative comparison of polygonal road outlines on the Giethoorn region. [PITH_FULL_IMAGE:figures/full_fig_p034_12.png]
Figure 13
Figure 13. Figure 13: An example comparing predicted road mask, vertex heatmap, and extracted [PITH_FULL_IMAGE:figures/full_fig_p036_13.png]
Figure 14
Figure 14. Figure 14: Qualitative comparison of polygonal road outlines between with and without [PITH_FULL_IMAGE:figures/full_fig_p037_14.png]
Figure 15
Figure 15. Figure 15: Comparison of polygonal road outlines before (Our poly [PITH_FULL_IMAGE:figures/full_fig_p039_15.png]
Figure 16
Figure 16. Figure 16: Example of false positive predictions in the Deventer region. [PITH_FULL_IMAGE:figures/full_fig_p040_16.png]
Figure 17
Figure 17. Figure 17: Examples of inconsistent annotations in the Enschede region. [PITH_FULL_IMAGE:figures/full_fig_p041_17.png]
Figure 18
Figure 18. Figure 18: Example of cross-domain predictions in Bellingham, Innsbruck and San Fran [PITH_FULL_IMAGE:figures/full_fig_p042_18.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

63 extracted references · 52 canonical work pages

  1. [1]

    Kent, Topographic maps: methodological approaches for analyzing cartographic style, Journal of Map & Geography Libraries 5 (2) (2009) 131–156

    A. Kent, Topographic maps: methodological approaches for analyzing cartographic style, Journal of Map & Geography Libraries 5 (2) (2009) 131–156

  2. [2]

    Oude Elberink, Acquisition of 3d topgraphy: automated 3d road and building reconstruction using airborne laser scanner data and topo- graphic maps (2010)

    S. Oude Elberink, Acquisition of 3d topgraphy: automated 3d road and building reconstruction using airborne laser scanner data and topo- graphic maps (2010)

  3. [3]

    H¨ ohle, Generating topographic map data from classification results, Remote Sensing 9 (3) (2017) 224

    J. H¨ ohle, Generating topographic map data from classification results, Remote Sensing 9 (3) (2017) 224

  4. [4]

    Z. Chen, L. Deng, Y. Luo, D. Li, J. M. Junior, W. N. Gon¸ calves, A. A. M. Nurunnabi, J. Li, C. Wang, D. Li, Road extraction in remote sensing data: A survey, International journal of applied earth observation and geoinformation 112 (2022) 102833

  5. [5]

    URL https://docs.geostandaarden.nl/imgeo/catalogus/bgt/

    Geonovum, Basisregistratie grootschalige topografie gegevenscatalogus bgt 1.2, accessed: 2025-04-02 (2020). URL https://docs.geostandaarden.nl/imgeo/catalogus/bgt/

  6. [6]

    Buslaev, S

    A. Buslaev, S. Seferbekov, V. Iglovikov, A. Shvets, Fully convolutional network for automatic road extraction from satellite imagery, in: Pro- ceedings of the IEEE conference on computer vision and pattern recog- nition workshops, 2018, pp. 207–210

  7. [7]

    Chaurasia, E

    A. Chaurasia, E. Culurciello, Linknet: Exploiting encoder representa- tions for efficient semantic segmentation, in: 2017 IEEE visual commu- nications and image processing (VCIP), IEEE, 2017, pp. 1–4

  8. [8]

    L. Zhou, C. Zhang, M. Wu, D-linknet: Linknet with pretrained encoder and dilated convolution for high resolution satellite imagery road extrac- tion, in: Proceedings of the IEEE conference on computer vision and pattern recognition workshops, 2018, pp. 182–186. 43

Show all 63 references
  1. [9]

    Mei, R.-J

    J. Mei, R.-J. Li, W. Gao, M.-M. Cheng, Coanet: Connectivity attention network for road extraction from satellite imagery, IEEE Transactions on Image Processing 30 (2021) 8540–8552

  2. [10]

    Z. Yang, D. Zhou, Y. Yang, J. Zhang, Z. Chen, Transroadnet: A novel road extraction method for remote sensing images via combining high- level semantic feature and context, IEEE Geoscience and Remote Sens- ing Letters 19 (2022) 1–5

  3. [11]

    M. Zhou, H. Sui, S. Chen, J. Wang, X. Chen, Bt-roadnet: A boundary and topologically-aware neural network for road extraction from high- resolution remote sensing imagery, ISPRS Journal of Photogrammetry and Remote Sensing 168 (2020) 288–306

  4. [12]

    J. Chen, Y. Lu, Q. Yu, X. Luo, E. Adeli, Y. Wang, L. Lu, A. L. Yuille, Y. Zhou, Transunet: Transformers make strong encoders for medical image segmentation, arXiv preprint arXiv:2102.04306 (2021)

  5. [13]

    Jiang, Y

    X. Jiang, Y. Li, T. Jiang, J. Xie, Y. Wu, Q. Cai, J. Jiang, J. Xu, H. Zhang, Roadformer: Pyramidal deformable vision transformers for road network extraction with remote sensing images, International Journal of Applied Earth Observation and Geoinformation 113 (2022) 102987

  6. [14]

    Z. Chen, Y. Luo, J. Wang, J. Li, C. Wang, D. Li, Dpenet: Dual-path extraction network based on cnn and transformer for accurate building and road extraction, International Journal of Applied Earth Observation and Geoinformation 124 (2023) 103510

  7. [15]

    H. Liu, C. Wang, J. Zhao, S. Chen, H. Kong, Adaptive fourier convo- lution network for road segmentation in remote sensing images, IEEE Transactions on Geoscience and Remote Sensing (2024)

  8. [16]

    M´ attyus, W

    G. M´ attyus, W. Luo, R. Urtasun, Deeproadmapper: Extracting road topology from aerial images, in: Proceedings of the IEEE international conference on computer vision, 2017, pp. 3438–3446

  9. [17]

    Batra, S

    A. Batra, S. Singh, G. Pang, S. Basu, C. Jawahar, M. Paluri, Improved road connectivity by joint learning of orientation and segmentation, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, 2019, pp. 10385–10393. 44

  10. [18]

    Z. Li, J. D. Wegner, A. Lucchi, Topological map extraction from over- head images, in: Proceedings of the IEEE/CVF International Confer- ence on Computer Vision, 2019, pp. 1715–1724

  11. [19]

    Bastani, S

    F. Bastani, S. He, S. Abbar, M. Alizadeh, H. Balakrishnan, S. Chawla, S. Madden, D. DeWitt, Roadtracer: Automatic extraction of road net- works from aerial images, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2018, pp. 4720–4728

  12. [20]

    S. He, F. Bastani, S. Jagwani, M. Alizadeh, H. Balakrishnan, S. Chawla, M. M. Elshrif, S. Madden, M. A. Sadeghi, Sat2graph: Road graph ex- traction through graph-tensor encoding, in: Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedi...

  13. [21]

    Z. Xu, Y. Liu, L. Gan, Y. Sun, X. Wu, M. Liu, L. Wang, Rngdet: Road network graph detection by transformer in aerial images, IEEE Transactions on Geoscience and Remote Sensing 60 (2022) 1–12

  14. [22]

    Z. Xu, Y. Liu, Y. Sun, M. Liu, L. Wang, Rngdet++: Road network graph detection by transformer with instance segmentation and multi- scale features enhancement, IEEE Robotics and Automation Letters 8 (5) (2023) 2991–2998

  15. [23]

    Z. Xu, Y. Sun, M. Liu, icurb: Imitation learning-based detection of road curbs using aerial images for autonomous driving, IEEE Robotics and Automation Letters 6 (2) (2021) 1097–1104

  16. [24]

    Z. Xu, Y. Sun, M. Liu, Topo-boundary: A benchmark dataset on topo- logical road-boundary detection using aerial images for autonomous driving, IEEE Robotics and Automation Letters 6 (4) (2021) 7248–7255

  17. [25]

    Y. Hu, Z. Wang, Z. Huang, Y. Liu, Polyroad: Polyline transformer for topological road-boundary detection, IEEE Transactions on Geoscience and Remote Sensing (2023)

  18. [26]

    K. Zhao, J. Kang, J. Jung, G. Sohn, Building extraction from satel- lite images using mask r-cnn with building boundary regularization, in: Proceedings of the IEEE conference on computer vision and pattern recognition workshops, 2018, pp. 247–251. 45

  19. [27]

    Girard, D

    N. Girard, D. Smirnov, J. Solomon, Y. Tarabalka, Polygonal building extraction by frame field learning, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 5891–5900

  20. [28]

    B. Xu, J. Xu, N. Xue, G.-S. Xia, Hisup: Accurate polygonal mapping of buildings in satellite imagery with hierarchical supervision, ISPRS Journal of Photogrammetry and Remote Sensing 198 (2023) 284–296

  21. [29]

    Castrejon, K

    L. Castrejon, K. Kundu, R. Urtasun, S. Fidler, Annotating object in- stances with a polygon-rnn, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 5230–5238

  22. [30]

    Acuna, H

    D. Acuna, H. Ling, A. Kar, S. Fidler, Efficient interactive annotation of segmentation datasets with polygon-rnn++, in: Proceedings of the IEEE conference on Computer Vision and Pattern Recognition, 2018, pp. 859–868

  23. [31]

    H. Ling, J. Gao, A. Kar, W. Chen, S. Fidler, Fast interactive object an- notation with curve-gcn, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2019, pp. 5257–5266

  24. [32]

    W. Zhao, C. Persello, A. Stein, Building outline delineation: From aerial images to polygons with an improved end-to-end learning framework, ISPRS journal of photogrammetry and remote sensing 175 (2021) 119– 131

  25. [33]

    Zorzi, S

    S. Zorzi, S. Bazrafkan, S. Habenschuss, F. Fraundorfer, Polyworld: Polygonal building extraction with graph neural networks in satellite images, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 1848–1857

  26. [34]

    W. Jiao, C. Persello, G. Vosselman, Polyr-cnn: R-cnn for end-to-end polygonal building outline extraction, ISPRS Journal of Photogramme- try and Remote Sensing 218 (2024) 33–43

  27. [35]

    Y. Hu, Z. Wang, Z. Huang, Y. Liu, Polybuilding: Polygon transformer for building extraction, ISPRS Journal of Photogrammetry and Remote Sensing 199 (2023) 15–27. 46

  28. [36]

    W. Jiao, H. Cheng, G. Vosselman, C. Persello, Roipoly: Vectorized building outline extraction using vertex and logit embeddings, ISPRS Journal of Photogrammetry and Remote Sensing 224 (2025) 317–328

  29. [37]

    D. H. Douglas, T. K. Peucker, Algorithms for the reduction of the num- ber of points required to represent a digitized line or its caricature, Car- tographica: the international journal for geographic information and geovisualization 10 (2) (1973) 112–122

  30. [38]

    Zorzi, K

    S. Zorzi, K. Bittner, F. Fraundorfer, Machine-learned regularization and polygonization of building segmentation masks, in: 2020 25th Inter- national Conference on Pattern Recognition (ICPR), IEEE, 2021, pp. 3098–3105

  31. [39]

    J. Ho, A. Jain, P. Abbeel, Denoising diffusion probabilistic models, Ad- vances in neural information processing systems 33 (2020) 6840–6851

  32. [40]

    A. Q. Nichol, P. Dhariwal, Improved denoising diffusion probabilistic models, in: International conference on machine learning, PMLR, 2021, pp. 8162–8171

  33. [41]

    T. Amit, T. Shaharbany, E. Nachmani, L. Wolf, Segdiff: Im- age segmentation with diffusion probabilistic models, arXiv preprint arXiv:2112.00390 (2021)

  34. [42]

    J. Wu, W. Ji, H. Fu, M. Xu, Y. Jin, Y. Xu, Medsegdiff-v2: Diffusion- based medical image segmentation with transformer, in: Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 38, 2024, pp. 6030–6038

  35. [43]

    Rombach, A

    R. Rombach, A. Blattmann, D. Lorenz, P. Esser, B. Ommer, High- resolution image synthesis with latent diffusion models, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recogni- tion, 2022, pp. 10684–10695

  36. [44]

    T. Lin, Z. Chen, Z. Yan, W. Yu, F. Zheng, Stable diffusion segmentation for biomedical images with single-step reverse process, in: International Conference on Medical Image Computing and Computer-Assisted Inter- vention, Springer, 2024, pp. 656–666. 47

  37. [45]

    R. Feng, Y. Gao, T. H. E. Tse, X. Ma, H. J. Chang, Diffpose: Spa- tiotemporal diffusion model for video-based human pose estimation, in: Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 14861–14872

  38. [46]

    Y. Bao, S. Sivanandan, T. Karaletsos, Channel vision transformers: an image is worth 1 x 16 x 16 words, arXiv preprint arXiv:2309.16108 (2023)

  39. [47]

    Badrinarayanan, A

    V. Badrinarayanan, A. Kendall, R. Cipolla, Segnet: A deep convolu- tional encoder-decoder architecture for image segmentation, IEEE trans- actions on pattern analysis and machine intelligence 39 (12) (2017) 2481– 2495

  40. [48]

    S. C. Yurtkulu, Y. H. S ¸ahin, G. Unal, Semantic segmentation with extended deeplabv3 architecture, in: 2019 27th Signal Processing and Communications Applications Conference (SIU), IEEE, 2019, pp. 1–4

  41. [49]

    Ronneberger, P

    O. Ronneberger, P. Fischer, T. Brox, U-net: Convolutional networks for biomedical image segmentation, in: Medical image computing and computer-assisted intervention–MICCAI 2015: 18th international con- ference, Munich, Germany, October 5-9, 2015, proceedings, part III 18, Spri...

  42. [50]

    Z. Liu, Y. Lin, Y. Cao, H. Hu, Y. Wei, Z. Zhang, S. Lin, B. Guo, Swin transformer: Hierarchical vision transformer using shifted windows, in: Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 10012–10022

  43. [51]

    Mnih, Machine learning for aerial image labeling, University of Toronto (Canada), 2013

    V. Mnih, Machine learning for aerial image labeling, University of Toronto (Canada), 2013

  44. [52]

    B. Liao, S. Chen, X. Wang, T. Cheng, Q. Zhang, W. Liu, C. Huang, Maptr: Structured modeling and learning for online vectorized hd map construction, arXiv preprint arXiv:2208.14437 (2022)

  45. [53]

    B. Liao, S. Chen, Y. Zhang, B. Jiang, Q. Zhang, W. Liu, C. Huang, X. Wang, Maptrv2: An end-to-end framework for online vectorized hd map construction, International Journal of Computer Vision (2024) 1– 23. 48

  46. [54]

    W. Ding, L. Qiao, X. Qiu, C. Zhang, Pivotnet: Vectorized pivot learning for end-to-end hd map construction, in: Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 3672–3682

  47. [55]

    S. P. Mohanty, J. Czakon, K. A. Kaczmarek, A. Pyskir, P. Tarasiewicz, S. Kunwar, J. Rohrbach, D. Luo, M. Prasad, S. Fleer, et al., Deep learning for understanding satellite imagery: An experimental survey, Frontiers in Artificial Intelligence 3 (2020)

  48. [56]

    Maggiori, Y

    E. Maggiori, Y. Tarabalka, G. Charpiat, P. Alliez, Can semantic la- beling methods generalize to any city? the inria aerial image labeling benchmark, in: 2017 IEEE International geoscience and remote sensing symposium (IGARSS), IEEE, 2017, pp. 3226–3229

  49. [57]

    Baranchuk, I

    D. Baranchuk, I. Rubachev, A. Voynov, V. Khrulkov, A. Babenko, Label-efficient semantic segmentation with diffusion models, arXiv preprint arXiv:2112.03126 (2021)

  50. [58]

    J. Wu, R. Fu, H. Fang, Y. Zhang, Y. Yang, H. Xiong, H. Liu, Y. Xu, Medsegdiff: Medical image segmentation with diffusion probabilistic model, in: Medical Imaging with Deep Learning, PMLR, 2024, pp. 1623–1639

  51. [59]

    Cheng, R

    B. Cheng, R. Girshick, P. Doll´ ar, A. C. Berg, A. Kirillov, Boundary iou: Improving object-centric image segmentation evaluation, in: Pro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 15334–15342

  52. [60]

    Avbelj, R

    J. Avbelj, R. M¨ uller, R. Bamler, A metric for polygon comparison and building extraction evaluation, IEEE Geoscience and Remote Sensing Letters 12 (1) (2014) 170–174

  53. [61]

    Van Etten, D

    A. Van Etten, D. Lindenbaum, T. M. Bacastow, Spacenet: A remote sensing dataset and challenge series, arXiv preprint arXiv:1807.01232 (2018)

  54. [62]

    L.-C. Chen, Y. Zhu, G. Papandreou, F. Schroff, H. Adam, Encoder- decoder with atrous separable convolution for semantic image segmen- tation, in: Proceedings of the European conference on computer vision (ECCV), 2018, pp. 801–818. 49

  55. [63]

    Maggiori, Y

    E. Maggiori, Y. Tarabalka, G. Charpiat, P. Alliez, Can semantic labeling methods generalize to any city? the inria aerial image labeling bench- mark, in: IEEE International Geoscience and Remote Sensing Sympo- sium (IGARSS), IEEE, 2017. 50

Pith tools

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