REVIEW 2 major objections 4 minor 1 cited by
Cross-View Multi-Modal Segmentation @ Ego-Exo4D Challenges 2025
T0 review · 2 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Adding text and view alignment lifts cross-view segmentation IoU to 0.35.
desk verdict Challenge report with solid leaderboard results but an ablation that doesn't add up; the per-module claims need a fix, though the ranking itself stands. 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
The Multimodal Condition Fusion (MCFuse) module is the central new mechanism: it takes a visual-mask embedding as its primary branch and a text embedding, generated by LLaVA from the masked query image, as a residual branch, with a learned scalar controlling text contribution. The second mechanism, Cross-View Object Alignment (XObjAlign), is a self-supervised consistency loss computed as the Euclidean distance between the query-object embedding and the target-object embedding obtained from the ground-truth target mask; it is applied during training only and adds no parameters, aligning object representations across the ego-exo domain gap.
What would settle it
One concrete check is to run the full model on the Ego→Exo validation set with the text branch of MCFuse fed either the generated LLaVA description, a randomly chosen unrelated description, or an empty string; if IoU in the latter two cases matches the first within noise, the claim that textual guidance improves localization is undermined. A complementary check is to compute per-frame IoU on objects that occupy only a few pixels and compare the mask-conditioned model with and without text, since small objects are exactly where the report expects text to help.
Extended reading notes
Core claim
The core claim is that a multimodal condition fusion module (MCFuse) and a cross-view object alignment module (XObjAlign), both added on top of the PSALM segmentation baseline, are sufficient to substantially boost cross-view correspondence segmentation. MCFuse generates a short text description of the query object by prompting LLaVA with the query frame and query mask, then fuses the text embedding into the visual-mask branch through a residual connection with a learnable weight. XObjAlign feeds the ground-truth target mask into the LLM to obtain a target visual embedding and minimizes the Euclidean distance to the query object's visual embedding, enforcing object-level consistency across ego and exo views during training only, without adding parameters. The report shows the combined model improves the baseline IoU from 30% to 35% on the Ego→Exo track, with MCFuse and XObjAlign each contributing, and achieves first place in visibility accuracy on both transfer directions.
Load-bearing premise
The paper assumes that the LLaVA-generated text descriptions, prompted with the query image and mask, are accurate and useful enough about the target object to help segmentation; this is not tested independently of the fusion module, and the authors note that small or cluttered objects make generation unreliable.
Editorial extensions
If this is right
- On the official Ego-Exo4D test set, the method raises IoU from 0.19 to 0.35 (Ego→Exo) and from 0.27 to 0.40 (Exo→Ego) relative to the XSegTx baseline.
- The method ranks first in Visibility Accuracy, reaching 96% on Ego→Exo and 97% on Exo→Ego, indicating reliable prediction of whether the object appears in the target view.
- Ablation on the Ego→Exo track shows MCFuse adds +3% IoU and XObjAlign adds +4% IoU, and combining them yields the best result of 35%.
- The method consistently outperforms the baseline across all six Ego-Exo4D scenarios in the Ego→Exo direction, with larger margins in simpler domains and smaller margins in cluttered ones such as Cooking.
Reading between the lines
- A natural test of MCFuse's contribution would be to replace the LLaVA-generated text descriptions with ground-truth object names or with scrambled descriptions; if IoU is insensitive to text content, the residual text branch may be acting more as a regularizer than as a semantic cue.
- Because XObjAlign imposes alignment using the ground-truth target mask at training time, it acts as a view-invariance regularizer that could transfer to other cross-view retrieval or tracking tasks where paired views exist during training.
- The report acknowledges incomplete masks in cluttered scenes and no temporal modelling; since Ego-Exo4D videos are time-synchronized, feeding consecutive frames into the alignment loss is a direct way to test whether temporal context closes that gap.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents ObjectRelator, a cross-view multi-modal object segmentation method developed for the Ego-Exo4D Correspondence Challenge 2025. Built on the PSALM baseline, the method adds two modules: Multimodal Condition Fusion (MCFuse), which fuses self-generated textual descriptions with visual mask prompts, and Cross-View Object Alignment (XObjAlign), which enforces object-level embedding consistency across ego/exo views. The authors report that their submission ranks second overall on the leaderboard and first in Visibility Accuracy (VA), with per-task IoU gains from 0.19 to 0.35 (Ego→Exo) and 0.27 to 0.40 (Exo→Ego) over the XSegTx baseline. Ablations on Ego→Exo show Base=0.30, +MCFuse=0.33, +XObjAlign=0.34, and full model=0.35.
Significance. The leaderboard-anchored evaluation is a genuine strength: the central ranking claim is verified externally rather than through self-reported metrics on a private test set. If the module-level attribution is clarified, the paper provides a useful and reproducible engineering recipe for cross-view correspondence, a task that existing segmentation models cannot directly address. The novelty is incremental and the technical depth is modest, but the work confirms that text-conditioned fusion and object-level embedding alignment deliver consistent gains over a strong baseline in a challenging multi-view setting. The paper is honest about its limitations (cluttered scenes, no temporal modeling) and explicitly cites the prior work that introduced the full architecture.
major comments (2)
- [Section 3.3, Table 2] The textual description of the ablation is internally inconsistent with the reported numbers. The text states that MCFuse increases the baseline IoU by 3% and XObjAlign adds an additional 4%, and that the full model improves IoU from 30% to 35%. With Base=0.30, +MCFuse=0.33, +XObjAlign=0.34, and ObjectRelator=0.35, the numbers are compatible only if both percentages are read as gains over the base model, but then the word 'additional' is misleading. If 'additional' is read as on top of MCFuse, the full model should reach 0.37, not 0.35. The actual incremental contribution of XObjAlign when added to MCFuse is 2 percentage points, not 4. Please specify the exact pairwise comparisons, present a delta matrix or the intermediate combination, and state whether the ablation was performed on the validation split or the test split; if test-set IoU values were used for module selection, the reported gains could be optimistically biased.
- [Section 3.3] The ablations are single-run and are reported only for the Ego→Exo direction, with no error bars, confidence intervals, or significance tests. For a deep segmentation model, a 2–3 point IoU difference between configurations can fall within run-to-run variance, especially on a small validation subset. The claim that 'both modules contribute significantly' is therefore not fully supported by the evidence as presented. Repeating the ablation with multiple seeds (or at least reporting the evaluation split and the number of frames) would materially strengthen the causal attribution of the two proposed modules.
minor comments (4)
- [Section 2.3] XObjAlign is described as 'self-supervised' in Sections 1 and 2.3, but the proposed L_Xobj uses the ground-truth target mask to obtain the target object visual embedding. This is a supervised training signal, not self-supervision. Please correct the terminology or explicitly justify why the use of masks during training is considered self-supervised.
- [Section 2.3] The detailed architecture and configuration of the proposed modules are entirely deferred to prior work [4]. For a standalone paper, at least the essential fusion equations, the definition of L_Xobj, and the prompt template for LLaVA should be included so that a reader can understand or reproduce the method without accessing the other paper.
- [Table 1] The comparison table omits the team names for two anonymous rows, which makes it difficult to attribute the results. Please add the team identifiers or mark them consistently.
- [Figure 1] Figure 1 is dense and the text labels are small; a larger or higher-resolution figure with clearer sub-panel annotations would help readers follow the MCFuse and XObjAlign paths, which are the core contributions.
Circularity Check
No significant circularity: leaderboard and ablation results are externally anchored, with only minor non-load-bearing self-citation to the authors' prior ObjectRelator paper.
full rationale
The report's central quantitative claims are grounded in an external benchmark and a public leaderboard, not in a derivation from its own assumptions. The Ego→Exo and Exo→Ego IoU improvements over the XSegTx baseline (0.19→0.35 and 0.27→0.40) are measured results reported in Table 1, and the second-place/first-in-VA claims are externally verifiable. MCFuse generates text from the query mask and fuses visual/text embeddings; the text conditioning is an additional input, not a renamed form of the predicted target mask. XObjAlign uses the ground-truth target mask only as a training-time alignment target (L_Xobj) and is not applied at inference, so the reported test predictions do not reduce to the training label by construction. The only self-citation chain is the referral to prior work [4] for architecture details ('For detailed architecture and configurations of the modules, please refer to our prior work [4]'), but the ablation study in Table 2 and the leaderboard results are presented as empirical measurements of this system rather than as consequences of the citation. The paper's internal ablation arithmetic is inconsistent (0.30 + 0.03 + 0.04 does not equal 0.35) and the ablation split is not stated, which weakens causal attribution of the modules and warrants a correctness/verification flag, but this is not a circularity because the numbers are not equivalent to the inputs by construction. No prediction is a fitted parameter renamed as a result, and no uniqueness claim is imported from the authors' prior work to force the model choice.
Assumptions & free parameters
assumptions (3)
- domain assumption Ego-Exo4D ground-truth masks are accurate enough for training and evaluation.
- domain assumption PSALM's pretrained weights provide a valid base for learning new modules without retraining the visual encoder.
- ad hoc to paper LLaVA's generated descriptions are informative when the query image and mask are combined via the designed prompt.
Cite this review
Pith. "Pith review of Cross-View Multi-Modal Segmentation @ Ego-Exo4D Challenges 2025." pith.science (2026). https://pith.science/paper/BKTQISDR
@misc{pith2026250605856,
author = {Pith},
title = {Pith review of: Cross-View Multi-Modal Segmentation @ Ego-Exo4D Challenges 2025},
year = {2026},
howpublished = {\url{https://pith.science/paper/BKTQISDR}},
note = {Machine review of arXiv:2506.05856}
}
read the original abstract
In this report, we present a cross-view multi-modal object segmentation approach for the object correspondence task in the Ego-Exo4D Correspondence Challenges 2025. Given object queries from one perspective (e.g., ego view), the goal is to predict the corresponding object masks in another perspective (e.g., exo view). To tackle this task, we propose a multimodal condition fusion module that enhances object localization by leveraging both visual masks and textual descriptions as segmentation conditions. Furthermore, to address the visual domain gap between ego and exo views, we introduce a cross-view object alignment module that enforces object-level consistency across perspectives, thereby improving the model's robustness to viewpoint changes. Our proposed method ranked second on the leaderboard of the large-scale Ego-Exo4D object correspondence benchmark. Code will be made available at https://github.com/lovelyqian/ObjectRelator.
Figures
Forward citations
Cited by 1 Pith paper
-
From Synchrony to Sequence: Exo-to-Ego Generation via Interpolation
Interpolating only the video frames between synchronized exo and ego clips already turns discontinuous cross-view generation into continuous sequence modeling and measurably improves diffusion-based Exo2Ego synthesis.
Reference graph
Works this paper leans on
-
[4]
Yuqian Fu, Runze Wang, Yanwei Fu, Danda Pani Paudel, Xuanjing Huang, and Luc Van Gool. Objectrelator: Enabling cross-view object relation understanding in ego-centric and exo-centric videos.arXiv preprint arXiv:2411.19083, 2024. 1, 2, 3
arXiv 2024
-
[1]
Zhaochong An, Guolei Sun, Zongwei Wu, Hao Tang, and Luc Van Gool. Temporal-aware hierarchical mask classi- fication for video semantic segmentation.arXiv preprint arXiv:2309.08020, 2023. 1
arXiv 2023
-
[2]
Tim Br ¨odermann, Christos Sakaridis, Yuqian Fu, and Luc Van Gool. Cafuser: Condition-aware multimodal fusion for robust semantic perception of driving scenes.IEEE Robotics and Automation Letters, 2025
work page 2025
-
[3]
Masked-attention mask transformer for universal image segmentation
Bowen Cheng, Ishan Misra, Alexander G Schwing, Alexan- der Kirillov, and Rohit Girdhar. Masked-attention mask transformer for universal image segmentation. InProceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, pages 1290–1299, 2022. 1
2022
-
[5]
Ego-exo4d: Understanding skilled human activity from first-and third-person perspectives
Kristen Grauman, Andrew Westbury, Lorenzo Torresani, Kris Kitani, Jitendra Malik, Triantafyllos Afouras, Kumar Ashutosh, Vijay Baiyya, Siddhant Bansal, Bikram Boote, et al. Ego-exo4d: Understanding skilled human activity from first-and third-person perspectives. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 193...
work page 2024
-
[6]
X-prompt: Multi-modal visual prompt for video object segmentation
Pinxue Guo, Wanyun Li, Hao Huang, Lingyi Hong, Xinyu Zhou, Zhaoyu Chen, Jinglun Li, Kaixun Jiang, Wei Zhang, and Wenqiang Zhang. X-prompt: Multi-modal visual prompt for video object segmentation. InProceedings of the 32nd ACM International Conference on Multimedia, pages 5151– 5160, 2024. 1
work page 2024
-
[7]
Mask r-cnn
Kaiming He, Georgia Gkioxari, Piotr Doll ´ar, and Ross Gir- shick. Mask r-cnn. InProceedings of the IEEE international conference on computer vision, pages 2961–2969, 2017
2017
-
[8]
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer White- head, Alexander C Berg, Wan-Yen Lo, et al. Segment any- thing. InProceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 4015–4026, 2023
work page 2023
Show all 21 references
-
[9]
Lisa: Reasoning segmentation via large language model
Xin Lai, Zhuotao Tian, Yukang Chen, Yanwei Li, Yuhui Yuan, Shu Liu, and Jiaya Jia. Lisa: Reasoning segmentation via large language model. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 9579–9589, 2024
2024
-
[10]
Onevos: unifying video object segmentation with all-in-one transformer framework
Wanyun Li, Pinxue Guo, Xinyu Zhou, Lingyi Hong, Yangji He, Xiangyu Zheng, Wei Zhang, and Wenqiang Zhang. Onevos: unifying video object segmentation with all-in-one transformer framework. InEuropean Conference on Com- puter Vision, pages 20–40. Springer, 2024
2024
-
[11]
Omg-seg: Is one model good enough for all segmentation? InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 27948–27959, 2024
Xiangtai Li, Haobo Yuan, Wei Li, Henghui Ding, Size Wu, Wenwei Zhang, Yining Li, Kai Chen, and Chen Change Loy. Omg-seg: Is one model good enough for all segmentation? InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 27948–27959, 2024. 1
2024
-
[12]
Visual instruction tuning, 2023
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning, 2023. 1, 3
2023
-
[13]
Glamm: Pixel grounding large multimodal model
Hanoona Rasheed, Muhammad Maaz, Sahal Shaji, Abdel- rahman Shaker, Salman Khan, Hisham Cholakkal, Rao M Anwer, Eric Xing, Ming-Hsuan Yang, and Fahad S Khan. Glamm: Pixel grounding large multimodal model. InPro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern...
2024
-
[14]
Pixellm: Pixel reasoning with large multimodal model
Zhongwei Ren, Zhicheng Huang, Yunchao Wei, Yao Zhao, Dongmei Fu, Jiashi Feng, and Xiaojie Jin. Pixellm: Pixel reasoning with large multimodal model. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 26374–26383, 2024
2024
-
[15]
Object segmentation by mining cross-modal se- mantics
Zongwei Wu, Jingjing Wang, Zhuyun Zhou, Zhaochong An, Qiuping Jiang, C ´edric Demonceaux, Guolei Sun, and Radu Timofte. Object segmentation by mining cross-modal se- mantics. InProceedings of the 31st ACM International Con- ference on Multimedia, pages 3455–3464, 2023
2023
-
[16]
Universal instance percep- tion as object discovery and retrieval
Bin Yan, Yi Jiang, Jiannan Wu, Dong Wang, Ping Luo, Ze- huan Yuan, and Huchuan Lu. Universal instance percep- tion as object discovery and retrieval. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 15325–15336, 2023. 1
2023
-
[17]
Psalm: Pixelwise segmentation with large multi-modal model
Zheng Zhang, Yeyao Ma, Enming Zhang, and Xiang Bai. Psalm: Pixelwise segmentation with large multi-modal model. InEuropean Conference on Computer Vision, pages 74–91. Springer, 2024. 1
2024
-
[18]
Learning modality-agnostic representation for semantic segmentation from any modalities
Xu Zheng, Yuanhuiyi Lyu, and Lin Wang. Learning modality-agnostic representation for semantic segmentation from any modalities. InEuropean Conference on Computer Vision, pages 146–165. Springer, 2024. 1
2024
-
[19]
Distilling efficient vision transformers from cnns for seman- tic segmentation.Pattern Recognition, 158:111029, 2025
Xu Zheng, Yunhao Luo, Pengyuan Zhou, and Lin Wang. Distilling efficient vision transformers from cnns for seman- tic segmentation.Pattern Recognition, 158:111029, 2025
2025
-
[20]
Camsam2: Segment any- thing accurately in camouflaged videos.arXiv preprint arXiv:2503.19730, 2025
Yuli Zhou, Guolei Sun, Yawei Li, Yuqian Fu, Luca Benini, and Ender Konukoglu. Camsam2: Segment any- thing accurately in camouflaged videos.arXiv preprint arXiv:2503.19730, 2025
2025
-
[21]
Segment everything everywhere all at once.Advances in Neural Information Processing Systems, 36, 2024
Xueyan Zou, Jianwei Yang, Hao Zhang, Feng Li, Linjie Li, Jianfeng Wang, Lijuan Wang, Jianfeng Gao, and Yong Jae Lee. Segment everything everywhere all at once.Advances in Neural Information Processing Systems, 36, 2024. 1 5
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.