Pith. sign in

REVIEW 4 major objections 7 minor 1 cited by

VFM-Guided Semi-Supervised Detection Transformer under Source-Free Constraints for Remote Sensing Object Detection

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

Pith's one-line read With 5% labels, VFM-guided detector hits 77.5% mAP

desk verdict VG-DETR is a solid empirical combination for semi-supervised source-free remote sensing detection, but the load-bearing coordinate-alignment assumption between VFM and augmented student features needs to be pinned down before the gains are credible. read the letter →

arxiv 2508.11167 v2 pith:O7LRIFG5 submitted 2025-08-15 cs.CV

classification cs.CV
keywords source-freeobjectdetectionsemi-supervisedlearningremotesensingvisionfoundationmodelDINOv2pseudo-labelminingdomainadaptationtransformer
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 claims that a source-free object detector for remote sensing can be stabilized and made accurate by a small amount of labeled target data plus guidance from a frozen vision foundation model. The proposed VG-DETR builds a mean-teacher semi-supervised training loop around the DINO detector, using features from DINOv2 computed once offline as an external reference. Those features drive two additions: a pseudo-label mining strategy that rescues low-confidence but correct predictions by comparing instance features with class-wise prototypes, and a dual-level alignment loss that pulls detector backbone and query features toward VFM embeddings. With only 5% labeled target images, the method reports 77.5% mAP on xView to DOTA, with consistent gains across synthetic-to-real and cross-modal remote sensing transfer. The paper's own experiments also show that plain source-free mean-teacher training collapses in these settings, while the semi-supervised VFM-guided version trains stably.

What carries the argument

The central object is the offline-extracted DINOv2 feature map set $F^i$ and the class-wise reference prototypes $P^{\text{ref}}$ derived from labeled boxes by K-means, used as an external judge of pseudo-label reliability and a semantic anchor for alignment. The VPM strategy applies a dual threshold: predictions with confidence between a lower bound and a dynamic upper bound are kept when their VFM instance feature's cosine similarity with the matching prototype exceeds 0.5. The DVA module performs Sinkhorn-based soft clustering of object queries into $K$ fine-grained prototypes per class, with a contrastive loss $L_{\text{con}}$ pulling them toward the VFM prototypes, and an image-level co

What would settle it

Run VG-DETR with an augmentation pipeline that includes random flips and crops and compare against a version with geometric augmentations disabled or with an explicit inverse warp applied before the similarity losses in Eq. 8 and Eq. 9. If the mAP gain over the fixed-threshold baseline vanishes, the VFM guidance relied on implicit coordinate alignment rather than semantic robustness. A more direct measurement: compute the mean cosine similarity in Eq. 9 under both augmented and unaugmented inputs; near-zero similarity under augmentation would falsify the alignment premise.

Watch

Extended reading notes

Core claim

On the paper's own terms, VG-DETR establishes that a frozen vision foundation model can act as a free-lunch external supervisor for source-free remote sensing detection, provided a small labeled subset of the target domain is available. The VPM strategy takes pseudo-labels whose confidence falls in a 'grey zone' between a lower and an upper threshold, extracts their instance features from precomputed DINOv2 feature maps, and keeps them only if cosine similarity to class-wise reference prototypes (built by K-means from labeled objects and synthesized background boxes) exceeds 0.5 and matches the detector's predicted class. The DVA module additionally aligns detector representations to DINOv2

Load-bearing premise

The method assumes that features from the frozen model, computed once on original images, line up spatially with the detector's features computed on strongly augmented images, even though the paper never specifies how pseudo-labels or student features are mapped back to the original coordinates under random flips and crops.

Editorial extensions

If this is right

  • Remote sensing users can adapt a source-trained detector to a new sensor or modality with only 1-10% labeled target images and no access to source data, while keeping training stable.
  • Because VFM features are extracted offline and stored on disk, the frozen foundation model adds no runtime cost during inference or detector training.
  • External semantic priors from foundation models can supplement or replace confidence-based pseudo-label filtering in self-training, improving both pseudo-label quality and quantity.
  • The semi-supervised source-free protocol itself (1%, 5%, 10% labeled target data) becomes a practical evaluation benchmark, since pure source-free training is shown to collapse in remote sensing.
  • The method generalizes across different vision foundation models: the paper reports DINOv3 matching or slightly exceeding DINOv2 results across the three scenarios.

Reading between the lines

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

  • If the coordinate-alignment assumption between original-image VFM features and strongly augmented student features fails under random flips and crops, the VPM similarity scores and image-level loss would act on misaligned features; a direct test is to run the same method with and without such geometric augmentation.
  • The prototype-based mining could be sharpened by using per-category component counts rather than a single global K, since storage tanks, ships, and aircraft likely have different intra-class appearance spreads.
  • The offline-feature recipe may extend to test-time adaptation or continual domain shifts, where reference prototypes could be refreshed as new unlabeled target data arrive without retraining.
  • Because the alignment losses operate on features rather than box coordinates, porting VG-DETR to oriented object detection may only require changing the box encoding while keeping the VFM guidance intact.
Share X Bluesky LinkedIn Reddit HN

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 proposes VG-DETR, a semi-supervised source-free object detection method for remote sensing imagery, built on DINO with a mean-teacher self-training branch and an additional supervised branch using a small labeled target subset. Two main contributions are introduced: (1) VPM, which uses offline DINOv2 features and class-wise prototypes to re-evaluate low-confidence pseudo-labels, and (2) DVA, which aligns detector object-query features to VFM prototypes through Sinkhorn-based soft clustering and contrastive learning, and aligns backbone feature maps to VFM feature maps via cosine similarity. Experiments are reported on three adaptation scenarios (xView→DOTA, SRSD→DIOR, HRRSD→SSDD) under 1%, 5%, and 10% labeled target data, with the headline result of 77.5% mAP50 at 5% labels on xView→DOTA.

Significance. If the reported gains are reproducible, the paper would demonstrate a practical way to exploit frozen vision foundation models in a source-free semi-supervised detection setting, with potential benefits in pseudo-label quality and training stability. The release of code, the breadth of comparisons against UDA, SFOD, and SSOD methods, and the ablations of thresholds and prototype counts are concrete strengths. However, the central empirical claims are weakened by an unspecified spatial-correspondence assumption and by the absence of repeated-run statistics; several reported gains are small relative to what single-run comparisons can support.

major comments (4)
  1. [Section IV-B; Tables I-III] The method assumes spatial correspondence between VFM features extracted offline from original, unaugmented images and detector features produced on strongly augmented inputs, but no inverse augmentation or coordinate mapping is specified. Eq. (9) computes a cosine-similarity loss between the VFM feature map F_i of the original image and the student feature map F_s, while Eq. (5) and ROI Align in the VPM strategy use predicted boxes against F_i. If the strong augmentation applied to the student includes random flip, crop, or resize, the spatial locations in F_s and the predicted boxes will not coincide with F_i unless boxes and feature maps are inverse-warped to the original coordinate frame. The text only states "When spatial locations are aligned" (Section III-C), which is an assumption rather than a procedure. Please specify the exact augmentation policy, how pseudo-label boxes are tr
  2. [Section IV-D1; Table IV] All quantitative results appear to come from a single training run; no seeds, error bars, or statistical significance tests are reported. Some of the headline comparisons are very close, e.g., SRSD→DIOR at 5% labeled data gives 65.9 vs. 65.4 for Semi-DETR, and HRRSD→SSDD at 1% gives 61.4 vs. 61.2. In a journal submission, these margins need to be supported by mean and standard deviation over at least three seeds, especially for the main tables and the component ablations.
  3. [Section III-F; Eq. (10); Tables V-VI] The instance-level DVA component alone slightly degrades performance relative to the mean-teacher baseline (74.5 vs. 74.6 mAP with +MT), yet instance-level DVA is included in the final system. The text acknowledges that instance-level alignment is ineffective in isolation, but the additive attribution is unclear because the combination VPM + instance-level DVA is not reported. Please provide an ablation that separates VPM and each DVA level, and justify retaining an individually harmful component on the basis of its interaction with VPM and image-level alignment.
  4. [Section III-F; Eq. (10); Tables V-VI] The loss weights λ_con and λ_sim are fixed at 0.1 and 1.0 without any sensitivity study, and the threshold tables are internally inconsistent: Table V reports 75.6 mAP for the fixed threshold of 0.4, while Table VI reports 76.7 mAP for "w/o VPM strategy" at a low threshold of 0.4, suggesting different underlying configurations. Please clarify the exact baselines used in Tables V and VI and report a sensitivity analysis for the two loss weights, since these weights control the DVA contribution.
minor comments (7)
  1. [Section III-F] The text says the total loss combines "the detection loss (Eq. 2)", but Eq. (2) is the EMA parameter update; the detection loss is defined in Eq. (1). Please correct the cross-reference.
  2. [Section III-B] Reference [13] for EMA is cited as a cognitive appraisal model, not the standard exponential moving average formulation used in mean-teacher training. Please replace this reference.
  3. [Section III-D1] Typo: "indstance features" should be "instance features".
  4. [Section III-E1] Typo: "sinkkhorn-knopp" should be "Sinkhorn-Knopp".
  5. [Section IV-D4] Typo: "wpeakens" should be "weakens".
  6. [Section IV-D1] The text refers to "the proposed VFA"; this appears to be a typo for "DVA".
  7. [Section IV-E2] The pseudo-label visualization is qualitative only. Reporting precision/recall of mined pseudo-labels or the number of recovered boxes would strengthen the claim that VPM improves quality and quantity.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity; the central claims are empirical and self-contained, with only minor non-load-bearing self-citations and an unverified spatial-alignment assumption.

full rationale

VG-DETR's claims are empirical: it trains a detector under a semi-supervised source-free pipeline and reports mAP on held-out target validation sets. The two novel components, VPM and DVA, are training losses and pseudo-label filters, not derivations. The VPM reference prototypes are extracted from the labeled portion of the target set and used as an external semantic reference to mine low-confidence detections; this is a legitimate use of the labeled subset, not a restatement of the final mAP. The DVA losses (Eqs. 8-9) align detector features to a frozen DINOv2's features; again this is an external, parameter-free teacher, and the reported improvements are measured against ground-truth boxes not used in these losses. The self-citations to [33] (dynamic threshold) and [57] (query-label assignment) are to published, peer-reviewed methods used as components; they are not invoked as uniqueness theorems or as the sole justification for the central result. The paper's own caveat in Sec III-C ('When spatial locations are aligned') flags a genuine missing piece—the inverse augmentation mapping between original-image VFM features and strongly-augmented student features is not specified—but this is a correctness/implementability concern, not circularity, because no equation reduces the output to an input. The lower-threshold and prototype-count ablations are tuned on the validation set, which is a fair-comparison concern, not circularity. Overall, no load-bearing step reduces to its own inputs.

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

The central mechanism is empirical. Free parameters are few and mostly standard for self-training, but key ones (K, lower threshold) are tuned on a single benchmark. The most fragile assumption is the spatial alignment of VFM features with augmented detector inputs, which is stated but not demonstrated.

free parameters (5)
  • K (number of prototype components per class) = 4
    Chosen by ablation on xView to DOTA with 5% labels (Table VII); reused across all benchmarks.
  • Lower confidence threshold for VPM mining = 0.3
    Selected via threshold sweep on xView to DOTA 5% (Table VI); authors claim robustness between 0.1 and 0.4.
  • VFM cosine-similarity reliability threshold = 0.5
    Set empirically in Section III-D2; no sensitivity analysis provided.
  • Lambda_con (contrastive loss weight) = 0.1
    Set by hand in Section IV-B; no sensitivity analysis provided.
  • Lambda_sim (image-alignment loss weight) = 1.0
    Set by hand in Section IV-B; no sensitivity analysis provided.
assumptions (4)
  • domain assumption DINOv2 features provide useful semantic priors for remote sensing imagery.
    Invoked throughout VPM and DVA; supported by external citations [45], [52], [53] but not evaluated independently in this paper.
  • domain assumption A small fraction (1%, 5%, 10%) of target-domain labels is available in practice.
    Motivates the semi-supervised SFOD problem setting in Section I and III-A.
  • domain assumption Mean-teacher self-training with a supervised branch prevents training collapse.
    Based on the empirical stability shown in Fig. 6 rather than a theoretical guarantee.
  • ad hoc to paper Spatial alignment between original-image VFM features and detector features is maintained under the augmentation policy.
    Section III-C says 'when spatial locations are aligned' and Eq. 9 compares student backbone features to VFM features without describing geometric correspondence.

how reviews work

0 comments
Cite this review

Pith. "Pith review of VFM-Guided Semi-Supervised Detection Transformer under Source-Free Constraints for Remote Sensing Object Detection." pith.science (2026). https://pith.science/paper/O7LRIFG5

@misc{pith2026250811167,
  author       = {Pith},
  title        = {Pith review of: VFM-Guided Semi-Supervised Detection Transformer under Source-Free Constraints for Remote Sensing Object Detection},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/O7LRIFG5}},
  note         = {Machine review of arXiv:2508.11167}
}
read the original abstract

Unsupervised domain adaptation methods have been widely explored to bridge domain gaps. However, in real-world remote-sensing scenarios, privacy and transmission constraints often preclude access to source domain data, which limits their practical applicability. Recently, Source-Free Object Detection (SFOD) has emerged as a promising alternative, aiming at cross-domain adaptation without relying on source data, primarily through a self-training paradigm. Despite its potential, SFOD frequently suffers from training collapse caused by noisy pseudo-labels, especially in remote sensing imagery with dense objects and complex backgrounds. Considering that limited target domain annotations are often feasible in practice, we propose a Vision foundation-Guided DEtection TRansformer (VG-DETR), built upon a semi-supervised framework for SFOD in remote sensing images. VG-DETR integrates a Vision Foundation Model (VFM) into the training pipeline in a "free lunch" manner, leveraging a small amount of labeled target data to mitigate pseudo-label noise while improving the detector's feature-extraction capability. Specifically, we introduce a VFM-guided pseudo-label mining strategy that leverages the VFM's semantic priors to further assess the reliability of the generated pseudo-labels. By recovering potentially correct predictions from low-confidence outputs, our strategy improves pseudo-label quality and quantity. In addition, a dual-level VFM-guided alignment method is proposed, which aligns detector features with VFM embeddings at both the instance and image levels. Through contrastive learning among fine-grained prototypes and similarity matching between feature maps, this dual-level alignment further enhances the robustness of feature representations against domain gaps. Extensive experiments demonstrate that VG-DETR achieves superior performance in source-free remote sensing detection tasks.

Figures

Figures reproduced from arXiv: 2508.11167 by the authors.

Figure 1
Figure 1. The overall VG-DETR pipeline operates in two stages. In the offline stage, reference feature maps and class-wise prototypes are extracted from [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗
Figure 2
Figure 2. Details of the proposed VPM strategy. The strategy leverages [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. Details of the proposed DVA module. The module leverages reference [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (3 more)
Figure 6
Figure 6. Figure 6: Training curves of the four paradigms within the mean-teacher [PITH_FULL_IMAGE:figures/full_fig_p011_6.png]
Figure 5
Figure 5. Figure 5: Visualization of the pseudo-labels produced by the fixed-threshold [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]
Figure 7
Figure 7. Figure 7: Visual comparison across all cross-domain experimental scenarios, with the visualization threshold set to 0.2. “GT” denotes the ground truth. [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

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

  1. MobQA: A Benchmark Dataset for Semantic Understanding of Human Mobility Data through Question Answering

    cs.CL 2025-08 unverdicted novelty 5.0 of 10

    LLMs handle factual lookups on mobility trajectories well but perform far worse on reasoning and explanation questions in the new 5,800-pair MobQA benchmark.

Reference graph

Works this paper leans on

69 extracted references · 10 canonical work pages · cited by 1 Pith paper

  1. [1]

    Domain adaptive faster r-cnn for object detection in the wild,

    Y . Chen, W. Li, C. Sakaridis, D. Dai, and L. Van Gool, “Domain adaptive faster r-cnn for object detection in the wild,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2018, pp. 3339–3348

  2. [2]

    Aqt: Adversarial query transformers for domain adaptive object detection,

    W.-J. Huang, Y .-L. Lu, S.-Y . Lin, Y . Xie, and Y .-Y . Lin, “Aqt: Adversarial query transformers for domain adaptive object detection,” inProceedings of the International Joint Conference on Artificial Intelligence, 2022, pp. 972–979

  3. [3]

    Fada: Feature aligned domain adaptive object detection in remote sensing imagery,

    T. Xu, X. Sun, W. Diao, L. Zhao, K. Fu, and H. Wang, “Fada: Feature aligned domain adaptive object detection in remote sensing imagery,” IEEE Transactions on Geoscience and Remote Sensing , vol. 60, pp. 1– 16, 2022

  4. [4]

    A free lunch for unsupervised domain adaptive object detection without source data,

    X. Li, W. Chen, D. Xie, S. Yang, P. Yuan, S. Pu, and Y . Zhuang, “A free lunch for unsupervised domain adaptive object detection without source data,” in Proceedings of the AAAI Conference on Artificial Intelligence , vol. 35, no. 10, 2021, pp. 8474–8481

  5. [5]

    Multi-prototype guided source-free domain adaptive object detection for autonomous driving,

    S. Zhang, L. Zhang, G. Li, P. Li, and Z. Liu, “Multi-prototype guided source-free domain adaptive object detection for autonomous driving,” IEEE Transactions on Intelligent Vehicles, vol. 9, no. 1, pp. 1589–1601, 2023

  6. [6]

    Source-free domain adaptive object detection in remote sensing images,

    W. Liu, J. Liu, X. Su, H. Nie, and B. Luo, “Source-free domain adaptive object detection in remote sensing images,” arXiv preprint arXiv:2401.17916, 2024

  7. [7]

    Arbitrary style transfer in real-time with adaptive instance normalization,

    X. Huang and S. Belongie, “Arbitrary style transfer in real-time with adaptive instance normalization,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2017, pp. 1501–1510

  8. [8]

    Style-hallucinated dual consistency learning for domain generalized semantic segmenta- tion,

    Y . Zhao, Z. Zhong, N. Zhao, N. Sebe, and G. H. Lee, “Style-hallucinated dual consistency learning for domain generalized semantic segmenta- tion,” in Proceedings of the European Conference on Computer Vision . Springer, 2022, pp. 535–552

Show all 69 references
  1. [9]

    Adversarial source generation for source-free domain adaptation,

    C. Cui, F. Meng, C. Zhang, Z. Liu, L. Zhu, S. Gong, and X. Lin, “Adversarial source generation for source-free domain adaptation,”IEEE Transactions on Circuits and Systems for Video Technology , vol. 34, no. 6, pp. 4887–4898, 2024

  2. [10]

    H 2 fa r-cnn: Holistic and hierarchical feature alignment for cross-domain weakly supervised object detection,

    Y . Xu, Y . Sun, Z. Yang, J. Miao, and Y . Yang, “H 2 fa r-cnn: Holistic and hierarchical feature alignment for cross-domain weakly supervised object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 14 329–14 339

  3. [11]

    Fsda-detr: Few- shot domain adaptive object detection transformer in remote sensing imagery,

    B. Yang, J. Han, X. Hou, D. Zhou, W. Liu, and F. Bi, “Fsda-detr: Few- shot domain adaptive object detection transformer in remote sensing imagery,” IEEE Transactions on Geoscience and Remote Sensing , 2025. 14

  4. [12]

    Unbiased teacher for semi-supervised object detection,

    Y .-C. Liu, C.-M. Ma, Z. He, C.-W. Kuo, K. Chen, P. Zhang, B. Wu, Z. Kira, and P. Vajda, “Unbiased teacher for semi-supervised object detection,” in Proceedings of the International Conference on Learning Representations, 2021

  5. [13]

    Ema: A process model of appraisal dynamics,

    S. C. Marsella and J. Gratch, “Ema: A process model of appraisal dynamics,” Cognitive Systems Research , vol. 10, no. 1, p. 70–90, Mar 2009

  6. [14]

    Periodically exchange teacher-student for source-free object detection,

    Q. Liu, L. Lin, Z. Shen, and Z. Yang, “Periodically exchange teacher-student for source-free object detection,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2023, pp. 6414–6424

  7. [15]

    Dynamic retraining-updating mean teacher for source-free object detection,

    T. L. B. Khanh, H.-H. Nguyen, L. H. Pham, D. N.-N. Tran, and J. W. Jeon, “Dynamic retraining-updating mean teacher for source-free object detection,” in Proceedings of the European Conference on Computer Vision. Springer, 2024, pp. 328–344

  8. [16]

    Dinov2: Learning robust visual features without supervision,

    M. Oquab, T. Darcet, T. Moutakanni, H. V o, M. Szafraniec, V . Khalidov, P. Fernandez, D. Haziza, F. Massa, A. El-Nouby et al. , “Dinov2: Learning robust visual features without supervision,” arXiv preprint arXiv:2304.07193, 2023

  9. [17]

    Segment anything,

    A. Kirillov, E. Mintun, N. Ravi, H. Mao, C. Rolland, L. Gustafson, T. Xiao, S. Whitehead, A. C. Berg, W.-Y . Loet al., “Segment anything,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 4015–4026

  10. [18]

    Grounding dino: Marrying dino with grounded pre- training for open-set object detection,

    S. Liu, Z. Zeng, T. Ren, F. Li, H. Zhang, J. Yang, Q. Jiang, C. Li, J. Yang, H. Su et al. , “Grounding dino: Marrying dino with grounded pre- training for open-set object detection,” in Proceedings of the European Conference on Computer Vision . Springer, 2024, pp. 38–55

  11. [19]

    Remoteclip: A vision language foundation model for remote sensing,

    F. Liu, D. Chen, Z. Guan, X. Zhou, J. Zhu, Q. Ye, L. Fu, and J. Zhou, “Remoteclip: A vision language foundation model for remote sensing,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1– 16, 2024

  12. [20]

    Some methods for classification and analysis of multi- variate observations,

    J. MacQueen, “Some methods for classification and analysis of multi- variate observations,” in Proceedings of the Fifth Berkeley Symposium on Mathematical Statistics and Probability, Volume 1: Statistics , vol. 5. University of California press, 1967, pp. 281–298

  13. [21]

    Sinkhorn distances: Lightspeed computation of optimal transport,

    M. Cuturi, “Sinkhorn distances: Lightspeed computation of optimal transport,” Advances in Neural Information Processing Systems , vol. 26, 2013

  14. [22]

    xview: Objects in context in overhead imagery,

    D. Lam, R. Kuzma, K. McGee, S. Dooley, M. Laielli, M. Klaric, Y . Bulatov, and B. McCord, “xview: Objects in context in overhead imagery,” arXiv preprint arXiv:1802.07856 , 2018

  15. [23]

    Dota: A large-scale dataset for object detection in aerial images,

    G.-S. Xia, X. Bai, J. Ding, Z. Zhu, S. Belongie, J. Luo, M. Datcu, M. Pelillo, and L. Zhang, “Dota: A large-scale dataset for object detection in aerial images,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2018, pp. 3974–3983

  16. [24]

    Object detection in optical remote sensing images: A survey and a new benchmark,

    K. Li, G. Wan, G. Cheng, L. Meng, and J. Han, “Object detection in optical remote sensing images: A survey and a new benchmark,” ISPRS Journal of Photogrammetry and Remote Sensing , p. 296–307, Jan 2020

  17. [25]

    Hierarchical and robust convolutional neural network for very high-resolution remote sensing object detection,

    Y . Zhang, Y . Yuan, Y . Feng, and X. Lu, “Hierarchical and robust convolutional neural network for very high-resolution remote sensing object detection,” IEEE Transactions on Geoscience and Remote Sens- ing, vol. 57, no. 8, pp. 5535–5548, 2019

  18. [26]

    Ship detection in sar images based on an improved faster r-cnn,

    J. Li, C. Qu, and J. Shao, “Ship detection in sar images based on an improved faster r-cnn,” in Proceedings of the 2017 SAR in Big Data Era: Models, Methods and Applications . IEEE, 2017, pp. 1–6

  19. [27]

    Faster r-cnn: Towards real-time object detection with region proposal networks,

    S. Ren, K. He, R. Girshick, and J. Sun, “Faster r-cnn: Towards real-time object detection with region proposal networks,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 39, no. 6, pp. 1137– 1149, 2017

  20. [28]

    End-to-end object detection with transformers,

    N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End-to-end object detection with transformers,” in Proceedings of the European Conference on Computer Vision. Springer, 2020, pp. 213–229

  21. [29]

    Exploring sequence feature alignment for domain adaptive detection transformers,

    W. Wang, Y . Cao, J. Zhang, F. He, Z.-J. Zha, Y . Wen, and D. Tao, “Exploring sequence feature alignment for domain adaptive detection transformers,” in Proceedings of the ACM International Conference on Multimedia, 2021, pp. 1730–1738

  22. [30]

    Da- detr: Domain adaptive detection transformer with information fusion,

    J. Zhang, J. Huang, Z. Luo, G. Zhang, X. Zhang, and S. Lu, “Da- detr: Domain adaptive detection transformer with information fusion,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 23 787–23 798

  23. [31]

    Focal loss for dense object detection,

    T.-Y . Lin, P. Goyal, R. Girshick, K. He, and P. Doll ´ar, “Focal loss for dense object detection,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2017, pp. 2980–2988

  24. [32]

    Dualda-net: Dual-head rectification for cross-domain object detection of remote sensing,

    Y . Zhu, X. Sun, W. Diao, H. Wei, and K. Fu, “Dualda-net: Dual-head rectification for cross-domain object detection of remote sensing,” IEEE Transactions on Geoscience and Remote Sensing , vol. 61, pp. 1–16, 2023

  25. [33]

    Remote sensing teacher: Cross-domain detection transformer with learnable frequency- enhanced feature alignment in remote sensing imagery,

    J. Han, W. Yang, Y . Wang, L. Chen, and Z. Luo, “Remote sensing teacher: Cross-domain detection transformer with learnable frequency- enhanced feature alignment in remote sensing imagery,” IEEE Trans- actions on Geoscience and Remote Sensing , vol. 62, no. 5619814, pp. 1–14, 2024

  26. [34]

    Balanced teacher for source-free ob- ject detection,

    J. Deng, W. Li, and L. Duan, “Balanced teacher for source-free ob- ject detection,” IEEE Transactions on Circuits and Systems for Video Technology, 2024

  27. [35]

    Dense learning based semi-supervised object detection,

    B. Chen, P. Li, X. Chen, B. Wang, L. Zhang, and X.-S. Hua, “Dense learning based semi-supervised object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 4815–4824

  28. [36]

    Dense teacher: Dense pseudo-labels for semi-supervised object detection,

    H. Zhou, Z. Ge, S. Liu, W. Mao, Z. Li, H. Yu, and J. Sun, “Dense teacher: Dense pseudo-labels for semi-supervised object detection,” in Proceedings of the European Conference on Computer Vision. Springer, 2022, pp. 35–50

  29. [37]

    Efficient non-maximum suppression,

    A. Neubeck and L. Van Gool, “Efficient non-maximum suppression,” in Proceedings of the International Conference on Pattern Recognition , 2006, pp. 850–855

  30. [38]

    End-to-end semi-supervised object detection with soft teacher,

    M. Xu, Z. Zhang, H. Hu, J. Wang, L. Wang, F. Wei, X. Bai, and Z. Liu, “End-to-end semi-supervised object detection with soft teacher,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2021, pp. 3060–3069

  31. [39]

    Dual teacher: Improv- ing the reliability of pseudo labels for semi-supervised oriented object detection,

    Z. Fang, J. Ren, J. Zheng, R. Chen, and H. Zhao, “Dual teacher: Improv- ing the reliability of pseudo labels for semi-supervised oriented object detection,” IEEE Transactions on Geoscience and Remote Sensing, 2024

  32. [40]

    Minimizing sample redundancy for label-efficient object detection in aerial images,

    R. Zhang, C. Xu, H. Zhu, F. Xu, W. Yang, H. Zhang, and G.-S. Xia, “Minimizing sample redundancy for label-efficient object detection in aerial images,” IEEE Transactions on Geoscience and Remote Sensing , vol. 63, pp. 1–14, 2025

  33. [41]

    Omni-detr: Omni-supervised object detection with transformers,

    P. Wang, Z. Cai, H. Yang, G. Swaminathan, N. Vasconcelos, B. Schiele, and S. Soatto, “Omni-detr: Omni-supervised object detection with transformers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 9367–9376

  34. [42]

    Semi-detr: Semi-supervised object detection with detection transformers,

    J. Zhang, X. Lin, W. Zhang, K. Wang, X. Tan, J. Han, E. Ding, J. Wang, and G. Li, “Semi-detr: Semi-supervised object detection with detection transformers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 23 809–23 818

  35. [43]

    Sparse semi-detr: sparse learnable queries for semi-supervised object detection,

    T. Shehzadi, K. A. Hashmi, D. Stricker, and M. Z. Afzal, “Sparse semi-detr: sparse learnable queries for semi-supervised object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 5840–5850

  36. [44]

    Detect everything with few examples,

    X. Zhang, Y . Liu, Y . Wang, and A. Boularias, “Detect everything with few examples,” arXiv preprint arXiv:2309.12969 , 2023

  37. [45]

    Cross-domain few-shot object detection via enhanced open-set object detector,

    Y . Fu, Y . Wang, Y . Pan, L. Huai, X. Qiu, Z. Shangguan, T. Liu, Y . Fu, L. Van Gool, and X. Jiang, “Cross-domain few-shot object detection via enhanced open-set object detector,” in Proceedings of the European Conference on Computer Vision . Springer, 2024, pp. 247–264

  38. [46]

    Large self-supervised models bridge the gap in domain adaptive object detection,

    M.-A. Lavoie, A. Mahmoud, and S. L. Waslander, “Large self-supervised models bridge the gap in domain adaptive object detection,” in Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2025, pp. 4692–4702

  39. [47]

    Frozen- detr: Enhancing detr with image understanding from frozen foundation models,

    S. Fu, J. Yan, Q. Yang, X. Wei, X. Xie, and W.-S. Zheng, “Frozen- detr: Enhancing detr with image understanding from frozen foundation models,” arXiv preprint arXiv:2410.19635 , 2024

  40. [48]

    Good: Towards domain generalized oriented object detection,

    Q. Bi, B. Zhou, J. Yi, W. Ji, H. Zhan, and G.-S. Xia, “Good: Towards domain generalized oriented object detection,” ISPRS Journal of Pho- togrammetry and Remote Sensing , vol. 223, pp. 207–220, 2025

  41. [49]

    Learning transferable visual models from natural language supervision,

    A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark et al., “Learning transferable visual models from natural language supervision,” in Proceedings of the International Conference on Machine Learning, pages=8748–8763, ye...

  42. [50]

    Dino: Detr with improved denoising anchor boxes for end-to- end object detection,

    H. Zhang, F. Li, S. Liu, L. Zhang, H. Su, J. Zhu, L. M. Ni, and H.-Y . Shum, “Dino: Detr with improved denoising anchor boxes for end-to- end object detection,” in Proceedings of the International Conference on Learning Representations , 2023

  43. [51]

    An image is worth 16x16 words: Transformers for image recognition at scale,

    A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani, M. Minderer, G. Heigold, S. Gelly, J. Uszkoreit, and N. Houlsby, “An image is worth 16x16 words: Transformers for image recognition at scale,” in Proceedings of the International Con...

  44. [52]

    Exploring robust features for few-shot object detection in satellite 15 imagery,

    X. Bou, G. Facciolo, R. G. V on Gioi, J.-M. Morel, and T. Ehret, “Exploring robust features for few-shot object detection in satellite 15 imagery,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2024, pp. 430–439

  45. [53]

    Segment any change,

    Z. Zheng, Y . Zhong, L. Zhang, and S. Ermon, “Segment any change,” Advances in Neural Information Processing Systems , vol. 37, pp. 81 204–81 224, 2024

  46. [54]

    Evaluating general purpose vision foundation models for medical image analysis: An experimental study of dinov2 on radiology benchmarks,

    M. Baharoon, W. Qureshi, J. Ouyang, Y . Xu, A. Aljouie, and W. Peng, “Evaluating general purpose vision foundation models for medical image analysis: An experimental study of dinov2 on radiology benchmarks,” arXiv preprint arXiv:2312.02366 , 2023

  47. [55]

    Dino-reg: General purpose image encoder for training-free multi-modal deformable medical image registration,

    X. Song, X. Xu, and P. Yan, “Dino-reg: General purpose image encoder for training-free multi-modal deformable medical image registration,” in International Conference on Medical Image Computing and Computer- Assisted Intervention. Springer, 2024, pp. 608–617

  48. [56]

    Mask r-cnn,

    K. He, G. Gkioxari, P. Doll ´ar, and R. Girshick, “Mask r-cnn,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2017, pp. 2961–2969

  49. [57]

    Datr: Unsupervised domain adaptive detection transformer with dataset-level adaptation and prototypical alignment,

    L. Chen, J. Han, and Y . Wang, “Datr: Unsupervised domain adaptive detection transformer with dataset-level adaptation and prototypical alignment,” IEEE Transactions on Image Processing , vol. 34, pp. 982– 994, 2025

  50. [58]

    Every pixel matters: Center-aware feature alignment for domain adaptive object detector,

    C. Hsu, Y .-H. Tsai, Y .-Y . Lin, and M.-H. Yang, “Every pixel matters: Center-aware feature alignment for domain adaptive object detector,” in Proceedings of the European Conference on Computer Vision, 2020, pp. 733–748

  51. [59]

    Instance relation graph guided source- free domain adaptive object detection,

    V . VS, P. Oza, and V . M. Patel, “Instance relation graph guided source- free domain adaptive object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 3520–3530

  52. [60]

    Enhanc- ing source-free domain adaptive object detection with low-confidence pseudo label distillation,

    I. Yoon, H. Kwon, J. Kim, J. Park, H. Jang, and K. Sohn, “Enhanc- ing source-free domain adaptive object detection with low-confidence pseudo label distillation,” in Proceedings of the European Conference on Computer Vision . Springer, 2024, pp. 337–353

  53. [61]

    Unbiased teacher v2: Semi-supervised object detection for anchor-free and anchor-based detectors,

    Y .-C. Liu, C.-Y . Ma, and Z. Kira, “Unbiased teacher v2: Semi-supervised object detection for anchor-free and anchor-based detectors,” in Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 9819–9828

  54. [62]

    Multi-clue consistency learning to bridge gaps between general and oriented object in semi-supervised detection,

    C. Wang, C. Xu, X. Li, Y . Li, X. Guo, Z. Gu, and Z. Cui, “Multi-clue consistency learning to bridge gaps between general and oriented object in semi-supervised detection,” in Proceedings of the AAAI Conference on Artificial Intelligence , vol. 39, no. 7, 2025, pp. 7582–7590

  55. [63]

    Rareplanes: Synthetic data takes flight,

    J. Shermeyer, T. Hossler, A. V . Etten, D. Hogan, R. Lewis, and D. Kim, “Rareplanes: Synthetic data takes flight,” in Proceedings of the IEEE Winter Conference on Applications of Computer Vision , Jan 2021. [Online]. Available: http://dx.doi.org/10.1109/wacv48630.2021.00025

  56. [64]

    Unsupervised domain adaptation for remote- sensing vehicle detection using domain-specific channel recalibration,

    W. Liu, J. Liu, and B. Luo, “Unsupervised domain adaptation for remote- sensing vehicle detection using domain-specific channel recalibration,” IEEE Geoscience and Remote Sensing Letters , vol. 20, pp. 1–5, 2023

  57. [65]

    Hierarchical similarity alignment for domain adaptive ship detection in sar images,

    J. Zhang, S. Li, Y . Dong, B. Pan, and Z. Shi, “Hierarchical similarity alignment for domain adaptive ship detection in sar images,” IEEE Transactions on Geoscience and Remote Sensing , vol. 60, pp. 1–11, 2022

  58. [66]

    Fsda-detr: Few- shot domain-adaptive object detection transformer in remote sensing im- agery,

    B. Yang, J. Han, X. Hou, D. Zhou, W. Liu, and F. Bi, “Fsda-detr: Few- shot domain-adaptive object detection transformer in remote sensing im- agery,” IEEE Transactions on Geoscience and Remote Sensing , vol. 63, pp. 1–16, 2025

  59. [67]

    Ima- genet: A large-scale hierarchical image database,

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “Ima- genet: A large-scale hierarchical image database,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2009, pp. 248–255

  60. [68]

    Adam: A method for stochastic optimization,

    D. Kingma and J. Ba, “Adam: A method for stochastic optimization,” arXiv preprint arXiv:1412.6980 , 2014

  61. [69]

    Sim ´eoni, H

    O. Sim ´eoni, H. V . V o, M. Seitzer, F. Baldassarre, M. Oquab, C. Jose, V . Khalidov, M. Szafraniec, S. Yi, M. Ramamonjisoa et al., “Dinov3,” arXiv preprint arXiv:2508.10104 , 2025

Pith tools

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