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 →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
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.
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
- 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.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
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)
- [§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.
- [§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 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)
- [§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.
- [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.
- [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.
- [§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.
- [§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
Section 3.7 injects ground-truth target boxes as SAM 2 prompts at inference, making the headline IoU partially self-fulfilling.
-
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
free parameters (6)
- Maximum proposal count N =
160
- Contrastive supervision IoU threshold =
0.5
- Loss weights lambda_focal, lambda_dice =
20, 1
- Learnable temperature tau =
not reported
- Attention blocks L =
6
- All trainable network weights in DOM and MR =
learned on Ego-Exo4D training split
assumptions (4)
- domain assumption Task objects are covered by YOLO-UniOW proposals over the LVIS vocabulary
- domain assumption Spatial configuration of objects is roughly preserved across ego and exo views
- domain assumption SAM 2 token embeddings contain sufficient visual information for cross-view matching
- domain assumption Open-vocabulary labels from the LVIS vocabulary provide useful semantic cues
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
Forward citations
Cited by 1 Pith paper
-
V$^{2}$-SAM: Marrying SAM2 with Multi-Prompt Experts for Cross-View Object Correspondence
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
-
[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
work page 2016
-
[2]
Shervin Ardeshir and Ali Borji. 2018. Egocentric meets top-view.IEEE transactions on pattern analysis and machine intelligence 41, 6 (2018), 1353–1366
work page 2018
-
[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
work page 2019
-
[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
work page 2010
-
[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
work page 2023
-
[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)
arXiv 2014
-
[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
work page 2017
-
[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)
arXiv 2017
Show all 60 references
-
[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
2018
-
[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
2022
-
[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
2021
-
[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
2025
-
[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)
2024
-
[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
2017
-
[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)
2024
-
[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
1981
-
[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)
2024 arXiv
-
[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...
2024
-
[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
2019
-
[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
2020
-
[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
2019
-
[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
-
[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
2021
-
[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
2015
-
[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
2017
-
[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
2021
-
[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)
2024 arXiv
-
[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
2018
-
[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
2024
-
[30]
Ilya Loshchilov and Frank Hutter. 2017. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101 (2017)
2017 arXiv
-
[31]
David G Lowe. 2004. Distinctive image features from scale-invariant keypoints. International journal of computer vision 60 (2004), 91–110
2004
-
[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
1981
-
[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
2025
-
[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
2016
-
[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...
2021
-
[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)
2024 arXiv
-
[37]
Krishna Regmi and Ali Borji. 2019. Cross-view image synthesis using geometry- guided conditional gans. Computer Vision and Image Understanding 187 (2019), 102788
2019
-
[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
2019
-
[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
2022
-
[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
2020
-
[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
2018
-
[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
2020
-
[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...
2023
-
[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
2017
-
[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)
2024 arXiv
-
[46]
Ao Wang, Lihao Liu, Hui Chen, Zijia Lin, Jungong Han, and Guiguang Ding
-
[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
2023
-
[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)
2023 arXiv
-
[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
2021
-
[50]
Mingze Xu, Chenyou Fan, Yuchen Wang, Michael S Ryoo, and David J Crandall
-
[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
2023
-
[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
2016
-
[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
2019
-
[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)
2023 arXiv
-
[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
2021
-
[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
2024
-
[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
2023
-
[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
-
[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
-
[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
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.