Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

DOMR: Establishing Cross-View Segmentation via Dense Object Matching

T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read A dense object matcher that compares all proposals in both views at once sets new state-of-the-art scores on the Ego-Exo4D cross-view correspondence benchmark.

desk verdict Solid SOTA on Ego-Exo4D correspondence with a genuinely new dense-matching idea, but the missing recall numbers and an ambiguous inference sentence need tightening before I'd fully trust the numbers. read the letter →

arxiv 2508.04050 v1 pith:AIGAQDQM submitted 2025-08-06 cs.CV

classification cs.CV
keywords cross-viewobjectcorrespondenceego-exodensematchingmaskrefinementEgo-Exo4DSAM2open-vocabularydetectionsegmentation
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 cross-view object correspondence between egocentric and exocentric video is better solved by dense, joint matching among all candidate objects than by searching for each query mask independently. The proposed DOMR pipeline first turns detector-plus-SAM 2 proposals into object embeddings that combine visual, positional, and semantic cues, lets all embeddings from both views interact in a transformer, and enforces bidirectional symmetric consistency when selecting matches. On the Ego-Exo4D benchmark it reports mean IoUs of 49.7% for Ego→Exo and 55.2% for Exo→Ego, beating the previous best method by 5.8 and 4.3 points. A sympathetic reader would care because this is a step toward reliable first-person/third-person alignment for embodied systems, where repeated similar objects currently cause ambiguity.

What carries the argument

Central machinery is the Dense Object Matcher (DOM) plus a Mask Refinement (MR) head. DOM builds per-proposal embeddings as $e=\mathrm{Linear}(e_{\mathrm{token}})+\mathrm{Linear}(e_{\mathrm{pos}})+\mathrm{Linear}(e_{\mathrm{label}})$ and processes the concatenated $2N$ proposal embeddings through repeated self-attention and cross-attention blocks against SAM 2 image features. The mix matching strategy multiplies row-normalized and column-normalized softmax similarities, so a pair is selected only when it is the best match in both directions. MR then injects the source and matched target embeddings into learnable output tokens that iteratively update against target image features to predict t

What would settle it

Compute, on the Ego-Exo4D validation set, the proportion of ground-truth objects whose best proposal from the DOMR pipeline has IoU below 0.5 (or no proposal at all). If that proportion is non-negligible and DOMR never matches those objects, the reported mean IoU of 49.7/55.2 cannot be reproduced without changing the proposal source or adding a recovery mechanism.

Watch

Extended reading notes

Core claim

The paper's central claim is that the ego-exo correspondence task should be treated as dense many-to-many matching, not one-to-one retrieval. DOMR jointly models all proposals from both views: each proposal is represented by the sum of a SAM 2 token embedding, a positional embedding of its bounding-box corners, and a CLIP label embedding from the open-vocabulary detector, then updated by self-attention and cross-attention against the fused SAM 2 image features. Matching scores are computed in both directions, and the mix strategy selects the pair whose Ego→Exo and Exo→Ego softmax similarities multiply to the largest value, so a match is accepted only if it is mutually most plausible. A separ

Load-bearing premise

The load-bearing assumption is that the YOLO-UniOW + SAM 2 proposal pipeline returns at least one mask with real overlap for every ground-truth object; the paper reports only average best-proposal IoU, never the fraction of objects that receive no usable proposal, and any such object cannot be rescued by matching or refinement.

Editorial extensions

If this is right

  • If the reported numbers hold, DOMR is the best published method on the Ego-Exo4D ego-exo correspondence benchmark, improving on ObjectRelator by 5.8 points Ego→Exo and 4.3 points Exo→Ego.
  • Spatial-only dense matching with refinement outperforms a spatio-temporal baseline (XView-Xmem + XSegTx) by roughly 12.8 and 19.1 points, suggesting temporal cues are not required for this benchmark's accuracy.
  • Increasing the number of proposals from 80 to 160 raises DOM's IoU, so the pipeline should continue to benefit from better or denser proposal generators.
  • Ablations show the mix strategy, the mask refinement head, and freezing DOM during refinement training each contribute; removing any of them lowers both task scores.

Reading between the lines

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

  • Beyond the paper's claims: the coverage table reports average best-proposal IoU but not the recall of ground-truth objects that receive no proposal at all; if such coverage gaps exist, DOMR inherits them and the headline IoU depends on an unmeasured proposal-recall rate.
  • Beyond the paper's claims: because more proposals monotonically improve performance, DOMR could be pushed further by exhaustive or category-aware proposal generation rather than the LVIS-vocabulary YOLO-UniOW detections.
  • Beyond the paper's claims: the mix strategy's symmetric-consistency product is task-agnostic and could transfer to other bidirectional dense-correspondence settings such as multi-view tracking or video object re-identification.
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

3 major / 5 minor

Summary. The paper proposes DOMR, a two-stage framework for ego-exo cross-view object correspondence on the Ego-Exo4D benchmark. The first stage, Dense Object Matcher (DOM), generates object proposals with YOLO-UniOW and SAM 2, builds per-proposal embeddings from visual, positional, and label cues, and matches proposals across views using a bidirectional 'mix' strategy over a similarity matrix. The second stage, Mask Refinement (MR), refines the matched masks with a SAM-2-style decoder. The authors report state-of-the-art mean IoUs of 49.7% (Ego→Exo) and 55.2% (Exo→Ego), outperforming ObjectRelator by 5.8 and 4.3 points. Ablations indicate that dense object matching, the mix strategy, and mask refinement each contribute to the final result.

Significance. If the reported numbers are taken at face value, DOMR is a substantial empirical improvement over prior work on a challenging cross-view benchmark, and the paper provides a clear and sensible explanation for why joint multi-object matching outperforms single-object searching. The ablations are internally consistent and the design choices are well motivated. The work does not rely on circular reasoning: the training signal comes from ground-truth correspondences and the evaluation is on an external validation split. However, the manuscript currently leaves two load-bearing questions open: (i) whether the inference protocol inadvertently uses ground-truth bounding boxes in the target view, and (ii) whether the proposal generator's recall is high enough to support the headline numbers. The absence of error bars, code, and checkpoints further limits confidence in the claimed state-of-the-art result.

major comments (3)
  1. [§3.7, Loss Functions] The sentence 'During inference, the ground truth masks do not directly participate in DOM ... Instead, their bounding box is served as box prompts for SAM 2' is critically ambiguous. If 'their' refers to ground-truth masks in the target view, then the evaluation uses target annotations at test time, which would invalidate every reported number. If it refers only to the source-view masks, which are legitimate inputs, then the text must state this explicitly and describe how target proposals are generated. Please clarify and, if target boxes are used, rerun the experiments without them.
  2. [§3.3, Table 1] The proposal coverage table reports only the average IoU of the best proposal per ground-truth object. This does not measure recall: the fraction of objects that receive no proposal above any threshold. Since an object absent from the proposal set can never be matched, and since the training loss in Eq. (15) discards objects with IoU ≤ 0.5, the reported mIoU may be optimistically biased if the evaluation ignores or down-weights such objects. Please report recall at several IoU thresholds (e.g., IoU > 0, > 0.5), the full IoU distribution, and the mean IoU upper bound including zero-coverage objects. Also specify how a ground-truth object with no usable target proposal is treated in the final metric.
  3. [§3.3 and §4.1] The claim that the proposal generator 'successfully localizes most objects' is not supported by the presented statistic. An average best-mask IoU of 67.1% (exo view) can coexist with a non-trivial fraction of objects having zero proposal overlap. Because the method's upper bound is set by proposal coverage, the paper needs to quantify the fraction of ground-truth objects that are unreachable by the proposal stream, and ideally report performance separately for the reachable subset.
minor comments (5)
  1. [§4.1] All reported numbers appear to be single-run validation scores without error bars or multiple seeds. Please report means and standard deviations over at least three runs, or justify why single-run evaluation is standard for this benchmark.
  2. [General] No code, checkpoints, or public implementation details are provided. Given that the method builds on several external components (YOLO-UniOW, SAM 2.1), releasing code would be important for reproducibility.
  3. [Table 8] The formatting of Table 8 is confusing: some entries are dashes, and it is unclear what the two non-frozen rows represent (two independent trainings? one per direction?). Please clarify the experimental setup and complete the table.
  4. [§3.3] The phrase 'The maximum coverage also indicates the upper bound precision of the proposed DOM' is unclear; Table 1 reports an average, not a maximum. Rephrase to avoid confusion.
  5. [§3.7] The sentence mentioned in the major comments should be rewritten to remove ambiguity. As written, it is difficult to tell whether the ground-truth boxes are used in the source or target view.

Circularity Check

1 steps flagged · score 6.0 of 10

Section 3.7 injects ground-truth target boxes as SAM 2 prompts at inference, making the headline IoU partially self-fulfilling.

  1. self definitional [Section 3.7, Loss Functions, paragraph on inference in Training DOM]
    "During inference, the ground truth masks do not directly participate in DOM to keep proposal consistency with training. Instead, their bounding box is served as box prompts for SAM 2 to produce corresponding proposals, concatenated with original proposals for matching."

    Grammatically, 'their' refers to the ground-truth masks just mentioned. Thus at test time the target object's ground-truth bounding box is used as a SAM 2 prompt to create the proposal that will be selected and refined. The predicted mask is therefore partly constructed from the ground-truth target mask's location, so the reported Ego→Exo 49.7% and Exo→Ego 55.2% IoUs are not independent predictions: they are partially determined by the answer being predicted. Methods compared in Table 2 (ObjectRelator, XView-XMem, etc.) do not receive GT target boxes, so the comparison is structurally advantaged.

full rationale

The paper is an empirical computer-vision system evaluated on an external benchmark, not an analytic derivation. After reviewing the full text, I find no self-citation chain, no imported uniqueness theorem, and no fitted parameter renamed as a prediction. The DOM attention, mix matching, and mask-refinement losses are ordinary supervised training on the Ego-Exo4D train split. The single load-bearing circularity is the inference-time sentence in Section 3.7: 'their bounding box is served as box prompts for SAM 2,' where 'their' refers to ground-truth masks. This means the target ground-truth boxes are fed into SAM 2 at test time, and the resulting proposals are concatenated with the detector proposals for matching. The reported mIoU therefore partially reduces to the ground-truth input by construction, and the SOTA comparison is unfair to methods that do not receive GT boxes. If the sentence were interpreted as referring to YOLO-generated proposal boxes, the issue would vanish, but as written the text supports the leakage reading. The proposal-coverage table (Table 1) also omits recall of objects with no proposal, but that is a missing-support issue rather than circularity. Overall score 6: one central 'prediction' is partially self-defined by test-time GT-box injection, while the rest of the system retains independent empirical content.

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

The framework is an empirical neural system built from existing components; it introduces no new physical or formal entities. The entries above capture the fitted hyperparameters and the domain assumptions that the benchmark claim silently depends on, especially proposal recall and cross-view positional consistency.

free parameters (6)
  • Maximum proposal count N = 160
    Table 4 tests 80/120/160 proposals and 160 is used in the reported system, so the headline numbers depend on this validation-set choice.
  • Contrastive supervision IoU threshold = 0.5
    Eq. (15) gates training pairs to proposals with IoU > 0.5 in both views; the threshold is not ablated.
  • Loss weights lambda_focal, lambda_dice = 20, 1
    Section 4.1 takes these values from SAM [22]; they are not ablated in this paper.
  • Learnable temperature tau = not reported
    Appears in Eqs. (7)-(8) and losses (12)-(13); learned during training.
  • Attention blocks L = 6
    Section 4.1 sets L=6 for DOM; no ablation is shown.
  • All trainable network weights in DOM and MR = learned on Ego-Exo4D training split
    The reported mIoU is produced by this learned function; this is the empirical content of the paper rather than a derived constant.
assumptions (4)
  • domain assumption Task objects are covered by YOLO-UniOW proposals over the LVIS vocabulary
    Section 3.3 and Table 1: the method can only match objects for which a proposal exists; coverage is reported as best-pair IoU, not recall.
  • domain assumption Spatial configuration of objects is roughly preserved across ego and exo views
    Section 3.4: positional embeddings and the mix strategy rely on this consistency; no failure analysis for occlusion or rearrangement is provided.
  • domain assumption SAM 2 token embeddings contain sufficient visual information for cross-view matching
    Section 3.4: token embeddings are used as the visual cue; the paper's own ablation (Table 5) shows concatenated image features do not help.
  • domain assumption Open-vocabulary labels from the LVIS vocabulary provide useful semantic cues
    Section 3.4: label embeddings are CLIP text embeddings of LVIS class predictions; objects outside this vocabulary may lack semantic discrimination.

how reviews work

0 comments
Cite this review

Pith. "Pith review of DOMR: Establishing Cross-View Segmentation via Dense Object Matching." pith.science (2026). https://pith.science/paper/AIGAQDQM

@misc{pith2026250804050,
  author       = {Pith},
  title        = {Pith review of: DOMR: Establishing Cross-View Segmentation via Dense Object Matching},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AIGAQDQM}},
  note         = {Machine review of arXiv:2508.04050}
}
abstract

Cross-view object correspondence involves matching objects between egocentric (first-person) and exocentric (third-person) views. It is a critical yet challenging task for visual understanding. In this work, we propose the Dense Object Matching and Refinement (DOMR) framework to establish dense object correspondences across views. The framework centers around the Dense Object Matcher (DOM) module, which jointly models multiple objects. Unlike methods that directly match individual object masks to image features, DOM leverages both positional and semantic relationships among objects to find correspondences. DOM integrates a proposal generation module with a dense matching module that jointly encodes visual, spatial, and semantic cues, explicitly constructing inter-object relationships to achieve dense matching among objects. Furthermore, we combine DOM with a mask refinement head designed to improve the completeness and accuracy of the predicted masks, forming the complete DOMR framework. Extensive evaluations on the Ego-Exo4D benchmark demonstrate that our approach achieves state-of-the-art performance with a mean IoU of 49.7% on Ego$\to$Exo and 55.2% on Exo$\to$Ego. These results outperform those of previous methods by 5.8% and 4.3%, respectively, validating the effectiveness of our integrated approach for cross-view understanding.

Figures

Figures reproduced from arXiv: 2508.04050 by the authors.

Figure 1
Figure 1. Comparison between Single Object Searching (SOS) [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of the DOMR architecture, where we take Ego [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Comparative visualization of SOS and DOM per [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Illustration of DOMR prediction before and after [PITH_FULL_IMAGE:figures/full_fig_p008_4.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. V$^{2}$-SAM: Marrying SAM2 with Multi-Prompt Experts for Cross-View Object Correspondence

    cs.CV 2025-11 unverdicted novelty 6.0 of 10

    V2-SAM adapts SAM2 to cross-view object correspondence with geometry-aware and appearance-based prompt generators plus a post-hoc cyclic consistency selector, reporting new state-of-the-art results on Ego-Exo4D, DAVIS...

Reference graph

Works this paper leans on

60 extracted references · 45 canonical work pages · cited by 1 Pith paper

  1. [1]

    Shervin Ardeshir and Ali Borji. 2016. Ego2top: Matching viewers in egocentric and top-view videos. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part V 14 . Springer, 253–268

  2. [2]

    Shervin Ardeshir and Ali Borji. 2018. Egocentric meets top-view.IEEE transactions on pattern analysis and machine intelligence 41, 6 (2018), 1353–1366

  3. [3]

    Daniel Bolya, Chong Zhou, Fanyi Xiao, and Yong Jae Lee. 2019. Yolact: Real-time instance segmentation. In Proceedings of the IEEE/CVF international conference on computer vision. 9157–9166

  4. [4]

    Michael Calonder, Vincent Lepetit, Christoph Strecha, and Pascal Fua. 2010. Brief: Binary robust independent elementary features. In Computer Vision–ECCV 2010: 11th European Conference on Computer Vision, Heraklion, Crete, Greece, September 5-11, 2010, Proceedings, Part IV 11 . Springer, 778–792

  5. [5]

    Eric R Chan, Koki Nagano, Matthew A Chan, Alexander W Bergman, Jeong Joon Park, Axel Levy, Miika Aittala, Shalini De Mello, Tero Karras, and Gordon Wet- zstein. 2023. Generative novel view synthesis with 3d-aware diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision . 4217– 4229

  6. [6]

    Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. 2014. Semantic image segmentation with deep convolutional nets and fully connected crfs. arXiv preprint arXiv:1412.7062 (2014)

  7. [7]

    Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. 2017. Deeplab: Semantic image segmentation with deep convolu- tional nets, atrous convolution, and fully connected crfs. IEEE transactions on pattern analysis and machine intelligence 40, 4 (2017), 834–848

  8. [8]

    Liang-Chieh Chen, George Papandreou, Florian Schroff, and Hartwig Adam. 2017. Rethinking atrous convolution for semantic image segmentation. arXiv preprint arXiv:1706.05587 (2017)

Show all 60 references
  1. [9]

    Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian Schroff, and Hartwig Adam. 2018. Encoder-decoder with atrous separable convolution for semantic image segmentation. In Proceedings of the European conference on computer vision (ECCV). 801–818

  2. [10]

    Bowen Cheng, Ishan Misra, Alexander G Schwing, Alexander Kirillov, and Rohit Girdhar. 2022. Masked-attention mask transformer for universal image segmen- tation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 1290–1299

  3. [11]

    Bowen Cheng, Alex Schwing, and Alexander Kirillov. 2021. Per-pixel classifica- tion is not all you need for semantic segmentation.Advances in neural information processing systems 34 (2021), 17864–17875

  4. [12]

    Feng Cheng, Mi Luo, Huiyu Wang, Alex Dimakis, Lorenzo Torresani, Gedas Bertasius, and Kristen Grauman. 2025. 4diff: 3d-aware diffusion model for third-to- first viewpoint translation. In European Conference on Computer Vision . Springer, 409–427

  5. [13]

    Tianheng Cheng, Lin Song, Yixiao Ge, Wenyu Liu, Xinggang Wang, and Ying Shan. 2024. YOLO-World: Real-Time Open-Vocabulary Object Detection. In Proc. IEEE Conf. Computer Vision and Pattern Recognition (CVPR)

  6. [14]

    Chenyou Fan, Jangwon Lee, Mingze Xu, Krishna Kumar Singh, Yong Jae Lee, David J Crandall, and Michael S Ryoo. 2017. Identifying first-person camera wearers in third-person videos. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition . 5125–5133

  7. [15]

    Wei Feng, Feifan Wang, Ruize Han, Yiyang Gan, Zekun Qian, Junhui Hou, and Song Wang. 2024. Unveiling the Power of Self-supervision for Multi-view Multi- human Association and Tracking. IEEE Transactions on Pattern Analysis and Machine Intelligence (2024)

  8. [16]

    Martin A Fischler and Robert C Bolles. 1981. Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography. Commun. ACM 24, 6 (1981), 381–395

  9. [17]

    Yuqian Fu, Runze Wang, Yanwei Fu, Danda Pani Paudel, Xuanjing Huang, and Luc Van Gool. 2024. ObjectRelator: Enabling Cross-View Object Relation Under- standing in Ego-Centric and Exo-Centric Videos. arXiv preprint arXiv:2411.19083 (2024)

  10. [18]

    Kristen Grauman, Andrew Westbury, Lorenzo Torresani, Kris Kitani, Jitendra Malik, Triantafyllos Afouras, Kumar Ashutosh, Vijay Baiyya, Siddhant Bansal, Bikram Boote, et al. 2024. Ego-exo4d: Understanding skilled human activity from first-and third-person perspectives. In Proce...

  11. [19]

    Agrim Gupta, Piotr Dollar, and Ross Girshick. 2019. Lvis: A dataset for large vocabulary instance segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 5356–5364

  12. [20]

    Abdul Mueed Hafiz and Ghulam Mohiuddin Bhat. 2020. A survey on instance segmentation: state of the art. International journal of multimedia information retrieval 9, 3 (2020), 171–189

  13. [21]

    Alexander Kirillov, Kaiming He, Ross Girshick, Carsten Rother, and Piotr Dol- lár. 2019. Panoptic segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 9404–9413

  14. [22]

    Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C Berg, Wan-Yen Lo, et al

  15. [23]

    Yanghao Li, Tushar Nagarajan, Bo Xiong, and Kristen Grauman. 2021. Ego-exo: Transferring visual representations from third-person to first-person videos. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 6943–6953

  16. [24]

    Tsung-Yi Lin, Yin Cui, Serge Belongie, and James Hays. 2015. Learning deep representations for ground-to-aerial geolocalization. In Proceedings of the IEEE conference on computer vision and pattern recognition . 5007–5015

  17. [25]

    Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. 2017. Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision . 2980–2988

  18. [26]

    Andrew Liu, Richard Tucker, Varun Jampani, Ameesh Makadia, Noah Snavely, and Angjoo Kanazawa. 2021. Infinite nature: Perpetual view generation of natural scenes from a single image. In Proceedings of the IEEE/CVF International Conference on Computer Vision . 14458–14467

  19. [27]

    Lihao Liu, Juexiao Feng, Hui Chen, Ao Wang, Lin Song, Jungong Han, and Guiguang Ding. 2024. YOLO-UniOW: Efficient Universal Open-World Object Detection. arXiv preprint arXiv:2412.20645 (2024)

  20. [28]

    Shu Liu, Lu Qi, Haifang Qin, Jianping Shi, and Jiaya Jia. 2018. Path aggregation network for instance segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition . 8759–8768

  21. [29]

    Shilong Liu, Zhaoyang Zeng, Tianhe Ren, Feng Li, Hao Zhang, Jie Yang, Qing Jiang, Chunyuan Li, Jianwei Yang, Hang Su, et al. 2024. Grounding dino: Marry- ing dino with grounded pre-training for open-set object detection. In European Conference on Computer Vision . Springer, 38–55

  22. [30]

    Ilya Loshchilov and Frank Hutter. 2017. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101 (2017)

  23. [31]

    David G Lowe. 2004. Distinctive image features from scale-invariant keypoints. International journal of computer vision 60 (2004), 91–110

  24. [32]

    Bruce D Lucas and Takeo Kanade. 1981. An iterative image registration technique with an application to stereo vision. In IJCAI’81: 7th international joint conference on Artificial intelligence, Vol. 2. 674–679

  25. [33]

    Mi Luo, Zihui Xue, Alex Dimakis, and Kristen Grauman. 2025. Put myself in your shoes: Lifting the egocentric perspective from exocentric videos. In European Conference on Computer Vision . Springer, 407–425

  26. [34]

    Fausto Milletari, Nassir Navab, and Seyed-Ahmad Ahmadi. 2016. V-net: Fully convolutional neural networks for volumetric medical image segmentation. In 2016 fourth international conference on 3D vision (3DV) . Ieee, 565–571

  27. [35]

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learni...

  28. [36]

    Nikhila Ravi, Valentin Gabeur, Yuan-Ting Hu, Ronghang Hu, Chaitanya Ryali, Tengyu Ma, Haitham Khedr, Roman Rädle, Chloe Rolland, Laura Gustafson, et al. 2024. Sam 2: Segment anything in images and videos. arXiv preprint arXiv:2408.00714 (2024)

  29. [37]

    Krishna Regmi and Ali Borji. 2019. Cross-view image synthesis using geometry- guided conditional gans. Computer Vision and Image Understanding 187 (2019), 102788

  30. [38]

    Krishna Regmi and Mubarak Shah. 2019. Bridging the domain gap for ground-to- aerial image matching. In Proceedings of the IEEE/CVF International Conference on Computer Vision. 470–479

  31. [39]

    Xuanchi Ren and Xiaolong Wang. 2022. Look outside the room: Synthesizing a consistent long-term 3d scene video from a single image. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition . 3563–3573

  32. [40]

    Paul-Edouard Sarlin, Daniel DeTone, Tomasz Malisiewicz, and Andrew Rabi- novich. 2020. Superglue: Learning feature matching with graph neural networks. In Proceedings of the IEEE/CVF conference on computer vision and pattern recogni- tion. 4938–4947

  33. [41]

    Pierre Sermanet, Corey Lynch, Yevgen Chebotar, Jasmine Hsu, Eric Jang, Stefan Schaal, Sergey Levine, and Google Brain. 2018. Time-contrastive networks: Self- supervised learning from video. In 2018 IEEE international conference on robotics and automation (ICRA). IEEE, 1134–1141

  34. [42]

    Prune Truong, Martin Danelljan, and Radu Timofte. 2020. GLU-Net: Global-local universal network for dense flow and correspondences. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 6258–6268

  35. [43]

    Hung-Yu Tseng, Qinbo Li, Changil Kim, Suhib Alsisan, Jia-Bin Huang, and Jo- hannes Kopf. 2023. Consistent view synthesis with pose-guided diffusion models. MM ’25, October 27–31, 2025, Dublin, Ireland Jitong Liao and Yulu Gao, et al. In Proceedings of the IEEE/CVF Conference o...

  36. [44]

    Benjamin Ummenhofer, Huizhong Zhou, Jonas Uhrig, Nikolaus Mayer, Eddy Ilg, Alexey Dosovitskiy, and Thomas Brox. 2017. Demon: Depth and motion network for learning monocular stereo. In Proceedings of the IEEE conference on computer vision and pattern recognition . 5038–5047

  37. [45]

    Ao Wang, Hui Chen, Lihao Liu, Kai Chen, Zijia Lin, Jungong Han, and Guiguang Ding. 2024. YOLOv10: Real-Time End-to-End Object Detection. arXiv preprint arXiv:2405.14458 (2024)

  38. [46]

    Ao Wang, Lihao Liu, Hui Chen, Zijia Lin, Jungong Han, and Guiguang Ding

  39. [47]

    Xiao Wang, Guangyao Chen, Guangwu Qian, Pengcheng Gao, Xiao-Yong Wei, Yaowei Wang, Yonghong Tian, and Wen Gao. 2023. Large-scale multi-modal pre-trained models: A comprehensive survey. Machine Intelligence Research 20, 4 (2023), 447–482

  40. [48]

    Xinlong Wang, Xiaosong Zhang, Yue Cao, Wen Wang, Chunhua Shen, and Tiejun Huang. 2023. Seggpt: Segmenting everything in context. arXiv preprint arXiv:2304.03284 (2023)

  41. [49]

    Yangming Wen, Krishna Kumar Singh, Markham Anderson, Wei-Pang Jan, and Yong Jae Lee. 2021. Seeing the unseen: Predicting the first-person camera wearer’s location and pose in third-person scenes. In Proceedings of the IEEE/CVF Interna- tional Conference on Computer Vision . 3446–3455

  42. [50]

    Mingze Xu, Chenyou Fan, Yuchen Wang, Michael S Ryoo, and David J Crandall

  43. [51]

    Zihui Sherry Xue and Kristen Grauman. 2023. Learning fine-grained view- invariant representations from unpaired ego-exo videos via temporal alignment. Advances in Neural Information Processing Systems 36 (2023), 53688–53710

  44. [52]

    Kwang Moo Yi, Eduard Trulls, Vincent Lepetit, and Pascal Fua. 2016. Lift: Learned invariant feature transform. In Computer Vision–ECCV 2016: 14th European Con- ference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part VI 14 . Springer, 467–483

  45. [53]

    Huangyue Yu, Minjie Cai, Yunfei Liu, and Feng Lu. 2019. What i see is what you see: Joint attention learning for first and third person video co-analysis. In Proceedings of the 27th ACM International Conference on Multimedia . 1358–1366

  46. [54]

    Chunhui Zhang, Li Liu, Yawen Cui, Guanjie Huang, Weilin Lin, Yiqian Yang, and Yuehong Hu. 2023. A comprehensive survey on segment anything model for vision and beyond. arXiv preprint arXiv:2305.08196 (2023)

  47. [55]

    Wenwei Zhang, Jiangmiao Pang, Kai Chen, and Chen Change Loy. 2021. K-net: Towards unified image segmentation. Advances in Neural Information Processing Systems 34 (2021), 10326–10338

  48. [56]

    Zheng Zhang, Yeyao Ma, Enming Zhang, and Xiang Bai. 2024. Psalm: Pixelwise segmentation with large multi-modal model. InEuropean Conference on Computer Vision. Springer, 74–91

  49. [57]

    Xueyan Zou, Jianwei Yang, Hao Zhang, Feng Li, Linjie Li, Jianfeng Wang, Lijuan Wang, Jianfeng Gao, and Yong Jae Lee. 2023. Segment everything everywhere all at once. Advances in neural information processing systems36 (2023), 19769–19782

  50. [2018]

    In Proceedings of the European Conference on Computer Vision (ECCV)

    Joint person segmentation and identification in synchronized first-and third-person videos. In Proceedings of the European Conference on Computer Vision (ECCV). 637–652

  51. [2023]

    In Proceedings of the IEEE/CVF International Conference on Computer Vision

    Segment anything. In Proceedings of the IEEE/CVF International Conference on Computer Vision. 4015–4026

  52. [2025]

    arXiv:2503.07465 [cs.CV] https: //arxiv.org/abs/2503.07465

    YOLOE: Real-Time Seeing Anything. arXiv:2503.07465 [cs.CV] https: //arxiv.org/abs/2503.07465

Pith tools

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