Pith. sign in

REVIEW 3 major objections 4 minor 1 cited by

Multi-Level Embedding and Alignment Network with Consistency and Invariance Learning for Cross-View Geo-Localization

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

Pith's one-line read A lightweight multi-branch network is claimed to match state-of-the-art cross-view geo-localization accuracy while cutting parameters by 62.17% and computation by 70.99%.

desk verdict Competent, incremental CVGL paper with a plausible lightweight-efficiency result, but the printed CDA loss has an inverted sign that undermines the key ablation until fixed. read the letter →

arxiv 2412.14819 v4 pith:443LBFY4 submitted 2024-12-19 cs.CV

classification cs.CV
keywords cross-viewgeo-localizationdrone-to-satelliteretrievalmulti-levelembeddinglightweightnetworkcross-domainalignmentconsistencyandinvariancelearningdilatedconvolutioncontrastive
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

The paper proposes MEAN, a lightweight network that matches drone images to satellite images of the same location. It claims that a deliberately small ConvNeXt-Tiny backbone, augmented by three branches for progressive multi-scale embeddings, global-to-local context, and cross-domain alignment, can learn viewpoint-invariant features that larger models capture only with much more capacity. On the University-1652 and SUES-200 benchmarks, the model reports recall and average precision at or near the best published levels while using 36.50 million parameters and 26.18 GFLOPs, a 62.17% parameter reduction and 70.99% compute reduction relative to the strongest comparison model. The work matters because drone-based geo-localization often runs on platforms with tight compute and memory budgets.

What carries the argument

The central object is the MEAN network itself: a shared ConvNeXt-Tiny backbone followed by three parallel branches whose features are trained with three different losses. The mechanism is the combination of (1) progressive multi-scale dilated convolutions that create diverse embeddings without adding parameters, (2) a global-pooling branch that preserves whole-scene context, and (3) an alignment branch that recalibrates feature distributions in a shared embedding space. The CDA loss, defined as $\alpha C(f^o_d,f^o_s) + \beta D(f^o_d,f^o_s)$, is the component intended to enforce cross-view consistency and invariance: $C$ is a cosine-similarity term and $D$ is a mean-squared-error term. As printed in Eq. (12), $D = 1 - \frac{1}{M}\sum_k \|f^o_{dk}-f^o_{sk}\|^2$, so minimizing $D$ would maximize the squared distance between matched features rather than reduce it.

What would settle it

Run the published training procedure with Eq. (12) unchanged and check whether the CDA-loss row in the ablation still matches Table VII; if it does, the implementation must be using a different formula than the paper prints, and if it does not, the component as written would hurt consistency. A direct gradient check on $D$ with respect to the feature difference $f^o_d - f^o_s$ would show whether the update reduces or increases separation.

Watch

Extended reading notes

Core claim

The central claim is that a shallow backbone can be made competitive with much larger cross-view geo-localization models if the missing depth is supplied by multi-level embedding branches and a dedicated alignment loss. The progressive extension branch uses dilated convolutions with rates 1, 2, and 3 to generate diverse multi-scale embeddings, optimized by an InfoNCE contrastive loss; the global extension branch pools global features and optimizes them with cross-entropy; the cross-domain enhanced alignment branch projects features into a higher-dimensional space, applies an adaptive calibration step, fuses high- and low-dimensional representations, and is trained with a CDA loss combining cosine similarity and a mean-squared-error term. With this design, MEAN reports 93.55% R@1 and 94.53% AP in drone-to-satellite retrieval and 96.01% R@1 and 92.08% AP in satellite-to-drone retrieval on University-1652, plus strong cross-domain transfer to SUES-200 across flight altitudes.

Load-bearing premise

The load-bearing premise is that minimizing the CDA loss term printed in Eq. (12) improves cross-view feature consistency, but as printed that term equals $1 - \frac{1}{M}\sum_k \|f^o_{dk}-f^o_{sk}\|^2$, so minimizing it drives matched features apart rather than together.

Editorial extensions

If this is right

  • On University-1652, MEAN reaches 93.55% R@1 in drone-to-satellite and 96.01% R@1 in satellite-to-drone retrieval with 36.50M parameters and 26.18 GFLOPs, roughly two-thirds fewer parameters and about 71% less compute than the DAC baseline.
  • On SUES-200, it reports 100% R@1 in satellite-to-drone retrieval at 200m, 250m, and 300m altitudes and 99.52% R@1 in drone-to-satellite retrieval at 300m, indicating stability across flight heights.
  • In cross-domain transfer (trained on University-1652, tested on SUES-200), MEAN beats the Sample4Geo and DAC baselines in 13 of 18 metrics despite the smaller model.
  • Across ten weather conditions on multi-weather University-1652, MEAN reports the top R@1 in all ten drone-to-satellite settings and in eight of ten satellite-to-drone settings.

Reading between the lines

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

  • If the printed CDA equation is taken literally, the ablation gains attributed to that loss cannot be explained by the stated consistency mechanism; a corrected sign that minimizes $\frac{1}{M}\sum_k \|f^o_{dk}-f^o_{sk}\|^2$ would make the loss match the prose and preserve the ablation story.
  • The efficiency comparison selects each method's best-performing model state, so the parameter and GFLOP advantages could shift slightly if measured at matched epochs or matched accuracy, though not by an order of magnitude.
  • A parameter-matched comparison that gave a competing method the same 36.5M budget would test whether the multi-branch structure itself, rather than total capacity, is what delivers the reported accuracy.
  • Because the three branches share the backbone, the marginal cost of each branch could be measured by ablating branches while holding the backbone fixed, isolating where the accuracy gains actually come from.
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 proposes MEAN, a lightweight multi-branch network for cross-view geo-localization. Using a ConvNeXt-Tiny backbone and three auxiliary branches (progressive extension embedding, global extension embedding, and cross-domain enhanced alignment), the method combines InfoNCE, cross-entropy, and a proposed CDA loss. Experiments on University-1652, Multi-weather University-1652, and SUES-200 report state-of-the-art or competitive accuracy with 36.50M parameters and 26.18 GFLOPs, corresponding to claimed reductions of 62.17% in parameters and 70.99% in computational cost versus the compared state-of-the-art model DAC.

Significance. If the method is sound and reproducible, the result is a useful contribution: it demonstrates that competitive cross-view geo-localization accuracy can be obtained with a substantially lighter architecture, and it provides extensive benchmarking including multi-weather and cross-domain generalization. The efficiency claim is arithmetically consistent with the reported parameter and GFLOPs counts, and the ablation study gives a clear component-by-component breakdown. However, the central mechanism of the proposed CDA loss is internally inconsistent as printed, and several hyperparameters needed to train the model are not reported. These issues prevent the contribution from being assessed or reproduced as written.

major comments (3)
  1. [Section III-E, Eq. (12)] The local consistency term D(f_o_d, f_o_s) is defined as 1 - (1/M) sum_k ||f_o_dk - f_o_sk||^2. Since LCDA = αC + βD is minimized, minimizing D with β > 0 maximizes the squared distance between matched drone and satellite features. This is the opposite of the stated goal in Section III-E of promoting local semantic consistency and invariance between f_o_d and f_o_s. The C term in Eq. (11) is correct (minimizing 1 - cosine similarity maximizes cosine similarity), so the problem is isolated to D. The ablation in Table VII attributes the largest single accuracy gain to adding L(D) (Drone→Satellite R@1 from 92.07 to 92.84), so either the printed equation is not what is implemented, in which case the correct loss must be stated, or the implementation follows the equation, in which case the claimed consistency mechanism is not what produces the gain. This must be resolved before the paper can be evaluated.
  2. [Section III-E and Section IV-B] The loss weights are not specified. Eq. (16) introduces λ1, λ2, λ3 for the total loss, and Eq. (10) introduces α and β for the two CDA components, but the implementation details in Section IV-B mention only that α and β are balancing factors and that τ is learnable. Without numerical values for α, β, λ1, λ2, and λ3, the ablation results in Table VII and the final accuracy numbers cannot be reproduced, and the relative contribution of L(D) versus L(C) cannot be verified.
  3. [Section IV-E, Tables VIII-X] The dilation rate configuration is selected by comparing many candidate configurations on the University-1652 test set. Tables VIII, IX, and X evaluate uniform and varied dilation rate combinations and then report the configuration (1,2,3) that achieves the best test accuracy. No validation split or nested cross-validation is used. This introduces selection-on-the-test-set bias, so the reported final accuracies, and the claim that the chosen dilation rates are optimal, are likely optimistic. A validation-based selection procedure or an explicit statement of how test labels were not used in configuration choice is needed.
minor comments (4)
  1. [Section IV-C, Section VI] The model name is inconsistently written as both MEAN and MAEN in several places, including the comparison text in Section IV-C and the conclusion in Section VI. Please unify the spelling.
  2. [Section III-E, Eq. (13)] The text after Eq. (13) says that f++_gd 'represents an encoded satellite image', but the notation and the context indicate that f++_gd should be the encoded aerial/drone image. This typo should be corrected.
  3. [Section IV-G and Fig. 6] The caption and text refer to the 'SEUS-200' dataset, which should be 'SUES-200'.
  4. [Section III-B, Eq. (2)] The DEG module description does not make clear whether the dropout D(·) is applied before the fusion in Eq. (3) or only to the classifier input; the equation places D on f^-_gi, while the text says 'the DEG module generates two identical feature representations, both of which undergo a dropout operation.' Please clarify the exact data flow.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity found; MEAN's reported gains are empirical benchmark measurements against external baselines, not derivations from its own inputs.

full rationale

This paper makes no first-principles derivation claim; it proposes an architecture and reports retrieval accuracy, parameter count, and FLOPs measured on public datasets (University-1652, SUES-200, Multi-weather University-1652) against externally published baselines. The losses in Eqs. (10)-(16) are defined independently of the evaluation metrics, and no equation equates a reported result to a training input or fitted parameter by construction. Parameter count and computational complexity are standard measured properties of the architecture, not predictions derived from the method itself. The paper contains no load-bearing self-citations; its references are prior external works such as DAC, Sample4Geo, and MCCG, and the authors do not cite their own prior results to justify the central claim. The sign inconsistency in Eq. (12), where minimizing D = 1 - (1/M) sum ||f_od - f_os||^2 maximizes the squared distance between matched features, is a serious correctness and reproducibility flaw that inverts the stated local-consistency mechanism, but it is not a circularity: the reported R@1 values are not forced to equal that loss by construction. Similarly, the dilation-rate selection described in Section V and Tables VIII-X, which tunes hyperparameters on the test set, is an evaluation-bias concern rather than a case where a prediction reduces to its input. The central empirical claims remain independently checkable against external data and baselines, so the appropriate circularity score is 0.

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

The central efficiency-accuracy claim rests on many hyperparameters that are either unreported or chosen by test-set performance. The CDA loss, a key proposed component, is internally inconsistent as printed, adding to the risk that the reported results are not reproducible.

free parameters (5)
  • CDA loss weights alpha, beta
    Balance the cosine and MSE terms in Eq. (10); values are not provided in the paper.
  • Total loss weights lambda1, lambda2, lambda3
    Balance CDA, InfoNCE, and CE losses in Eq. (16); values are unspecified.
  • Fusion factor omega
    Weights the augmented and balanced fusion in Eq. (3); no value or schedule is given.
  • Dilation rates in DEG and DEC = 1,2,3
    Selected from many candidates by best test-set performance in Tables VIII-X, which risks selection bias.
  • Temperature tau in InfoNCE = learnable
    Set as a learnable parameter; the final learned value is not reported.
assumptions (4)
  • domain assumption Cross-view feature pairs from the same location should be closer in the learned embedding space than pairs from different locations.
    This is the fundamental premise of the retrieval loss, stated in the problem formulation in Section III.
  • domain assumption ImageNet pretraining on ConvNeXt-Tiny transfers to drone and satellite imagery.
    The backbone is initialized with ImageNet weights, relying on transferability to this novel domain.
  • standard math Cosine similarity and mean squared error are appropriate measures of feature alignment.
    Used in the CDA loss (Eqs. 11 and 12); standard tools, but the MSE term is printed incorrectly.
  • domain assumption Evaluation on the University-1652 and SUES-200 test sets is an unbiased estimate of generalization.
    The paper selects hyperparameters (dilation rates) on the test set, which compromises this assumption.
invented entities (4)
  • CDA loss
    purpose: Align cross-view features by combining cosine similarity and mean squared error.
    New loss proposed in Eq. (10); the only evidence is the paper's own ablation, and the local term as printed actively pushes features apart.
  • Progressive Extension Embedding (PEE) branch
    purpose: Generate diverse multi-scale embeddings with dilated convolutions.
    Proposed architecture module; no evidence outside this paper.
  • Global Extension Embedding (GEE) branch
    purpose: Add global context via mean pooling and classification.
    Proposed architecture module; no independent verification.
  • Cross-Domain Enhanced Alignment (CEA) branch
    purpose: Apply adaptive calibration and multi-level fusion to align cross-domain features.
    Proposed architecture module; inspired by DAC [22] but with no external validation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-Level Embedding and Alignment Network with Consistency and Invariance Learning for Cross-View Geo-Localization." pith.science (2026). https://pith.science/paper/443LBFY4

@misc{pith2026241214819,
  author       = {Pith},
  title        = {Pith review of: Multi-Level Embedding and Alignment Network with Consistency and Invariance Learning for Cross-View Geo-Localization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/443LBFY4}},
  note         = {Machine review of arXiv:2412.14819}
}
read the original abstract

Cross-View Geo-Localization (CVGL) involves determining the localization of drone images by retrieving the most similar GPS-tagged satellite images. However, the imaging gaps between platforms are often significant and the variations in viewpoints are substantial, which limits the ability of existing methods to effectively associate cross-view features and extract consistent and invariant characteristics. Moreover, existing methods often overlook the problem of increased computational and storage requirements when improving model performance. To handle these limitations, we propose a lightweight enhanced alignment network, called the Multi-Level Embedding and Alignment Network (MEAN). The MEAN network uses a progressive multi-level enhancement strategy, global-to-local associations, and cross-domain alignment, enabling feature communication across levels. This allows MEAN to effectively connect features at different levels and learn robust cross-view consistent mappings and modality-invariant features. Moreover, MEAN adopts a shallow backbone network combined with a lightweight branch design, effectively reducing parameter count and computational complexity. Experimental results on the University-1652 and SUES-200 datasets demonstrate that MEAN reduces parameter count by 62.17% and computational complexity by 70.99% compared to state-of-the-art models, while maintaining competitive or even superior performance. Our code and models will be released on https://github.com/ISChenawei/MEAN.

Figures

Figures reproduced from arXiv: 2412.14819 by the authors.

Figure 1
Figure 1. The balance between model performance and parameter count. Model [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The pipeline of the proposed network includes a ConvNeXt-Tiny backbone and three core branches. The progressive extension embedding branch (PEE) [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Illustration of Global Semantic and Local Geometric Feature Align [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: In the cross-view drone navigation task, (a-e) illustrate the intra-class and inter-class distances of features, where intra-class and inter-class distances [PITH_FULL_IMAGE:figures/full_fig_p012_4.png]
Figure 6
Figure 6. Figure 6: Top-5 Retrieval Results of the Proposed MEAN on the SEUS-200 [PITH_FULL_IMAGE:figures/full_fig_p013_6.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Scale-adaptive UAV Geo-localization via Height-aware Partition Learning

    cs.CV 2024-12 conditional novelty 5.0 of 10

    A height-aware partition network (SaLPN) adjusts the size of feature partitions based on relative drone/satellite height, improving UAV geo-localization accuracy under scale mismatches.

Reference graph

Works this paper leans on

50 extracted references · 46 canonical work pages · cited by 1 Pith paper

  1. [1]

    University-1652: A multi-view multi- source benchmark for drone-based geo-localization,

    Z. Zheng, Y . Wei, and Y . Yang, “University-1652: A multi-view multi- source benchmark for drone-based geo-localization,” in ACM Interna- tional Conference on Multimedia , no. 9, 2020, pp. 1395–1403

  2. [2]

    Accurate object localization in remote sensing images based on convolutional neural networks,

    Y . Long, Y . Gong, Z. Xiao, and Q. Liu, “Accurate object localization in remote sensing images based on convolutional neural networks,” IEEE Transactions on Geoscience and Remote Sensing , vol. 55, no. 5, pp. 2486–2498, 2017

  3. [3]

    Investigating the role of image retrieval for visual localization,

    M. Humenberger, Y . Cabon, N. Pion, P. Weinzaepfel, D. Lee, N. Guérin, T. Sattler, and G. Csurka, “Investigating the role of image retrieval for visual localization,” International Journal of Computer Vision, vol. 130, no. 7, pp. 1811–1836, 2022

  4. [4]

    Cross-view geo- localization via learning disentangled geometric layout correspondence,

    X. Zhang, X. Li, W. Sultani, Y . Zhou, and S. Wshah, “Cross-view geo- localization via learning disentangled geometric layout correspondence,” in AAAI Conference on Artificial Intelligence , vol. 37, no. 3, 2023, pp. 3480–3488

  5. [5]

    Sample4Geo: Hard negative sampling for cross-view geo-localisation,

    F. Deuser, K. Habel, and N. Oswald, “Sample4Geo: Hard negative sampling for cross-view geo-localisation,” in IEEE/CVF International Conference on Computer Vision , 2023, pp. 16 847–16 856

  6. [6]

    GeoDTR+: Toward generic cross-view geolocalization via geometric disentangle- ment,

    X. Zhang, X. Li, W. Sultani, C. Chen, and S. Wshah, “GeoDTR+: Toward generic cross-view geolocalization via geometric disentangle- ment,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 46, no. 12, pp. 10 419–10 433, 2024

  7. [7]

    Fdgnet: Frequency disentanglement and data geometry for domain generalization in cross- scene hyperspectral image classification,

    B. Qin, S. Feng, C. Zhao, B. Xi, W. Li, and R. Tao, “Fdgnet: Frequency disentanglement and data geometry for domain generalization in cross- scene hyperspectral image classification,” IEEE Transactions on Neural Networks and Learning Systems , pp. 1–14, 2024

  8. [8]

    Cross-domain few-shot learning based on feature disentanglement for hyperspectral image classification,

    B. Qin, S. Feng, C. Zhao, W. Li, R. Tao, and W. Xiang, “Cross-domain few-shot learning based on feature disentanglement for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing, vol. 62, pp. 1–14, 2024

Show all 50 references
  1. [9]

    Cross- domain few-shot learning based on decoupled knowledge distillation for hyperspectral image classification,

    S. Feng, H. Zhang, B. Xi, C. Zhao, Y . Li, and J. Chanussot, “Cross- domain few-shot learning based on decoupled knowledge distillation for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–14, 2024

  2. [10]

    MCCG: A convnext- based multiple-classifier method for cross-view geo-localization,

    T. Shen, Y . Wei, L. Kang, S. Wan, and Y .-H. Yang, “MCCG: A convnext- based multiple-classifier method for cross-view geo-localization,” IEEE Transactions on Circuits and Systems for Video Technology , vol. 34, no. 3, pp. 1456–1468, 2023

  3. [11]

    Multibranch joint representation learning based on information fusion strategy for cross-view geo-localization,

    F. Ge, Y . Zhang, Y . Liu, G. Wang, S. Coleman, D. Kerr, and L. Wang, “Multibranch joint representation learning based on information fusion strategy for cross-view geo-localization,” IEEE Transactions on Geo- science and Remote Sensing , vol. 62, pp. 1–16, 2024

  4. [12]

    SDPL: Shifting-dense partition learning for UA V-view geo- localization,

    Q. Chen, T. Wang, Z. Yang, H. Li, R. Lu, Y . Sun, B. Zheng, and C. Yan, “SDPL: Shifting-dense partition learning for UA V-view geo- localization,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 34, no. 11, pp. 11 810–11 824, 2024

  5. [13]

    TransFG: A cross- view geo-localization of satellite and UA Vs imagery pipeline using transformer-based feature aggregation and gradient guidance,

    H. Zhao, K. Ren, T. Yue, C. Zhang, and S. Yuan, “TransFG: A cross- view geo-localization of satellite and UA Vs imagery pipeline using transformer-based feature aggregation and gradient guidance,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–12, 2024

  6. [14]

    A practical cross-view image matching method between UA V and satellite for UA V-based geo- localization,

    L. Ding, J. Zhou, L. Meng, and Z. Long, “A practical cross-view image matching method between UA V and satellite for UA V-based geo- localization,” Remote Sensing, vol. 13, no. 1-20, p. 47, 2020

  7. [15]

    Joint representation learning and keypoint detection for cross-view geo-localization,

    J. Lin, Z. Zheng, Z. Zhong, Z. Luo, S. Li, Y . Yang, and N. Sebe, “Joint representation learning and keypoint detection for cross-view geo-localization,” IEEE Transactions on Image Processing , vol. 31, pp. 3780–3792, 2022

  8. [16]

    Each part matters: Local patterns facilitate cross-view geo-localization,

    T. Wang, Z. Zheng, C. Yan, J. Zhang, Y . Sun, B. Zheng, and Y . Yang, “Each part matters: Local patterns facilitate cross-view geo-localization,” IEEE Transactions on Circuits and Systems for Video Technology , vol. 32, no. 2, pp. 867–879, 2021

  9. [17]

    Beyond geo-localization: Fine-grained orientation of street-view images by cross-view matching with satellite imagery,

    W. Hu, Y . Zhang, Y . Liang, Y . Yin, A. Georgescu, A. Tran, H. Kruppa, S.-K. Ng, and R. Zimmermann, “Beyond geo-localization: Fine-grained orientation of street-view images by cross-view matching with satellite imagery,” in ACM International Conference on Multimedia , 2022, p...

  10. [18]

    Cross-view geo-localization with layer-to- layer transformer,

    H. Yang, X. Lu, and Y . Zhu, “Cross-view geo-localization with layer-to- layer transformer,” Advances in Neural Information Processing Systems, vol. 34, pp. 29 009–29 020, 2021

  11. [19]

    TransGeo: Transformer is all you need for cross-view image geo-localization,

    S. Zhu, M. Shah, and C. Chen, “TransGeo: Transformer is all you need for cross-view image geo-localization,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 1162–1171

  12. [20]

    Multilevel feedback joint representation learning network based on adaptive area elimination for cross-view geo-localization,

    F. Ge, Y . Zhang, L. Wang, W. Liu, Y . Liu, S. Coleman, and D. Kerr, “Multilevel feedback joint representation learning network based on adaptive area elimination for cross-view geo-localization,” IEEE Trans- actions on Geoscience and Remote Sensing , vol. 62, pp. 1–15, 2024

  13. [21]

    A survey on the convergence of edge computing and AI for UA Vs: Opportunities and challenges,

    P. McEnroe, S. Wang, and M. Liyanage, “A survey on the convergence of edge computing and AI for UA Vs: Opportunities and challenges,” IEEE Internet of Things Journal , vol. 9, no. 17, pp. 15 435–15 459, 2022

  14. [22]

    Enhancing cross-view geo-localization with domain alignment and scene consistency,

    P. Xia, Y . Wan, Z. Zheng, Y . Zhang, and J. Deng, “Enhancing cross-view geo-localization with domain alignment and scene consistency,” IEEE 15 Transactions on Circuits and Systems for Video Technology , pp. 1–12, 2024

  15. [23]

    Optimal feature transport for cross-view image geo-localization,

    Y . Shi, X. Yu, L. Liu, T. Zhang, and H. Li, “Optimal feature transport for cross-view image geo-localization,” in AAAI Conference on Artificial Intelligence, vol. 34, no. 07, 2020, pp. 11 990–11 997

  16. [24]

    F3-Net: Multiview scene matching for drone-based geo-localization,

    B. Sun, G. Liu, and Y . Yuan, “F3-Net: Multiview scene matching for drone-based geo-localization,” IEEE Transactions on Geoscience and Remote Sensing, vol. 61, pp. 1–11, 2023

  17. [25]

    A transformer-based fea- ture segmentation and region alignment method for UA V-view geo- localization,

    M. Dai, J. Hu, J. Zhuang, and E. Zheng, “A transformer-based fea- ture segmentation and region alignment method for UA V-view geo- localization,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 32, no. 7, pp. 4376–4389, 2021

  18. [26]

    UA V-satellite view syn- thesis for cross-view geo-localization,

    X. Tian, J. Shao, D. Ouyang, and H. T. Shen, “UA V-satellite view syn- thesis for cross-view geo-localization,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 32, no. 7, pp. 4804–4815, 2021

  19. [27]

    Lending orientation to neural networks for cross- view geo-localization,

    L. Liu and H. Li, “Lending orientation to neural networks for cross- view geo-localization,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2019, pp. 5617–5626

  20. [28]

    Cross-modality image matching network with modality-invariant feature representation for airborne-ground thermal infrared and visible datasets,

    S. Cui, A. Ma, Y . Wan, Y . Zhong, B. Luo, and M. Xu, “Cross-modality image matching network with modality-invariant feature representation for airborne-ground thermal infrared and visible datasets,” IEEE Trans- actions on Geoscience and Remote Sensing , vol. 60, pp. 1–14, 2021

  21. [29]

    A convnet for the 2020s,

    Z. Liu, H. Mao, C.-Y . Wu, C. Feichtenhofer, T. Darrell, and S. Xie, “A convnet for the 2020s,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 11 976–11 986

  22. [30]

    Cross-view image geolocalization,

    T.-Y . Lin, S. Belongie, and J. Hays, “Cross-view image geolocalization,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2013, pp. 891–898

  23. [31]

    A framework for global vehicle localization using stereo images and satellite and road maps,

    T. Senlet and A. Elgammal, “A framework for global vehicle localization using stereo images and satellite and road maps,” in IEEE International Conference on Computer Vision Workshops , 2011, pp. 2034–2041

  24. [32]

    Ground-to-aerial image geo-localization with a hard exemplar reweighting triplet loss,

    S. Cai, Y . Guo, S. Khan, J. Hu, and G. Wen, “Ground-to-aerial image geo-localization with a hard exemplar reweighting triplet loss,” in IEEE/CVF International Conference on Computer Vision , 2019, pp. 8391–8400

  25. [33]

    Where am i looking at? joint location and orientation estimation by cross-view matching,

    Y . Shi, X. Yu, D. Campbell, and H. Li, “Where am i looking at? joint location and orientation estimation by cross-view matching,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2020, pp. 4064–4072

  26. [34]

    Coming down to earth: Satellite-to-street view synthesis for geo-localization,

    A. Toker, Q. Zhou, M. Maximov, and L. Leal-Taixe, “Coming down to earth: Satellite-to-street view synthesis for geo-localization,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 6488–6497

  27. [35]

    Sat2density: Faithful density learning from satellite-ground image pairs,

    M. Qian, J. Xiong, G.-S. Xia, and N. Xue, “Sat2density: Faithful density learning from satellite-ground image pairs,” in IEEE/CVF International Conference on Computer Vision , 2023, pp. 3683–3692

  28. [36]

    Predicting ground- level scene layout from aerial imagery,

    M. Zhai, Z. Bessinger, S. Workman, and N. Jacobs, “Predicting ground- level scene layout from aerial imagery,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2017, pp. 867–875

  29. [37]

    Lending orientation to neural networks for cross- view geo-localization,

    L. Liu and H. Li, “Lending orientation to neural networks for cross- view geo-localization,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2019, pp. 5624–5633

  30. [38]

    On the location dependence of convolu- tional neural network features,

    S. Workman and N. Jacobs, “On the location dependence of convolu- tional neural network features,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops , 2015, pp. 70–78

  31. [39]

    Netvlad: Cnn architecture for weakly supervised place recognition,

    R. Arandjelovic, P. Gronat, A. Torii, T. Pajdla, and J. Sivic, “Netvlad: Cnn architecture for weakly supervised place recognition,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2016, pp. 5297–5307

  32. [40]

    Multiple- environment self-adaptive network for aerial-view geo-localization,

    T. Wang, Z. Zheng, Y . Sun, C. Yan, Y . Yang, and T.-S. Chua, “Multiple- environment self-adaptive network for aerial-view geo-localization,” Pattern Recognition, vol. 152, p. 110363, 2024

  33. [41]

    SUES-200: A multi-height multi-scene cross-view image benchmark across drone and satellite,

    R. Zhu, L. Yin, M. Yang, F. Wu, Y . Yang, and W. Hu, “SUES-200: A multi-height multi-scene cross-view image benchmark across drone and satellite,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 33, no. 9, pp. 4825–4839, 2023

  34. [42]

    Direction-guided multi-scale feature fusion network for geo- localization,

    H. Lv, H. Zhu, R. Zhu, F. Wu, C. Wang, M. Cai, and K. Zhang, “Direction-guided multi-scale feature fusion network for geo- localization,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–13, 2024

  35. [43]

    Swin transformer: Hierarchical vision transformer using shifted windows,

    Z. Liu, Y . Lin, Y . Cao, H. Hu, Y . Wei, Z. Zhang, S. Lin, and B. Guo, “Swin transformer: Hierarchical vision transformer using shifted windows,” in IEEE/CVF International Conference on Computer Vision , 2021, pp. 10 012–10 022

  36. [44]

    CCR: A counterfactual causal reasoning- based method for cross-view geo-localization,

    H. Du, J. He, and Y . Zhao, “CCR: A counterfactual causal reasoning- based method for cross-view geo-localization,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 34, no. 11, pp. 11 630– 11 643, 2024

  37. [45]

    CAMP: Across-view geo-localization method using contrastive attributes mining and position-aware partitioning,

    Q. Wu, Y . Wan, Z. Zheng, Y . Zhang, G. Wang, and Z. Zhao, “CAMP: Across-view geo-localization method using contrastive attributes mining and position-aware partitioning,” IEEE Transactions on Geoscience and Remote Sensing, vol. 62, pp. 1–14, 2024

  38. [46]

    Accurate 3-DoF camera geo-localization via ground-to-satellite image match- ing,

    Y . Shi, X. Yu, L. Liu, D. Campbell, P. Koniusz, and H. Li, “Accurate 3-DoF camera geo-localization via ground-to-satellite image match- ing,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 45, no. 3, pp. 2682–2697, 2022

  39. [47]

    SMDT: Cross- view geo-localization with image alignment and transformer,

    X. Tian, J. Shao, D. Ouyang, A. Zhu, and F. Chen, “SMDT: Cross- view geo-localization with image alignment and transformer,” in IEEE International Conference on Multimedia and Expo , 2022, pp. 1–6

  40. [48]

    Aligning geometric spatial layout in cross- view geo-localization via feature recombination,

    Q. Zhang and Y . Zhu, “Aligning geometric spatial layout in cross- view geo-localization via feature recombination,” in AAAI Conference on Artificial Intelligence , vol. 38, no. 7, 2024, pp. 7251–7259

  41. [49]

    Representation learning with contrastive predictive coding,

    A. v. d. Oord, Y . Li, and O. Vinyals, “Representation learning with contrastive predictive coding,” arXiv preprint arXiv:1807.03748 , 2018

  42. [50]

    Visualizing data using t-SNE

    L. Van der Maaten and G. Hinton, “Visualizing data using t-SNE.” Journal of Machine Learning Research , vol. 9, no. 11, pp. 2579–2605, 2008

Pith tools

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