arXivDaily arXiv每日学术速递 周一至周五更新

高校专区

The University of Hong Kong(香港大学)

至 收录 1525
2607.17810 2026-07-21 cs.CV cs.AI cs.HC 新提交

Vis2Reg: Visibility-Aware Landmark-Free Geometric 3D--2D Registration for Liver Laparoscopy

Vis2Reg:用于肝脏腹腔镜检查的可见性感知无标记几何3D-2D配准

Jiaming Feng, Xukun Zhang, Shahid Farid, Sharib Ali

机构 * AI in Medicine and Surgery Group, School of Computer Science, University of Leeds(利兹大学计算机学院医学与外科人工智能小组) Department of Diagnostic Radiology, Li Ka Shing Faculty of Medicine, The University of Hong Kong(香港大学李嘉诚医学院放射诊断学系) Department of HPB and Transplant Surgery, St. James’s University Hospital(圣詹姆斯大学医院肝脏胰胆和移植外科)

AI总结 针对AR引导腹腔镜手术中3D-2D肝脏配准难题,提出Vis2Reg框架,利用掩码一致可见区域约束变形,引入可见性感知自监督,结合刚性初始化模块与隐式神经变形场,在真实数据集上验证了准确性与效率。

Comments 11 pages

Journal ref 29th International Conference on Medical Image Computing and Computer Assisted Intervention (MICCAI'2026)

详情
AI中文摘要

准确的3D-2D肝脏配准将术前3D模型与部分依赖视图的术中表面观察对齐,对AR引导的腹腔镜手术至关重要,但因严重遮挡、可见性有限和缺乏3D地面真值监督而具有挑战性。现有无标记方法进行部分到完全的几何对齐,在极端部分可见性下进行鲁棒的自我监督仍很困难。我们提出Vis2Reg,一个可见性感知配准框架,使用掩码一致的可见区域明确约束变形。我们引入了一种可见性感知自我监督,通过可微点光栅化和掩码引导的反向投影,从术中掩码中导出可见域3D监督信号。该公式提高了在严重遮挡下的鲁棒性,同时保持完全自我监督学习。Vis2Reg结合了一个鲁棒的几何刚性初始化模块和一个隐式神经变形场以实现稳定对齐。在真实术中数据集上,Vis2Reg的Dice分数达到92.6%,倒角距离为1.43毫米,每帧推理时间为111毫秒,展示了准确性和实际效率。

英文摘要

Accurate 3D--2D liver registration, which aligns preoperative 3D models to partial, view-dependent intraoperative surface observations, is critical for AR-guided laparoscopic surgery but remains challenging due to severe occlusion, limited visibility, and the lack of 3D ground-truth supervision. Existing landmark-free approaches perform partial-to-complete geometric alignment, yet robust self-supervision under extreme partial visibility remains difficult. We propose Vis2Reg, a visibility-aware registration framework that explicitly constrains deformation using mask-consistent visible regions. We introduce a visibility-aware self-supervision that derives a visible-domain 3D supervision signal from intraoperative masks, enabled by differentiable point rasterization and mask-guided back-projection. This formulation improves robustness under severe occlusion while maintaining fully self-supervised learning. Vis2Reg combines a robust geometric rigid initialization module with an implicit neural deformation field for stable alignment. Vis2Reg achieves a Dice score of 92.6\% and a Chamfer Distance of 1.43 mm on real intraoperative datasets, with 111 ms per-frame inference time, demonstrating both accuracy and practical efficiency.

URL PDF HTML 收藏
2607.17598 2026-07-21 cs.AI cs.CL cs.SE 新提交

Is Progressive Disclosure All You Need for Long-Context Agents?

长上下文智能体仅靠渐进式披露就够了吗?

Yifeng He, Yinzhe Zhao, Jicheng Wang, Hao Chen

机构 * University of California, Davis(加利福尼亚大学戴维斯分校) Zhejiang University(浙江大学) The University of Hong Kong(香港大学)

AI总结 研究长文档问答中智能体获取文档路径自行决定读取内容的模式,通过对照研究,在InfiniteBench上对比原始文档导航、Agent Skills包设计与经典混合检索器,发现不同情况下各方法表现不同,渐进式披露在语料库大时作用关键。

详情
AI中文摘要

长文档问答通常要在将整个文档加载到上下文窗口和附加单独的检索器之间做出选择。智能体人工智能提出了一个更广泛的选项,即给智能体文档路径并让它决定如何以及读取什么内容。Agent Skills作为一种将专业知识打包成智能体按需加载的文件夹的标准,提供了一种现成的机制:渐进式披露,它仅暴露查询所需的内容,从简短描述到具体段落。从业者迅速采用这种模式进行书籍长度的理解任务,但支持此类选择的证据一直是传闻。我们对这种模式进行了首次对照研究,在InfiniteBench上,针对三种智能体框架和三个模型家族,将原始文档导航和几种Agent Skills包设计与经典混合检索器进行比较。在单本书籍的情况下,收益取决于框架,当智能体对原始文档导航不佳时收益很大,而当强大的智能体框架已经自行划分和检索时收益接近零。当扩展到跨多本书籍的任务时,原始文档导航失效,而一级渐进式披露退化更慢并领先。第二个更深的路由级别毫无帮助,有时甚至会直接破坏准确性,所以一个级别就足够了。渐进式披露带来的是上下文,而非智能:当强大的智能体可以自行定位正确段落时它是多余的,而一旦语料库变得太大而无法通过阅读导航时它是决定性的。

英文摘要

Long-document question answering usually forces a choice between loading the whole document into the context window and bolting on a separate retriever. Agentic AI suggests a broader option, giving the agent the document path and letting it decide how and what to read. Agent Skills, a standard for packaging expertise into folders an agent loads on demand, supply a ready mechanism: progressive disclosure, which exposes only what a query needs, from a short description down to the specific passages. Practitioners rapidly adopted this pattern for book-length understanding tasks, but the evidence to support such choices has been anecdotal. We run the first controlled study of the pattern, comparing raw-document navigation and several designs of Agent Skills packs against a classical hybrid retriever across three agent harnesses and three model families on InfiniteBench. On a single book, the gain depends on the harness, running large when the agent navigates the raw document poorly but near zero when a strong agent harness already divides and retrieves on its own. When scaling up to tasks that span many books, raw-document navigation collapses while one-level progressive disclosure degrades more slowly and pulls ahead. A second, deeper routing level never helps and sometimes breaks accuracy outright, so one level is enough. Progressive disclosure buys context, not intelligence: it is redundant while a strong agent can locate the right passages itself, and decisive once the corpus grows too large to navigate by reading.

URL PDF HTML 收藏
2607.17593 2026-07-21 cs.CV 新提交

Miles: Metric Learning with Expandable Subspace for Pre-Trained Model-Based Class-Incremental Learning

Miles:基于预训练模型的类增量学习的可扩展子空间度量学习

Kai Jiang, Zisong Lin, Hongyuan Zhang, Xueru Bai, Xuelong Li

机构 * National Key Laboratory of Radar Signal Processing, Xidian University(西安电子科技大学雷达信号处理国家重点实验室) The University of Hong Kong(香港大学) Institute of Artificial Intelligence (TeleAI) of China Telecom(中国电信人工智能研究院)

AI总结 研究基于预训练模型的类增量学习问题,提出Miles方法,通过解耦可学习模块与预训练模型,利用骨干网络中间特征先验信息实现参数空间高效扩展,经实验验证在多种CIL设置中性能领先。

Comments This work has been accepted by IEEE Transactions on Image Processing

详情
AI中文摘要

类增量学习(CIL)旨在从数据流中持续学习新概念而不遗忘。与需从头学习模型的典型CIL方法不同,预训练模型(PTM)通过微调能轻松适应新任务。但现有基于PTM的CIL方法在性能和计算开销间难以权衡。为此提出Miles,利用预训练知识中的先验信息,通过引导优化实现参数空间的高效扩展。具体通过解耦可学习模块与预训练模型,利用骨干网络中间特征的先验信息灵活扩展参数。采用中心损失引导新类别在新任务子空间中向对应原型聚类,引入辅助距离正则项保持跨任务的度量平衡。在六个基准数据集上的大量实验表明,Miles在各种CIL设置中取得了领先性能。

英文摘要

Class Incremental Learning (CIL) aims to learn new concepts consistently from a data stream without forgetting. Unlike typical CIL methods which need to learn a model from scratch, pre-trained model (PTM) can easily adapt to a new task with fine-tuning. However, existing PTM-based CIL methods fail to achieve a trade-off between performance and computational expenditure, i.e., they either adopt the same parameter space so that leading catastrophic forgetting, or expand a new branch for each task but adding more computational cost. To this end, we propose MetrIc Learning with Expandable Subspace (Miles) to harness the prior information within pre-trained knowledge, thereby orchestrating an efficient expansion of the parameter space through guided optimization. Specifically, it decouples the learnable modules with the pre-trained model, exploiting prior information from intermediate features of the backbone network to enable more flexible parameter expansion. Then, a central loss is adopted to guide the new category to cluster towards the corresponding prototype in the new task subspace while incorporating an auxiliary distance regularization term to maintain metric equilibrium across tasks. Extensive experiments on six benchmark datasets demonstrate that Miles achieves state-of-the-art performance in various CIL settings.

URL PDF HTML 收藏
2607.17093 2026-07-21 cs.CV 新提交

Autoregressive B-Rep Shape Generation with Parametric Surfaces

基于参数曲面的自回归 B-Rep 形状生成

Dafei Qin, Rui Xu, Zeyu Shen, Kaichun Qiao, Hongyang Lin, Qixuan Zhang, Huaijin Pi, Lan Xu, Jingyi Yu, Wenping Wang, Taku Komura

机构 * The University of Hong Kong(香港大学) Deemos Technology Co., Ltd.(迪莫斯科技有限公司) Institute of Software, Chinese Academy of Sciences(中国科学院软件研究所) ShanghaiTech University(上海科技大学) Texas A&M University(德克萨斯A&M大学)

AI总结 研究提出 ParaCAD 自回归框架,用于点云条件 B-Rep 生成,直接在原生参数曲面上运行,通过以曲面为中心的令牌化编码面信息,先生成参数曲面再构建 B-Rep,实验证明其在多方面优于基于点的基线。

详情
AI中文摘要

生成式 CAD 建模具有广泛的设计和应用潜力。尽管在 CAD 中的主导表示形式边界表示(B-Rep)生成方面取得了重大进展,但现有方法很大程度上依赖基于均匀采样点或网格的几何表示,牺牲了原生曲面类型和参数,限制了几何保真度和下游可用性。我们提出了 ParaCAD,一种用于点云条件 B-Rep 生成的自回归框架,它直接在原生参数曲面上运行。ParaCAD 引入了以曲面为中心的令牌化,通过其确切曲面类型和连续参数对每个面进行显式编码。模型先生成具有受限 UV 域的参数曲面,然后通过全局相交这些曲面来构建有效的 B-Rep 以恢复边和顶点。大量实验表明,ParaCAD 能生成具有忠实点云对齐的准确 B-Rep,在几何精度、鲁棒性、水密性和下游可用性方面优于基于点的基线。

英文摘要

Generative CAD modeling has broad design and application potential. Despite significant advances in Boundary Representation (B-Rep) generation, the dominant representation in CAD, existing methods largely depend on uniformly sampled point- or grid-based geometry representations, sacrificing native surface types and parameters and thereby limiting geometric fidelity and downstream usability. We present ParaCAD, an autoregressive framework for point-cloud-conditioned B-Rep generation that directly operates on native parametric surfaces. ParaCAD introduces a surface-centric tokenization that explicitly encodes each face by its exact surface type and continuous parameters, preserving the intrinsic semantics of CAD geometry. Our model first generates parametric surfaces with constrained UV domains, and then constructs a valid B-Rep by globally intersecting these surfaces to recover edges and vertices. ParaCAD places point-cloud-conditioned generation at the core of B-Rep synthesis, making it practical for user-guided reconstruction and seamless integration into existing 3D generation pipelines. Extensive experiments demonstrate that ParaCAD produces accurate B-Reps with faithful point-cloud alignment, outperforming point-based baselines in geometric precision, robustness, watertightness and downstream usability.

URL PDF HTML 收藏
2607.16859 2026-07-21 cs.CV 新提交

Dataset Distillation by Influence Matching

通过影响匹配进行数据集蒸馏

Haoru Tan, Wang Wang, Sitong Wu, Xiuzhe Wu, Yangtian Sun, Chirui Chang, Shaofeng Zhang, Xiaojuan Qi

机构 * HKU(香港大学) CUHK(香港中文大学) Stanford(斯坦福大学)

AI总结 从结果角度重审数据集蒸馏,提出影响匹配方法,通过可微估计器量化参数变化,学习合成集使影响与真实数据集匹配,在分类和视觉语言蒸馏任务中表现出色,超越基线。

Journal ref CVPR 2026

详情
AI中文摘要

我们从以结果为中心的角度重新审视数据集蒸馏。影响匹配(Inf-Match)不是对齐过程代理(逐步骤梯度或训练轨迹),而是对齐训练的最终结果:它学习一个紧凑的合成集,其对收敛参数的影响与完整数据集的影响相匹配。具体而言,我们引入了一个完全可微的样本级影响估计器,通过展开优化动态并应用一阶泰勒近似,在线性时间内量化添加或删除数据导致的参数变化。然后通过最小化合成集与真实数据集影响之间的不匹配来学习合成集,实现结果对齐而非启发式过程模仿。Inf-Match在标准分类基准上实现了最佳准确率,在图像/文本检索任务上也优于强过程匹配基线。代码将通过此https URL发布。

英文摘要

We revisit dataset distillation from an outcome-centric perspective. Rather than aligning process surrogates (per-step gradients or training trajectories), Influence Matching (Inf-Match) aligns the final outcome of training: it learns a compact synthetic set whose effect on the converged parameters matches that of the full dataset. Concretely, we introduce a fully differentiable, sample-level influence estimator that quantifies parameter shifts from adding or removing data, without time-consuming inverse-Hessian products or convexity assumptions. The estimator runs in linear time by unrolling the optimization dynamics and applying a first-order Taylor approximation. We then learn the synthetic set by minimizing the mismatch between its influence and that of the real dataset, yielding outcome alignment rather than heuristic process imitation. Inf-Match delivers the best accuracy across standard classification benchmarks. For instance, on Tiny-ImageNet (IPC=10), Inf-Match attains 31.5\%, a +4.7\% improvement over NCFM. Beyond classification, Inf-Match scales to vision-language distillation on Flickr30K, outperforming strong process-matching baselines. For instance, with 200 to 1000 synthetic samples, our method achieved a leading impressive average on image/text retrieval tasks, higher than NCFM by 2.5\%. The code will be released via https://github.com/hrtan/infmatch.

URL PDF HTML 收藏
2607.16851 2026-07-21 cs.AI 新提交

AgentBrew: Lifelong Knowledge Brewing from Strong Teachers to Weak LLM Agents

AgentBrew:从强大教师到弱小语言模型智能体的终身知识酿造

Yangqin Jiang, Chao Huang

机构 * The University of Hong Kong(香港大学)

AI总结 研究语言模型智能体知识酿造问题,提出AgentBrew方法,含失败触发教师和学生感知合成两个组件,无需训练,能将教师交互经验提炼到学生外部记忆,经实验验证可产生强大且可部署的智能体。

详情
AI中文摘要

部署语言模型智能体通常在测试时需要一个精简的学生模型,即便训练时有更强的教师模型可用。我们研究知识酿造,即将教师的交互经验提炼到学生的持久外部记忆中。关键在于,这无需权重更新、专家示范、真实标签或测试时访问教师模型。此设置带来两个挑战:环境仅提供稀疏的二元反馈,且教师编写的笔记必须专门适配能力弱得多的学生以可具体执行。为克服这些障碍,我们提出AgentBrew,它由两个耦合组件组成。一是失败触发的教师——拉尔夫循环,通过将学生失败转化为经环境验证的笔记来减轻稀疏反馈。二是学生感知合成,将教师知识校准到弱执行器的操作粒度,产生特定于模型的可操作指导。在编码、数学和工具使用任务上的广泛评估和全面消融实验表明,这种不对称的、无需训练的酿造范式能产生能力强大且可部署的语言模型智能体。

英文摘要

Deploying LLM agents typically requires a compact test-time student, even if a stronger teacher is available during training. We study knowledge brewing: distilling a teacher's interactive experience into a persistent external memory for the student. Crucially, this requires no weight updates, expert demonstrations, ground-truth labels, or test-time teacher access. This setting poses two challenges: environments provide only sparse, binary feedback, and teacher-authored notes must be inherently tailored to be concretely executable by a substantially weaker student. To address these hurdles, we propose AgentBrew, comprising two coupled components. First, a failure-triggered teacher--Ralph Loop mitigates sparse feedback by transforming student failures into environment-validated notes. Second, student-aware synthesis calibrates teacher knowledge to the weak executor's operational granularity, yielding model-specific, actionable guidance. Extensive evaluations and comprehensive ablations across coding, math, and tool-use tasks demonstrate that this asymmetric, training-free brewing paradigm produces highly capable yet deployable LLM agents.

URL PDF HTML 收藏
2602.02402 2026-07-21 cs.RO cs.AI cs.CV physics.app-ph 版本更新

SoMA: A Real-to-Sim Neural Simulator for Robotic Soft-body Manipulation

SoMA:一种用于机器人软体操作的实-仿真神经模拟器

Mu Huang, Hui Wang, Kerui Ren, Linning Xu, Yunsong Zhou, Mulin Yu, Bo Dai, Jiangmiao Pang

机构 * Fudan University, China(复旦大学) Shanghai Artificial Intelligence Laboratory, China(上海人工智能实验室) Shanghai Jiao Tong University, China(上海交通大学) The Chinese University of Hong Kong, China(香港中文大学) The University of Hong Kong, China(香港大学)

AI总结 SoMA是一种用于机器人软体操作的实-仿真神经模拟器,通过统一的潜在神经空间实现可控、稳定的长周期操作和泛化能力。

Comments Project page: https://city-super.github.io/SoMA/

详情
AI中文摘要

在丰富的相互作用下模拟可变形物体仍然是实-仿真机器人操作中的基本挑战,其动力学由环境效应和机器人动作共同驱动。现有模拟器依赖于预定义的物理或数据驱动的动力学,而没有机器人条件控制,限制了精度、稳定性和泛化能力。本文提出了SoMA,一种3D高斯点模拟器,用于软体操作。SoMA在统一的潜在神经空间中耦合可变形动力学、环境力和机器人关节动作,实现端到端的实-仿真模拟。通过学习的高斯点建模相互作用,实现了可控、稳定的长周期操作和泛化能力,超越观察轨迹而无需预定义的物理模型。SoMA通过提高20%的重演精度和泛化能力,在现实世界机器人操作中实现了复杂任务如长周期布料折叠的稳定模拟。

英文摘要

Simulating deformable objects under rich interactions remains a fundamental challenge for real-to-sim robot manipulation, with dynamics jointly driven by environmental effects and robot actions. Existing simulators rely on predefined physics or data-driven dynamics without robot-conditioned control, limiting accuracy, stability, and generalization. This paper presents SoMA, a 3D Gaussian Splat simulator for soft-body manipulation. SoMA couples deformable dynamics, environmental forces, and robot joint actions in a unified latent neural space for end-to-end real-to-sim simulation. Modeling interactions over learned Gaussian splats enables controllable, stable long-horizon manipulation and generalization beyond observed trajectories without predefined physical models. SoMA improves resimulation accuracy and generalization on real-world robot manipulation by 20%, enabling stable simulation of complex tasks such as long-horizon cloth folding.

URL PDF HTML 收藏
2601.17108 2026-07-21 cs.LG cs.AI eess.SP 版本更新

Hybrid Mamba-Attention Neural Architecture for Channel Estimation

MambaNet:结合注意力机制的Mamba辅助信道估计神经网络

Dianxin Luan, Chengsi Liang, Jie Huang, Zheng Lin, Kaitao Meng, John Thompson, Cheng-Xiang Wang

机构 * Institute for Imaging, Data and Communications, School of Engineering, University of Edinburgh(影像、数据与通信研究所,工程学院,爱丁堡大学) James Watt School of Engineering, University of Glasgow(詹姆斯·瓦特工程学院,格拉斯哥大学) National Mobile Communications Research Laboratory, Southeast University(国家移动通信研究中心,东南大学) Purple Mountain Laboratories, Nanjing(紫金山实验室,南京) Department of Electrical and Electronic Engineering, The University of Hong Kong(电气与电子工程系,香港大学) Department of Electrical and Electronic Engineering, University of Manchester(电气与电子工程系,曼彻斯特大学)

AI总结 MambaNet通过结合自注意力机制和定制化Mamba架构,实现低复杂度的OFDM信道估计,尤其在大规模子载波配置中表现优异。

详情
AI中文摘要

本文提出了一种结合自注意力机制的Mamba辅助神经网络框架,以实现低复杂度的正交频分复用(OFDM)波形信道估计,特别是在子载波数量较大的配置中。通过集成定制化的Mamba架构,所提出的框架能够高效处理大规模子载波信道估计,并有效捕捉这些子载波之间的长距离依赖关系。与传统Mamba结构不同,本文实现了双向选择性扫描以提高信道估计性能,因为不同子载波的信道增益是非因果的。此外,所提出的框架在空间复杂度上比基于Transformer的神经网络要低。在3GPP TS 36.101信道上的仿真结果表明,与其它基线神经网络解决方案相比,所提出的方法在减少可调参数数量的同时实现了改进的信道估计性能。

英文摘要

This paper proposes a hybrid Mamba-attention neural architecture to achieve improved channel estimation for orthogonal frequency-division multiplexing (OFDM) waveforms, particularly for configurations with a large number of subcarriers. By integrating a customized Mamba module, the proposed framework handles large-scale subcarrier channel estimation efficiently while capturing long-distance dependencies among these subcarriers effectively. Unlike the conventional Mamba structure, this paper implements a bidirectional selective scan to enable information propagation from both directions, because channel gains at different subcarriers are inherently non-causal. In addition, by integrating Mamba to reduce the reliance on quadratic-complexity self-attention, the proposed solution achieves lower space complexity than fully transformer architectures. Simulation results based on the 3GPP TS 36.101 channel demonstrate that compared to other baseline neural networks, the proposed method achieves superior channel estimation performance with fewer tunable parameters and exhibits good generalization across previously unseen channels.

URL PDF HTML 收藏
2511.14592 2026-07-21 cs.RO cs.AI 版本更新

DSBench: A Comprehensive Benchmark for Evaluating External and In-Cabin Risks

DSBench:用于评估外部和车内风险的综合基准测试

Xianhui Meng, Yuchen Zhang, Zhijian Huang, Zheng Lu, Ziling Ji, Yandan Lin, Yaoyao Yin, Hongyuan Zhang, Wei Zhou, Guangfeng Jiang, Li Zhang, Long Chen, Hangjun Ye, Jun Liu, Xiaoshuai Hao

机构 * University of Science and Technology of China(中国科学技术大学) Georgia Institute of Technology(佐治亚理工学院) Xiaomi EV(小米电动车) Fudan University(复旦大学) Xidian University(西安电子科技大学) South China University of Technology(华南理工大学) The University of Hong Kong(香港大学)

AI总结 针对视觉语言模型在安全关键场景适用性未充分探索的问题,引入DSBench综合基准测试,涵盖外部与车内风险,分多类别。评估发现模型在复杂情况下降,构建数据集微调可提升性能,推动自动驾驶技术发展,相关资源将公开。

详情
AI中文摘要

视觉语言模型(VLMs)在自动驾驶方面前景广阔,但在安全关键场景中的适用性尚未充分探索,引发安全担忧。由于缺乏同时评估外部环境风险和车内驾驶行为安全的综合基准测试,我们引入了DSBench,首个用于统一评估VLM对各种安全风险认知的综合驾驶安全基准测试。它涵盖外部环境风险和车内驾驶行为安全两大类别,分为10个关键类别和28个子类别。对多种主流开源和闭源VLM的广泛评估显示,在复杂安全关键情况下性能显著下降。为此,我们构建了一个包含98K实例的大型数据集,表明在此数据集上微调可显著提高现有VLM的安全性能,为推进自动驾驶技术铺平道路。基准测试工具包、代码和模型检查点将公开可用。

英文摘要

Vision-Language Models (VLMs) show great promise for autonomous driving, but their suitability for safety-critical scenarios is largely unexplored, raising safety concerns. This issue arises from the lack of comprehensive benchmarks that assess both external environmental risks and in-cabin driving behavior safety simultaneously. To bridge this critical gap, we introduce DSBench, the first comprehensive Driving Safety Benchmark designed to assess a VLM's awareness of various safety risks in a unified manner. DSBench encompasses two major categories: external environmental risks and in-cabin driving behavior safety, divided into 10 key categories and a total of 28 sub-categories. This comprehensive evaluation covers a wide range of scenarios, ensuring a thorough assessment of VLMs' performance in safety-critical contexts. Extensive evaluations across various mainstream open-source and closed-source VLMs reveal significant performance degradation under complex safety-critical situations, highlighting urgent safety concerns. To address this, we constructed a large dataset of 98K instances focused on in-cabin and external safety scenarios, showing that fine-tuning on this dataset significantly enhances the safety performance of existing VLMs and paves the way for advancing autonomous driving technology. The benchmark toolkit, code, and model checkpoints will be publicly accessible.

URL PDF HTML 收藏
2510.26800 2026-07-21 cs.CV cs.GR cs.LG 版本更新

OmniX: From Unified Panoramic Generation and Perception to Graphics-Ready 3D Scenes

OmniX:从统一全景生成与感知到适用于图形的3D场景

Yukun Huang, Jiwen Yu, Yanning Zhou, Jianan Wang, Xintao Wang, Pengfei Wan, Xihui Liu

机构 * University of Hong Kong(香港大学) Kuaishou Technology(快手科技) Tencent(腾讯)

AI总结 研究基于全景的2D提升技术,提出OmniX框架,利用跨模态适配器结构和循环空间算子,将预训练2D流匹配先验用于多模态联合建模,构建数据集,实现适用于图形的3D场景生成,为虚拟世界创建开辟新可能。

Comments ECCV 2026; Project page: https://yukun-huang.github.io/OmniX/

详情
AI中文摘要

自动3D场景构建有程序生成和2D提升两种流行方式。基于全景的2D提升利用强大的2D生成先验来生成3D环境。本文推进该技术以生成适用于基于物理渲染、重光照和模拟的3D场景。关键在于将2D生成模型用于全景的几何、纹理和PBR材质感知。提出OmniX框架,基于跨模态适配器结构和循环空间算子,有效利用预训练2D流匹配先验进行多模态联合建模。构建大规模合成全景数据集,实验证明其有效性和通用性。

英文摘要

There are two prevalent ways for automatic 3D scene construction: procedural generation and 2D lifting. Among these, panorama-based 2D lifting has emerged as a promising technique, leveraging powerful 2D generative priors to produce immersive, realistic, and diverse 3D environments. In this work, we advance this technique to generate graphics-ready 3D scenes suitable for physically based rendering (PBR), relighting, and simulation. Our key insight is to repurpose 2D generative models for panorama perception of geometry, textures, and PBR materials. Unlike existing 2D lifting approaches that emphasize appearance generation and neglect the perception of intrinsic properties, we present OmniX, a versatile and unified framework for panorama generation, perception, and completion. Built upon cross-modal adapter structure and cyclic spatial operators, OmniX effectively repurposes pre-trained 2D flow matching priors for joint modeling of multimodal, seamless equirectangular representations. Furthermore, we construct a large-scale synthetic panorama dataset comprising high-quality multimodal panoramas from diverse indoor and outdoor scenes. Extensive experiments demonstrate the effectiveness and generality of OmniX as a unified framework for panorama generation and perception across geometry, lighting, and semantics, enabling graphics-ready 3D scene generation and opening new possibilities for immersive and physically realistic virtual world creation.

URL PDF HTML 收藏
2509.14335 2026-07-21 cs.CR cs.AI cs.SE 版本更新

Is "Knowing It's Malicious Enough?" Evaluating LLMs for Fine-Grained Malware Behavior Auditing

“知道它足够恶意吗?”评估用于细粒度恶意软件行为审计的大语言模型

Xinran Zheng, Xingzhi Qian, Yiling He, Shuo Yang, Lorenzo Cavallaro

机构 * University College London(伦敦大学学院) The University of Hong Kong(香港大学)

AI总结 研究针对大语言模型用于恶意软件审计可靠性不明问题,引入MalEval诊断框架,通过配对代码库与审计报告提供基本事实,经中间表示压缩代码库,映射输出到证据链,分解审计为四阶段任务,评估发现大语言模型在审计中有诸多问题,为后续可靠工作流程研究提供参考。

Comments Paper has beed accepted by ISSTA 2026

详情
AI中文摘要

自动化恶意软件分类器具有强大的检测性能,但审计不仅要标记样本,分析师还必须解释恶意行为并以代码证据证明。传统基于签名的方法和基于学习的可解释人工智能往往无法以人类可解释的形式提供此类支持。大语言模型看似有前景,但其在恶意软件审计中的可靠性仍不明朗。评估面临三个挑战:缺乏人工编写的行为基本事实、现实世界代码库超出当前上下文限制、缺乏可靠机制验证生成的声明是否基于代码证据。我们引入MalEval,一个用于衡量大语言模型在恶意软件审计中能力边界的诊断框架。它将现实世界应用代码库与专家编写的审计报告配对以提供细粒度行为级基本事实,通过保留调用关系的上下文驱动中间表示压缩大型代码库,将专家报告和模型输出映射到结构化证据链。MalEval将审计分解为四个阶段任务,评估发现大语言模型依赖表面线索而非可验证证据,难以将分散事实组成连贯攻击链,对上下文表述敏感。这些发现将注意力从孤立输出转移到用于恶意软件审计的可靠大语言模型和智能工作流程。MalEval可在指定网址公开获取。

英文摘要

Automated malware classifiers achieve strong detection performance, but auditing requires more than flagging a sample: analysts must explain malicious behaviors and justify them with code evidence. Traditional signature-based methods and learning-based XAI often fail to provide such support in a human-interpretable form. Large Language Models (LLMs) appear promising, yet their reliability for malware auditing remains unclear. Evaluation faces three challenges: (1) the lack of human-written behavioral ground truth; (2) real-world codebases that exceed current context limits; and (3) the lack of reliable mechanisms to verify whether generated claims are grounded in code evidence. These obstacles make benchmarking difficult and leave model capabilities and failure modes opaque. We introduce MalEval, a diagnostic framework for measuring the capability boundaries of LLMs in malware auditing. MalEval pairs real-world application codebases with expert-written audit reports to provide fine-grained behavior-level ground truth. It compresses large codebases into behavior-relevant program contexts through a context-driven intermediate representation that preserves call relations. Expert reports and model outputs are mapped, via constrained reasoning, into structured evidence chains linking code-level facts to high-level behaviors in a shared space. MalEval decomposes auditing into four stage-wise tasks, enabling each intermediate judgment to be verified under limited context windows. We evaluate seven LLMs and find that they rely on surface cues rather than verifiable evidence, struggle to compose dispersed facts into coherent attack chains, and are highly sensitive to context formulation. These findings shift attention from isolated outputs to reliable LLM and agentic workflows for malware auditing. MalEval is publicly available at https://github.com/ZhengXR930/MalEval.git

URL PDF HTML 收藏
2607.15772 2026-07-20 cs.CV 新提交

SlotMem: Character-Addressable Internal Memory for Narrative Long Video Generation

SlotMem:用于叙事长视频生成的字符可寻址内部存储器

Yilai Liu, Xin Zhang, Shiyuan Zhang, Hongyang Du

机构 * The University of Hong Kong(香港大学) Tsinghua University(清华大学)

AI总结 研究针对叙事长视频生成中保持角色身份的挑战,提出SlotMem框架,通过字符语义探测器定位视觉令牌,记忆编码器压缩记忆,记忆写入器更新记忆,逐角色交叉注意力检索记忆,提升了远程角色一致性与视频质量。

详情
AI中文摘要

在叙事长视频生成中,跨场景转换和长时间间隔保持重复角色身份是一项核心挑战。针对全局一致性的方法在检索记忆时使用的线索与角色身份保存不一致,而最近以角色为中心的变体仍依赖于粗糙的帧级键值记忆,将身份与偶然视觉因素纠缠在一起,且在有限内存容量下缺乏连续更新机制。为解决这些限制,我们提出了SlotMem,一种用于多角色叙事长视频生成的字符可寻址内部存储器框架。具体而言,SlotMem使用字符语义探测器从交叉注意力响应中定位与角色相关的视觉令牌,并使用记忆编码器将DiT令牌压缩为紧凑的按角色插槽记忆。随着生成过程的进行,记忆写入器用新观察结果保守地更新每个角色的记忆,而逐角色交叉注意力检索角色记忆并仅将其注入同一角色的局部令牌中。在多个叙事长视频生成基准上的实验表明,SlotMem在保持可比视频质量的同时,提高了现有基线的远程角色一致性。我们的代码可在该https网址获取。

英文摘要

Maintaining recurring character identities across scene transitions and long temporal gaps is a central challenge in narrative long video generation. Methods targeting global consistency often retrieve memory using cues that are not aligned with character identity preservation, while recent character-centric variants still rely on coarse frame-level kv memory that entangles identity with incidental visual factors and lacks a continuous update mechanism under limited memory capacity. To address these limitations, we propose \textbf{SlotMem}, a character-addressable internal memory framework for multi-character narrative long video generation. Specifically, SlotMem uses a Character-Semantic Probe to localize character-relevant visual tokens from cross-attention responses, and a Memory Encoder to compress DiT tokens into compact role-wise slot memory. As generation proceeds, a Memory Writer conservatively updates each character's memory with new observations, while Character-Wise Cross-Attention retrieves the role memory and injects it only into localized tokens of the same character. Experiments on multiple narrative long video generation benchmarks show that SlotMem improves long-range character consistency over existing baselines, while maintaining comparable video quality. Our code is available at https://github.com/YilaiLiu-HKU/SlotMem.

URL PDF HTML 收藏
2605.20807 2026-07-20 cs.CV 版本更新

Decomposing Subject-Driven Image Generation via Intermediate Structural Prediction

通过中间结构预测分解主体驱动的图像生成

Hanzhong Guo, Yizhou Yu

机构 * School of Computing and Data Science, The University of Hong Kong(计算与数据科学学院,香港大学)

AI总结 该研究提出了一种两阶段框架,通过先预测Canny图再基于源外观和预测结构生成最终图像,以解决主体驱动文本到图像生成中高频率身份细节如logo、图案和文本的保留问题,并通过自动管道构建了10万对文本感知数据集,实验结果表明中间结构预测能有效提升高保真主体驱动生成的性能。

详情
AI中文摘要

主体驱动的文本到图像生成仍然难以保留诸如logo、图案和文本等高频率身份细节。现有方法通常直接在RGB空间中操作,这在大规模编辑下常导致细节退化。我们提出了一种两阶段框架,通过首先预测Canny图,然后基于源外观和预测的结构生成最终图像。为提高文本处理能力,我们进一步引入了一个全自动流程,构建了一个包含10万对文本感知数据集,并确保跨视角文本一致性。实验包括基于GPT-4.1的评估和知识蒸馏研究,结果表明在选定基线之上有明显提升,并表明中间结构预测是实现高保真主体驱动生成的有效途径。我们的数据集和代码将向公众开放。

英文摘要

Subject-driven text-to-image generation still struggles to preserve high-frequency identity details such as logos, patterns, and text. Existing methods typically operate directly in RGB space, which often leads to detail degradation under substantial edits. We propose a two-stage framework that decouples structure from appearance by first predicting a Canny map and then rendering the final image conditioned on both the source appearance and the predicted structure. To improve text handling, we further introduce a fully automatic pipeline that constructs a 100k-pair text-aware dataset with cross-view textual consistency. Experiments, including GPT-4.1-based evaluation and a knowledge distillation study, show clear gains over selected baselines and suggest that intermediate structural prediction is an effective route for high-fidelity subject-driven generation. Our dataset and code will be made publicly available.

URL PDF HTML 收藏
2607.15211 2026-07-17 cs.CV 新提交

MAGiSt3R: Multi-Agent Feed-forward 3D Reconstruction from Monocular RGB Videos

MAGiSt3R:基于单目RGB视频的多智能体前馈3D重建

Ziren Gong, Xiaohan Li, Fabio Tosi, Ninghui Xu, Stefano Mattoccia, Jianfei Cai, Matteo Poggi

机构 * University of Bologna(博洛尼亚大学) The University of Hong Kong(香港大学) Southeast University(东南大学) Monash University(莫纳什大学)

AI总结 研究基于单目RGB视频的多智能体3D重建问题,核心方法是用3R家族前馈模型和MAGMA合并模型,并进行姿态图优化,主要贡献是在合成和真实数据集上验证该框架相比现有方法有更高重建和相机跟踪精度。

详情
AI中文摘要

本文提出了MAGiSt3R,一个多智能体3D重建框架,可对单目RGB视频进行重建和相机跟踪,帧率近10 FPS。它依赖3R家族的前馈模型处理RGB视频并回归局部点图,以及合并模型MAGMA在智能体内外合并局部图以获最终全局点图。此外,还进行姿态图优化以减轻相机漂移。在合成和真实数据集上评估,结果显示其相比现有方法有更高重建和跟踪精度。

英文摘要

This paper presents MAGiSt3R, a multi-agent 3D reconstruction framework performing reconstruction and camera tracking for monocular RGB videos at almost 10 FPS. MAGiSt3R relies on a feed-forward model from the 3R family to process RGB videos and regress local point maps, and on a merging model, MAGMA, that combines local maps at both intra-agent and inter-agent levels to obtain the final global point map. Furthermore, MAGiSt3R performs pose graph optimization to mitigate cumulative camera drift occurring along the feed-forward pipeline. We evaluate MAGiSt3R on both synthetic and real-world datasets, demonstrating its superior reconstruction and camera tracking accuracy compared to state-of-the-art approaches.

URL PDF HTML 收藏
2607.15054 2026-07-17 cs.CV 新提交

Beyond Single Expert: Harmonizing Diverse Visual Priors in MLLMs for Spatial Understanding

超越单一专家:在多模态大语言模型中协调多样视觉先验以实现空间理解

Xiao Lin, Xiaohu Huang, Kai Han

机构 * The University of Hong Kong(香港大学)

AI总结 研究旨在提升多模态大语言模型的空间理解能力,提出ViPS框架,通过高效先验代理和动态先验融合机制,整合不同模型的视觉先验,经实验验证该框架能协调多样先验,在多基准测试中取得新的最优性能。

详情
AI中文摘要

多模态大语言模型(MLLMs)在空间理解方面展现出巨大潜力。现有工作通常整合从预训练基础模型提取的先验知识来增强MLLMs的空间意识。本文首先揭示,将不同基础模型集成到MLLMs时,不同模型提供互补空间先验,有益于不同任务。基于此,提出了ViPS,一个新颖的多模型先验框架,旨在充分释放将来自不同模型的多个视觉先验纳入MLLMs进行空间理解的潜力。具体而言,ViPS引入高效先验代理以最小推理开销生成多个基础先验,以及动态先验融合机制来实现先验代理的和谐且上下文感知的先验融合与注入。大量实验表明,ViPS成功协调了多样视觉先验,在多个复杂空间推理和3D空间理解基准上建立了新的最优性能。

英文摘要

Multimodal Large Language Models (MLLMs) have demonstrated substantial promise in spatial understanding. Existing works typically incorporate prior knowledge extracted from a pre-trained foundation model to further enhance the spatial awareness of MLLMs. In this paper, we first reveal that when integrating diverse foundation models into MLLMs, different models provide complementary spatial priors that benefit different tasks. Motivated by this, we propose $\textbf{ViPS}$, a novel multi-model prior framework designed to fully unleash the potential of incorporating multiple $\textbf{Vi}$sual $\textbf{P}$riors from diverse models into MLLMs for $\textbf{S}$patial understanding. Specifically, ViPS introduces an Efficient Prior Proxy to generate multiple foundational priors with minimal inference overhead, and a Dynamic Prior Fusion mechanism to achieve harmonious and context-aware prior fusion and injection from the prior proxies. Extensive experiments demonstrate that ViPS successfully harmonizes diverse visual priors, establishing new state-of-the-art performance across multiple complex spatial reasoning and 3D spatial understanding benchmarks. Project page: https://visual-ai.github.io/vips

URL PDF HTML 收藏
2607.15004 2026-07-17 cs.RO 新提交

CosFly-VLA: A Spatially Aware Vision-Language-Action Model for UAV Tracking

CosFly-VLA:一种用于无人机跟踪的空间感知视觉-语言-动作模型

Ruilong Ren, Songsheng Cheng, Yunpeng Zhou, Hanxuan Chen, Xiangyue Wang, Tianle Zeng, Shuai Yuan, Binbo Li, Hanzhong Guo, Ji Pei, Da Zhang, Kangli Wang

机构 * Autel Robotics(大疆创新科技有限公司) Northeast Normal University(东北师范大学) Southern University of Science and Technology(南方科技大学) Peking University(北京大学) University of Hong Kong(香港大学)

AI总结 针对复杂城市环境中无人机动态目标跟踪问题,提出CosFly-VLA模型,通过结构化预测接口联合定位目标、估计可见性并生成飞行动作。经多阶段训练,该模型在开环误差和闭环成功率上有显著提升,实现从可见帧模仿到空间基础动作闭环控制的进展。

详情
AI中文摘要

动态目标跟踪对复杂城市环境中的无人机至关重要,现有视觉-语言-动作(VLA)策略在视线受阻时性能会下降。为此提出CosFly-VLA模型,它通过结构化预测接口联合定位目标、估计其可见性并生成连续飞行动作。训练时,在500k混合池上进行空间基础持续预训练,通过三阶段基于课程的监督微调、思维链训练及闭环强化学习。实验表明,相对于OpenVLA,CosFly-VLA-0.8B在可见测试和不可见测试中分别降低了开环平均位移误差,闭环优化提高了成功率。这些结果展示了从可见帧模仿到空间基础动作闭环控制的进展。

英文摘要

Dynamic target tracking is essential for Unmanned Aerial Vehicles (UAVs) operating in complex urban environments, where both the target and the camera viewpoint change continuously. Existing Vision-Language-Action (VLA) policies can track visible targets effectively, but their performance often degrades when buildings, vegetation, or roadside objects block the line of sight. During sustained occlusion, a policy may lose the target state, execute actions toward an incorrect region, and amplify this error through subsequent observations until re-acquisition becomes impossible. To this end, we present CosFly-VLA, a spatially aware VLA model that jointly grounds the target, estimates its visibility, and generates continuous flight actions through a structured prediction interface. To train this policy, we use a large-scale recipe over diverse data sources. Spatially Grounded Continued Pretraining (CPT) on a 500k mixed pool injects UAV-view depth, distance, and 3-D spatial reasoning. A three-stage Curriculum-based Supervised Fine-Tuning (SFT) process then specializes the tracker through multi-head warm-up followed by two-stage curriculum learning over natural and hard / long-occlusion data. Chain-of-Thought (CoT) training subsequently teaches recovery-oriented reasoning traces before structured answers. Finally, a closed-loop Reinforcement Learning (RL) stage optimizes tracking behavior with a multi-component reward covering stand-off tracking, grounding quality, collision avoidance, and task success. Relative to OpenVLA, CosFly-VLA-0.8B reduces open-loop Average Displacement Error (ADE) by 34.1% on seen-test and 35.3% on unseen-test. Closed-loop optimization improves Success Rate (SR) by 29.8% and 2.5%, respectively. These results demonstrate progress from visible-frame imitation toward spatially grounded action-closed-loop control, evaluated under a shared oracle state history.

URL PDF HTML 收藏
2607.14681 2026-07-17 cs.CV 新提交

ReBind: Multi-Reference Video Editing via Structured Instructions with Explicit Reference Relationships

ReBind:通过具有显式参考关系的结构化指令进行多参考视频编辑

Xinyu Liu, Shihao Li, Weihong Lin, Xinlong Chen, Yang Shi, Yujin Han, Yiyang Cai, Yanghao Wang, Ruibin Yuan, Yuanxing Zhang, Pengfei Wan, Wenhan Luo, Yike Guo

机构 * HKUST(香港科技大学) Kling Team(克林团队) NJU(南京大学) UCAS(中国科学院大学) PKU(北京大学) HKU(香港大学)

AI总结 研究针对多参考图像条件视频编辑中现有方法难以协调多视觉源信息的问题,提出ReBind框架,通过带嵌入参考令牌的语义指令及两阶段渐进方案学习建立显式绑定,实现轻量级适配,在指令质量和性能上表现出色。

Comments Project Page: https://rebind-mrv2v.github.io/

详情
AI中文摘要

近期基于扩散的视频生成模型在多参考图像条件视频编辑方面取得显著进展,但现有方法难以准确协调来自多个视觉源的信息。现有编辑指令缺乏显式参考关系,多数多模态大语言模型无法可靠生成。为此提出ReBind框架,引入带嵌入参考令牌的语义指令作为中间表示。开发了ReBind-Instruct学习建立显式绑定,还开发了ReBind-Edit实现轻量级适配。实验表明ReBind在指令质量上大幅超越通用多模态大语言模型,在开源方法中取得最优性能。

英文摘要

Recent diffusion-based video generation models have made significant progress in multi-reference image-conditioned video editing. However, existing methods still struggle to coordinate information from multiple visual sources accurately. We identify a critical deficiency in existing approaches. Existing editing instructions lack explicit reference relationships, and most multimodal large language models (MLLMs) cannot generate them reliably. To address this problem, we propose ReBind, a systematic framework that introduces semantic instructions with embedded reference tokens as the intermediate representation for multi-reference image-conditioned video editing. Our key insight is embedding reference tokens at semantic positions to eliminate ambiguity and establish precise bindings between visual attributes and their sources. We develop ReBind-Instruct, a specialized MLLM that learns to establish explicit bindings between visual attributes and their reference sources through a two-stage progressive scheme for precise reference relationships. We further develop ReBind-Edit, which enables lightweight adaptation of text-to-video models to coordinate multiple references by binding visual attributes to their designated sources. Extensive experiments demonstrate that ReBind substantially outperforms general-purpose MLLMs in instruction quality and achieves state-of-the-art performance among open-source methods on reference image conditioned video editing. Our project webpage: https://rebind-mrv2v.github.io/.

URL PDF HTML 收藏
2607.11346 2026-07-17 cs.AI cs.PL 版本更新

Compile, Then Page: Executable SOP Programs and a Capability-Gated Runtime for Procedural LLM Agents

编译,然后分页:用于过程性语言模型代理的可执行标准操作程序和能力门控运行时

Chenglin Yu, Li Yin, Ying Yu, Qingxin Fan, RunyangRay Zhong, Hongxia Yang, Ming Li

机构 * The Hong Kong Polytechnic University(香港理工大学) The University of Hong Kong(香港大学) Zhejiang Normal University(浙江师范大学) Research Institute for Generative AI, The Hong Kong Polytechnic University(香港理工大学生成式人工智能研究所)

AI总结 研究针对企业代理遵循SOP的问题,将SOP约束编译成可执行伪代码,用程序引导堆栈机运行,通过实验表明编译文本有益,运行时指导受能力门控,给出编译后经模型级纪律检查再启用活动框架分页的实际指导。

Comments 9 pages, 3 figures, 5 tables

详情
AI中文摘要

企业代理必须遵循长期、有条件、安全关键的标准操作程序(SOP)。我们将机器可读的SOP约束编译成可执行伪代码,并使用程序引导(PG)堆栈机运行它们,在语言模型进行语义执行时对活动框架进行分页。一项针对六个模型的三臂SOPBench研究将表示与运行时分离:编译后的文本不会显著损害性能,在官方散文表现不佳的情况下最多可提高16.0分。运行时指导由能力门控。两个强大模型独立显示出正的七域PG对比(58:19和75:31不一致对),而弱模型则受到损害。全程序游标消融(先活动框架,保留完整程序)恢复了强大模型拒绝增益的大部分;选择性可见性增加了较小的改进。配对探测和审计测量将这种差异追溯到自发状态纪律而非重建能力。在银行方面,三个主要分支从70.4上升到86.4再到92.8,拒绝正确性达到100%。实际指导:先编译;仅在模型级纪律检查后启用活动框架分页。

英文摘要

Enterprise agents must follow long-horizon, conditional, safety-critical standard operating procedures (SOPs). We compile machine-readable SOP constraints into executable pseudo-code and run them with a program-guided (PG) stack machine that pages the active frame while an LLM performs semantic execution. A three-arm SOPBench study across six models separates representation from runtime: compiled text never significantly hurts and gains up to 16.0 points where official prose underperforms. Runtime guidance is capability-gated. Two strong models independently show positive seven-domain PG contrasts (58:19 and 75:31 discordant pairs), whereas weak models are harmed. A full-program cursor ablation (active frame first, complete program retained) recovers much of the strong-model refusal gain; selective visibility adds a smaller improvement. Paired probe and audit measurements track this divide to spontaneous state discipline rather than reconstruction ability. On Bank the three primary arms rise from 70.4 to 86.4 to 92.8, with 100% refusal correctness. Practical guidance: compile first; enable active-frame paging only after a model-level discipline check.

URL PDF HTML 收藏
2507.19474 2026-07-17 cs.CV 版本更新

DINO-SLAM: DINO-informed RGB-D SLAM for Neural Implicit and Explicit Representations

DINO-SLAM:用于神经隐式和显式表示的基于DINO的RGB-D SLAM

Ziren Gong, Xiaohan Li, Fabio Tosi, Youmin Zhang, Stefano Mattoccia, Jun Wu, Matteo Poggi

机构 * University of Bologna, Italy(博洛尼亚大学) Faculty of Dentistry, The University of Hong Kong, China(香港大学牙科学院) Rawmantic AI, China(Rawmantic AI) Fudan University, Shanghai, China(复旦大学)

AI总结 研究提出DINO-SLAM,通过DINO增强SLAM系统隐式与显式表示。利用场景几何编码器将DINO特征变为几何感知特征,在此基础上为NeRF和GS SLAM系统提出两种范式,相比现有方法在多个数据集上性能更优。

详情
AI中文摘要

本文提出了DINO-SLAM,一种基于DINO的设计策略,通过DINO实现的更全面语义理解来增强SLAM系统中的隐式(神经辐射场——NeRF)和显式表示(高斯拼接——GS)。然而,仅DINO缺乏适当的3D几何理解,改进有限。因此,我们依靠场景几何编码器(SGE)将DINO特征丰富为几何感知的DINO特征(geoDINO),以更好理解普通DINO特征未能捕捉的几何关系。在此基础上,我们为集成geoDINO特征的NeRF和GS SLAM系统提出了两种基本范式。与现有方法相比,我们基于DINO的管道在Replica、ScanNet和TUM数据集上实现了卓越性能。

英文摘要

This paper presents DINO-SLAM, a DINO-informed design strategy to enhance implicit (Neural Radiance Field -- NeRF) and explicit representations (Gaussian Splatting -- GS) in SLAM systems through the more comprehensive semantics understanding enabled by DINO. This latter alone, however, lacks proper 3D geometry understanding, allowing only for marginal improvements. Therefore, we rely on a Scene Geometry Encoder (SGE) to enrich DINO features into geometry-aware DINO features (geoDINO), to better understand those geometric relationships that vanilla DINO features fail to capture. Building upon it, we propose two foundational paradigms for NeRF and GS SLAM systems integrating geoDINO features. Compared to state-of-the-art methods, our DINO-informed pipelines achieve superior performance on the Replica, ScanNet, and TUM datasets.

URL PDF HTML 收藏
2607.13539 2026-07-16 cs.CV cs.GR 新提交

ThinkBLOX: 3D Indoor Scene Generation with Progressive Reasoning

ThinkBLOX:基于渐进推理的3D室内场景生成

Yuan Xiao, Can Wang, Xiangyu Kong, Jing Liao

机构 * City University of Hong Kong(香港城市大学) University of Hong Kong(香港大学) Beijing Information Science and Technology University(北京信息科技大学)

AI总结 研究针对传统与现有3D室内场景生成方法不足,提出基于VLM的渐进推理框架ThinkBLOX,构建数据集并采用监督微调与新强化学习方案,在多方面优于基线,支持多样3D场景应用。

Comments 20 pages

详情
AI中文摘要

传统图形方法常以自回归或分层方式合成3D室内场景,而基于视觉语言模型(VLM)的生成器多采用一次性范式,交互式编辑时需全局重新优化或完全重建,易导致布局不佳。本文提出ThinkBLOX,一种基于VLM的渐进推理框架,将布局生成视为状态条件下的逐步推理和行动过程。构建了ThinkBLOX-Data-200K数据集,通过监督微调让VLM学习弥合推理-行动差距。还引入Tier-Decoupled GDPO解决奖励冲突问题。实验表明ThinkBLOX在物理合理性、语义对齐和交互式可编辑性方面显著优于基线,支持多种3D场景应用。

英文摘要

While traditional graphics methods often synthesize 3D indoor scenes autoregressively or hierarchically, recent vision-language model (VLM)-based generators predominantly adopt a one-shot paradigm where the full layout is planned at once. This one-shot approach often requires global re-optimization or complete reconstruction during interactive editing (e.g., inserting or moving objects) and can lead to physically or semantically poorly organized arrangements. To address these challenges, we propose ThinkBLOX, a VLM-based progressive reasoning framework that iteratively designs and refines 3D scenes. ThinkBLOX treats layout generation as a state-conditioned, step-by-step reasoningand-action process. To power this, we construct the ThinkBLOX-Data-200K dataset, containing 224,757 procedural placement pairs annotated with multi-view scene context, explicit Chain-of-Thought (CoT) rationales, and structured JSON layouts. Through supervised fine-tuning (SFT) on this dataset, the VLM learns to bridge the reasoning-action gap under incremental updates. Furthermore, recognizing that scene synthesis is inherently a multisolution task where SFT suffers from reward conflict, we introduce Tier-Decoupled GDPO. This reinforcement learning scheme organizes heterogeneous rewards into distinct tiers, stabilizing policy optimization across physical validity, semantic plausibility, and reasoning-action consistency. Extensive experiments show that ThinkBLOX significantly outperforms recent one-shot and iterative baselines in physical plausibility, semantic alignment, and interactive editability. Additionally, we show that it supports diverse applications, including both global and local generation and rearrangement of 3D scenes.

URL PDF HTML 收藏
2607.13455 2026-07-16 cs.RO 新提交

Reverse to Advance: Teleoperation-Cost Effective Hard Policy Learning from Reversed Easy Tasks

逆向推进:从逆向简单任务中进行遥操作成本有效的硬策略学习

Qiyuan Qiao, Ge Yuan, Can Wang, Dong Xu

机构 * The University of Hong Kong(香港大学)

AI总结 研究针对高质量遥操作数据集收集成本高的问题,提出通过逆向简单任务进行硬策略学习的框架,含闭环数据收集、分层数据细化和迭代策略学习方法,经实验验证该方法能高效稳定地训练复杂操作任务,提升硬任务成功率。

Comments 17 pages, 17 figures

详情
AI中文摘要

高质量的遥操作数据集收集成本高昂,尤其是对于困难任务。许多任务存在方向不对称性,逆向简单任务轨迹可作为硬任务的可扩展监督信号,降低手动演示收集成本。但逆向数据可能有噪声,直接训练可能产生次优策略。为此提出一个硬策略学习框架,包括闭环数据收集管道、分层数据细化管道和迭代策略学习方法。通过结合自动化收集、分层细化和迭代学习,该方法能对复杂高精度操作任务进行可扩展、可靠的训练。在两个模拟基准和真实机器人实验中,该方法比基于逆向和强化学习的基线提高了硬任务成功率,数据效率更高,训练更稳定,且无需大量硬任务遥操作。

英文摘要

High-quality teleoperation datasets are costly to collect, particularly for hard tasks. We observe that many tasks exhibit directional asymmetry: completing the forward hard task is difficult, whereas reversing it by relaxing or disrupting the environment is comparatively easy. This suggests that reversed easy-task trajectories can serve as a scalable supervision signal for the hard task, reducing the cost of manual demonstration collection. However, reversed data can be noisy, and directly training on it may yield suboptimal policies. To enable largely automated acquisition and effective use of reversed data, we propose a teleoperation-cost effective framework for hard policy learning via temporal reversal of easy tasks, consisting of three key components: a closed-loop data collection pipeline that alternates between hard-task and easy-task policies to autonomously reset the environment and generate diverse trajectories; a hierarchical data refinement pipeline that temporally inverts easy-task rollouts and filters low-quality motion using kinematic priors and a critic-guided advantage filter; and an iterative policy learning method that trains the hard-task policy using both initial reversed easy-task demonstrations and the filtered reversed data in a continuous online learning loop. By combining automated collection, hierarchical refinement, and iterative learning, our method enables scalable, reliable training of complex, high-precision manipulation tasks. Across two simulated benchmarks and real-robot experiments, we demonstrate that our method improves hard-task success rates with higher data efficiency and more stable training compared to reversal-based and reinforcement-learning baselines, without requiring extensive hard-task teleoperation.

URL PDF HTML 收藏
2607.12527 2026-07-16 cs.AI 版本更新

Evidence-Grounded AI for Musculoskeletal Care

用于肌肉骨骼护理的基于证据的人工智能

Wenjie Li, Yujie Zhang, Fanrui Zhang, Haoran Sun, Renhao Yang, Junjun He, Weiran Huang, Yuanfeng Ji, Chenrun Wang, Kailing Wang, Hongcheng Gao, Kaipeng Zhang, Hanyu Wang, Angela Lin Wang, Xingqi He, Yilin Huang, Shiyi Yao, Lilong Wang, Yankai Jiang, Yirong Chen, Chenglong Ma, Jiyao Liu, Ming Hu, Gen Li, Yidong Xu, Chengyu Zhuang, Jiawei Liu, Yin Zhang, Lequan Yu, Lu Chen, Yinpeng Dong, Lei Liu, Carlos Gutierrez Sanroman, Yu Qiao, Weijie Ma, Xiaosong Wang, Lei Wang

机构 * Ruijin Hospital, College of Health Science and Technology, Shanghai Jiao Tong University School of Medicine(上海交通大学医学院附属瑞金医院,健康科学技术学院) Shanghai Innovation Institute(上海创新研究院) Shanghai Artificial Intelligence Laboratory(上海人工智能实验室) College of Computer Science and Artificial Intelligence, Fudan University(复旦大学计算机科学与人工智能学院) MoE Key Laboratory of Brain-inspired Intelligent Perception and Cognition, University of Science and Technology of China(中国科学技术大学脑启发智能感知与认知教育部重点实验室) School of Basic Medical Sciences, Intelligent Medicine Institute, Fudan University(复旦大学基础医学院智能医学研究院) Department of Radiation Oncology, Stanford University School of Medicine(斯坦福大学医学院放射肿瘤学系) School of Computing and Data Science, The University of Hong Kong(香港大学计算与数据科学学院) College of AI, Tsinghua University(清华大学人工智能学院)

AI总结 研究针对肌肉骨骼护理中证据分散问题,提出基于大语言模型的OrthoPilot系统,整合多源数据进行持续管理。该系统在诊断推理等方面超越专家,优于其他智能系统,还提升了管理成功率和病床病例数等,推动临床人工智能实现纵向管理。

Comments The manuscript was submitted to arXiv before final authorization for public posting had been obtained from all co-authors. The authors therefore request withdrawal while submission consent and authorship approval are resolved. This is an administrative issue and does not concern the scientific content of the manuscript

详情
AI中文摘要

肌肉骨骼疾病是全球残疾的主要原因之一,对康复的需求极大。由于恢复、重塑和退化过程漫长,肌肉骨骼护理需要长期管理,整合患者证据、外部医学知识和特定阶段功能目标。但日常实践中证据分散,限制了个性化循证护理。本文介绍了OrthoPilot,这是一个由大语言模型驱动的临床人工智能系统,整合医院数据流和外部权威知识以进行持续的肌肉骨骼管理。它能自主检索实时数据并做出循证决策。研究建立了包含1000种疾病代码的基准,在读者研究中,OrthoPilot在诊断推理、临床决策和管理规划方面超越了有25年经验的骨科医生,在外部临床中心也优于其他智能系统。在1870例复杂病例的前瞻性研究中,它提高了全链管理成功率10.6%,在8240例住院患者的随机部署中,增加了每张病床的累计病例数9.7%,并改善了患者获取健康信息的情况。这些结果推动临床人工智能从预测孤立事件转向执行完整肌肉骨骼护理路径的纵向管理。

英文摘要

Musculoskeletal diseases are among the leading causes of disability worldwide and create the greatest global need for rehabilitation. Because recovery, remodelling and degeneration often unfold over months to years, musculoskeletal care requires longitudinal management that repeatedly integrates evolving patient evidence, external medical knowledge and stage-specific functional goals. In routine practice, this evidence is fragmented across visits, departments and hospital systems, limiting individualized, evidence-based care. Here we report OrthoPilot, a clinical artificial intelligence system powered by a large language model that integrates hospital data streams with authoritative external knowledge for continuous musculoskeletal management. OrthoPilot autonomously retrieves real-time imaging, laboratory, pathology and order data and converts evolving patient states into evidence-based decisions from admission diagnosis to rehabilitation planning. We established a specialist-validated benchmark from real-world electronic health records spanning 1,000 disease codes. In a reader study across the complete care pathway, OrthoPilot was compared with 81 orthopaedic physicians and surpassed experts with 25 years of experience in diagnostic reasoning, clinical decision-making and management planning. It also outperformed all evaluated intelligent systems across 60 external clinical centres. In a prospective study of 1,870 complex cases, OrthoPilot increased full-chain management success by 10.6%. During an 8-month randomised deployment involving 8,240 inpatients, it increased cumulative cases per bed by 9.7% and improved patient-reported access to health information. These results move clinical AI from predicting isolated events toward executing longitudinal management across complete musculoskeletal care pathways.

URL PDF HTML 收藏
2607.11588 2026-07-16 cs.CV 版本更新

FoundationGeo: Learning Spatial Pixel-Wise Fields for Monocular Metric Geometry

FoundationGeo:学习用于单目度量几何的空间逐像素场

Muxin Liu, Xiaoyang Lyu, Tianhe Ren, Peng Dai, Xiaoshan Wu, Zhiyue Zhang, Jiaqi Zhang, Jiehong Lin, Shaoshuai Shi, Xiaojuan Qi

机构 * The University of Hong Kong(香港大学) Voyager Research, DiDi Chuxing(滴滴出行探索研究院)

AI总结 FoundationGeo是两阶段框架,第一阶段学习高保真几何模型,第二阶段引入校准场生成3D点图。它还解决相机固有覆盖问题,通过合成数据提高鲁棒性。在多基准零射击评估中,该方法增强跨域鲁棒性,性能优于其他基线。

Comments Accepted to ECCV 2026. Project page: https://mx-liu6.github.io/FoundationGeo-web/

详情
AI中文摘要

我们提出了FoundationGeo,这是一个两阶段框架,通过空间校准和有原则的数据设计明确地连接相对和度量预测。第一阶段通过用DINOv3初始化并在精心策划的1020万个样本的多域语料库上进行训练,学习一个高保真、仿射不变的几何模型,并辅以局部细节监督,产生清晰的边界和强大的数据泛化能力。第二阶段通过引入用于度量估计的轻量级逐像素校准场超越全局缩放:一个用于空间变化度量对齐的比例场和一个减轻点图几何中方向偏差的光线方向校正场,共同生成度量一致的3D点图。除了模型设计,我们还将相机固有覆盖范围,特别是训练和测试数据之间的焦距分布不匹配,识别为零射击度量泛化的关键瓶颈:当测试固有值落在训练分布之外时,性能会急剧下降。为了解决这个问题,我们使用基于Blender的数据引擎合成跨不同焦距的额外训练数据,修复覆盖不足的焦距区域并提高固有偏移下的鲁棒性。在七个基准上进行的广泛零射击评估表明,FoundationGeo显著增强了跨域鲁棒性,在不同领域中保持在前列,同时避免了其他方法中观察到的急剧跨域性能下降。这种一致性转化为最佳的整体性能,平均比更重的基线高出5.2%以上。

英文摘要

We present FoundationGeo, a two-stage framework that explicitly bridges relative and metric prediction via spatial calibration and principled data design. Stage 1 learns a high-fidelity, affine-invariant geometry model by initializing with DINOv3 and training on a curated 10.2M-sample multi-domain corpus with complementary local-detail supervision, yielding sharp boundaries and strong cross-domain generalization. Stage 2 moves beyond global scaling by introducing lightweight pixel-wise calibration fields for metric estimation: a scale field for spatially varying metric alignment and a ray-direction correction field that mitigates directional bias in point-map geometry, together producing metrically consistent 3D point maps. Beyond model design, we identify camera intrinsic coverage, especially focal length distribution mismatch between training and test data, as a key bottleneck for zero-shot metric generalization: performance drops sharply when test intrinsics fall outside the training distribution. To address this, we synthesize additional training data across diverse focal lengths using a Blender-based data engine, repairing under-covered focal regimes and improving robustness under intrinsic shift. Extensive zero-shot evaluations across seven benchmarks show that FoundationGeo significantly strengthens cross-domain robustness, staying near the top across diverse domains while avoiding the sharp cross-domain performance drops observed in other methods. This consistency translates into the best overall performance, surpassing heavier baselines by over 5.2% on average.

URL PDF HTML 收藏
2607.12764 2026-07-15 cs.CV 新提交

EvoGraph-R1: Self-Evolving Multimodal Knowledge Hypergraphs for Agentic Retrieval

EvoGraph-R1:用于智能检索的自进化多模态知识超图

Jiashi Lin, Changhong Jiang, Xiangru Lin, Ruifei Zhang, Xinyi Zhu, Jiyao Liu, Cheng Tang, Ye Du, Shujian Gao, Junzhi Ning, Lihao Liu, Ziyan Huang, Tianbin Li, Jin Ye, Junjun He

机构 * Northwestern Polytechnical University(西北工业大学) Shanghai Artificial Intelligence Laboratory(上海人工智能实验室) The University of Hong Kong(香港大学) Monash University(莫纳什大学) The Chinese University of Hong Kong (Shenzhen)(香港中文大学(深圳))

AI总结 研究针对现有GraphRAG方法将知识图视为静态数据结构的局限,提出EvoGraph-R1自进化框架,把检索建模为MDP,智能体通过多种操作使超图结构进化以支持多跳推理,实验证明该方法在多模态问答基准测试中大幅优于现有基线。

Comments 10 pages main paper, 6 figures. CVPR 2026 accepted paper

详情
AI中文摘要

检索增强生成(RAG)已成为将多模态大语言模型(MLLMs)与外部知识相结合的关键范式。近期的GraphRAG方法引入结构化实体关系图来改进检索和推理。然而,它们将知识图视为离线构建并单次查询的静态数据结构,存在局限性。本文提出EvoGraph-R1,一个自进化的GraphRAG框架,将知识图重新概念化为通过智能体交互塑造的动态环境。将检索制定为马尔可夫决策过程(MDP),智能体通过观察图状态执行查询、扩展、细化或终止推理等操作,这些操作重塑超图结构并生成反馈信号以指导后续进化。在多模态VQA和文本QA基准测试上的实验表明,该方法在准确性、覆盖率和可追溯性方面比现有RAG基线有显著改进,确立了自进化知识图作为跨模态的基本范式。

英文摘要

Retrieval-augmented generation (RAG) has emerged as a critical paradigm for grounding Multimodal Large Language Models (MLLMs) in external knowledge. Recent GraphRAG methods introduce structured entity-relation graphs to improve retrieval and reasoning. However, they remain limited by treating knowledge graphs as static data structures built offline and queried in a single pass. This static paradigm misaligns with the interactive, iterative nature of knowledge-intensive reasoning, creating three bottlenecks: (i) text-centric fragmentation that impedes cross-modal reasoning, (ii) frozen structures unable to incorporate new evidence or correct errors, and (iii) rigid single-pass retrieval without adaptive refinement. To overcome these limitations, we introduce EvoGraph-R1, a self-evolving GraphRAG framework that reconceptualizes knowledge graphs as dynamic environments shaped through agent interactions. We formulate retrieval as a Markov Decision Process (MDP) where the agent observes the graph state and executes actions to query (GraphRetrieve), expand (WebSearch), refine (GraphEdit), or terminate (Answer) the reasoning. These actions reshape the hypergraph structure and generate feedback signals that guide subsequent evolution. Through this closed loop, the hypergraph evolves by integrating new evidence, correcting errors, and refining structure to support multi-hop reasoning. Experiments on multimodal VQA and text QA benchmarks demonstrate substantial improvements over existing RAG baselines in accuracy, coverage, and traceability, establishing self-evolving knowledge graphs as a fundamental paradigm across modalities.

URL PDF HTML 收藏
2607.12398 2026-07-15 cs.CV cs.RO 新提交

Seeing Globally, Refining Locally: Global Visual Guidance and Local Ultrasound Cues for Robust Freehand 3-D Ultrasound Reconstruction

全局观察,局部细化:用于稳健徒手三维超声重建的全局视觉引导和局部超声线索

Yameng Zhang, Zhongyu Chen, Dianye Huang, Xiangyu Chu, K. W. Samuel Au, Zhongliang Jiang

机构 * Department of Mechanical Engineering, The University of Hong Kong(香港大学机械工程系) Multi-Scale Medical Robotics Center(多尺度医疗机器人中心) Department of Mechanical and Automation Engineering, The Chinese University of Hong Kong(香港中文大学机械与自动化工程系)

AI总结 研究针对徒手三维超声重建中探头姿态估计易累积误差问题,提出全局到局部姿态估计框架,利用双相机分支和B模式分支及跨模态融合模块,经多尺度姿态损失约束,在数据集和体内实验中有效降低轨迹漂移,提升重建效果。

详情
AI中文摘要

徒手三维超声成像因其直观的体积可视化、易用性和低成本而受到越来越多关注。然而,精确的三维重建严重依赖稳定的探头姿态估计,现有无跟踪方法仍易受累积姿态误差影响,尤其是在长扫描轨迹上。为解决此局限,我们提出一个全局到局部的姿态估计框架,利用外部相机观测进行全局稳定定位,利用B模式超声图像进行解剖学感知的局部细化。具体包括一个双相机分支通过跨相机视图和时间观测进行上下文特征聚合以估计全局一致的探头轨迹,一个B模式分支从连续超声图像进行解剖特征聚合以捕捉组织相关局部运动线索。一个跨模态融合模块随后整合上下文相机特征和解剖超声特征以预测姿态残差并在变换空间细化相机衍生估计。此外,一个多尺度姿态损失约束多个时间范围内的相对运动以抑制长时间扫描中的累积漂移。该框架在体模和体内数据集上得到验证。在两个使用不同机器收集的内部数据集(FUSION-J和FUSION-L)上,所提的US + Dual-Cam模型将平均轨迹漂移分别降至1.67毫米和1.29毫米,比强大的双相机基线分别提高了16.50%和27.12%,同时大幅优于仅超声姿态估计(漂移>13毫米)。在体内前臂动脉重建中,它实现了1.58毫米的豪斯多夫距离,证明了该方法在实际临床场景中的有效性。

英文摘要

Freehand 3-D ultrasound (US) imaging has attracted increasing attention owing to its intuitive volumetric visualization, ease of use, and low cost. However, accurate 3-D reconstruction critically depends on stable probe pose estimation, yet existing trackerless methods remain susceptible to accumulated pose errors, particularly over long scanning trajectories. To address this limitation, we propose a global-to-local pose estimation framework that exploits external camera observations for globally stable localization and B-mode US images for anatomy-aware local refinement. Specifically, the framework comprises a dual-camera branch that performs contextual feature aggregation across camera views and temporal observations to estimate a globally consistent probe trajectory, and a B-mode branch that performs anatomical feature aggregation from sequential US images to capture tissue-dependent local motion cues. A cross-modal fusion module subsequently integrates the contextual camera features and anatomical US features to predict pose residuals and refine the camera-derived estimates in the transformation space. Furthermore, a multi-scale pose loss constrains relative motion over multiple temporal horizons to suppress accumulated drift during extended scans. The proposed framework is validated on phantom and in vivo datasets. On two in-house datasets (FUSION-J and FUSION-L) collected using different machines, the proposed US + Dual-Cam model reduces average trajectory drift to 1.67 mm and 1.29 mm, representing improvement of 16.50% and 27.12%, respectively, over a strong dual-camera baseline, while substantially outperforming US-only pose estimation (>13 mm drift). In in vivo forearm arteries reconstruction, it achieves Hausdorff distances of 1.58 mm, demonstrating the effectiveness of the proposed method on real clinical scenarios.

URL PDF HTML 收藏
2607.12372 2026-07-15 cs.CV 新提交

UMSS: Towards Unsupervised Multi-modal Semantic Segmentation

UMSS:迈向无监督多模态语义分割

Haitian Zhang, Thai Duy Nguyen, Xiangyuan Wang, Mohan Liu, Lin Wang

机构 * EmPACT Lab, School of EEE, Nanyang Technological University(电气与电子工程学院电磁脉冲与天线研究室,南洋理工大学) The University of Hong Kong(香港大学)

AI总结 本文针对无监督多模态语义分割问题,提出基于DINOv3的UniM2框架,通过跨模态对应协同学习统一潜在空间提取语义线索,并引入跨模态协调器缓解冲突,实验证明该框架相比现有框架有明显优势。

详情
AI中文摘要

多模态语义分割对于复杂环境中的稳健感知至关重要,但由于人工标注成本高昂,其潜力尚未得到充分挖掘。无监督语义分割在单RGB模态上取得了不错成果,但其简单扩展到多模态数据常受融合退化阻碍。本文首次尝试解决无监督多模态语义分割这一全新问题,提出基于DINOv3的新型框架UniM2。通过由跨模态对应协同驱动学习统一潜在空间来提取内在共享语义线索,引入跨模态协调器以缓解模态冲突。在NYU Depth v2和MFNet上的实验结果表明,UniM2分别将平均交并比提高了6.4%和9.8%,优于现有框架。

英文摘要

Multimodal semantic segmentation (MSS) is essential for robust perception in complex environments, yet its potential remains largely untapped because of the prohibitive cost of human annotations. While unsupervised semantic segmentation (USS) has achieved strong results on a single RGB modality, its naive extension to multimodal data is often hindered by fusion degradation. This occurs because, without explicit supervision, existing frameworks struggle to reconcile the heterogeneous structural patterns captured by different sensors and therefore fail to effectively exploit their complementary information. In this paper, we make the first attempt to address the novel problem of Unsupervised Multimodal Semantic Segmentation (UMSS), aiming to effectively exploit complementary sensor information in a fully label free setting. To this end, we propose UniM2 (Unified Multimodal), a novel framework built on DINOv3 that transforms conventional fusion methods into consistent performance gains. Our key idea is to learn a unified latent space driven by Cross Modal Correspondence Synergy (CMCS) to extract intrinsic shared semantic cues, bypassing the need for label guided adaptive fusion. To mitigate inherent intermodal conflicts, we introduce a Cross Modal Harmonizer (CMH) that designates RGB as a stable reference, effectively suppressing inconsistent relational supervision while guiding the model to exploit complementary structural features. Extensive experimental results on NYU Depth v2 and MFNet show that UniM2 improves mIoU by 6.4% and 9.8%, respectively, demonstrating clear advantages over existing frameworks for UMSS.

URL PDF HTML 收藏
2602.12783 2026-07-15 cs.IR cs.AI 版本更新

SQuTR: A Robustness Benchmark for Spoken Query to Text Retrieval under Acoustic Noise

SQuTR:一种在语音噪声下 spoken query 到文本检索的鲁棒性基准

Yuejie Li, Ke Yang, Yueying Hua, Berlin Chen, Jianhao Nie, Yueping He, Caixin Kang

机构 * Huazhong University of Science and Technology(华中科技大学) The University of Hong Kong(香港大学) Soochow University(苏州大学) University of Science and Technology of China(中国科学技术大学) Wuhan University(武汉大学) Tsinghua University(清华大学) The University of Tokyo(东京大学)

AI总结 SQuTR通过大规模数据集和统一评估协议,评估语音检索系统在复杂噪声环境下的鲁棒性,揭示了极端噪声下检索性能显著下降的问题。

Comments Accepted by SIGIR 2026

Journal ref Proceedings of the 49th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR '26), July 20--24, 2026, Melbourne, VIC, Australia

详情
AI中文摘要

语音查询检索是现代信息检索中的重要交互模式。然而,现有评估数据集通常局限于简单查询和受限噪声条件,无法有效评估语音查询检索系统在复杂声学扰动下的鲁棒性。为解决这一限制,我们提出了SQuTR,一个用于语音查询检索的鲁棒性基准,包含大规模数据集和统一评估协议。SQuTR聚合了来自六个常用英文和中文文本检索数据集的37,317个唯一查询,涵盖多个领域和多样化的查询类型。我们使用200名真实说话人的语音轮廓合成语音,并在受控的SNR水平下混合17种真实世界环境噪声,使从安静到高度噪声条件的可重复鲁棒性评估成为可能。在统一协议下,我们对代表性 cascaded 和 end-to-end 检索系统进行了大规模评估。实验结果表明,随着噪声增加,检索性能下降,不同系统下降幅度差异显著。即使大规模检索模型在极端噪声下也难以应对,表明鲁棒性仍然是关键瓶颈。总体而言,SQuTR提供了一个可重复的测试平台用于基准测试和诊断分析,并促进了未来关于语音查询到文本检索鲁棒性的研究。

英文摘要

Spoken query retrieval is an important interaction mode in modern information retrieval. However, existing evaluation datasets are often limited to simple queries under constrained noise conditions, making them inadequate for assessing the robustness of spoken query retrieval systems under complex acoustic perturbations. To address this limitation, we present SQuTR, a robustness benchmark for spoken query retrieval that includes a large-scale dataset and a unified evaluation protocol. SQuTR aggregates 37,317 unique queries from six commonly used English and Chinese text retrieval datasets, spanning multiple domains and diverse query types. We synthesize speech using voice profiles from 200 real speakers and mix 17 categories of real-world environmental noise under controlled SNR levels, enabling reproducible robustness evaluation from quiet to highly noisy conditions. Under the unified protocol, we conduct large-scale evaluations on representative cascaded and end-to-end retrieval systems. Experimental results show that retrieval performance decreases as noise increases, with substantially different drops across systems. Even large-scale retrieval models struggle under extreme noise, indicating that robustness remains a critical bottleneck. Overall, SQuTR provides a reproducible testbed for benchmarking and diagnostic analysis, and facilitates future research on robustness in spoken query to text retrieval.

URL PDF HTML 收藏
2602.01700 2026-07-15 cs.RO 版本更新

Tilt-Ropter: A Fully Actuated Hybrid Aerial-Terrestrial Vehicle with Tilt Rotors and Passive Wheels

Tilt-Ropter: 一种带有倾转旋翼和被动轮的全驱动混合空中-地面车辆

Ruoyu Wang, Xuchen Liu, Zongzhou Wu, Zixuan Guo, Wendi Ding, Ben M. Chen

机构 * Department of Mechanical and Automation Engineering, The Chinese University of Hong Kong(机械与自动化工程系,香港中文大学) Faculty of Engineering, The University of Hong Kong(工程学院,香港大学) Peng Cheng Laboratory(鹏城实验室)

AI总结 提出全驱动混合空中-地面车辆Tilt-Ropter,通过倾转旋翼和被动轮实现高效多模态运动,并设计统一非线性模型预测控制器实现低跟踪误差和地面运动功耗降低92.8%。

Comments 8 pages, 10 figures. Accepted by the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS 2026)

详情
AI中文摘要

在这项工作中,我们提出了Tilt-Ropter,一种全驱动的混合空中-地面车辆(HATV),它集成了倾转旋翼和被动轮,以实现高效的多模态运动。与传统的欠驱动HATV不同,Tilt-Ropter的全驱动设计允许力和扭矩解耦控制,提高了机动性和地面运动效率。开发了一个统一的非线性模型预测控制器(NMPC)来跟踪参考轨迹,强制执行非完整约束,并适应运动模式间的接触效应,同时通过专门的控制分配确保执行器可行性。为了解决复杂的轮地动力学问题,集成了一个外部力估计器来提供实时交互力估计。该系统通过仿真和实际实验进行了验证,包括无缝的空地过渡和轨迹跟踪任务。实验结果表明,两种模式下的跟踪误差都很低,并且地面运动期间的功耗相比飞行降低了92.8%,突显了该平台在能源受限环境中执行长时间任务的适用性。

英文摘要

In this work, we present Tilt-Ropter, a fully actuated hybrid aerial-terrestrial vehicle (HATV) that integrates tilt rotors with passive wheels to enable efficient multi-modal locomotion. Unlike conventional underactuated HATVs, the fully actuated design of Tilt-Ropter allows decoupled force and torque control, improving maneuverability and ground locomotion efficiency. A unified nonlinear model predictive controller (NMPC) is developed to track reference trajectories, enforce non-holonomic constraints, and accommodate contact effects across locomotion modes, while ensuring actuator feasibility through dedicated control allocation. To address complex wheel-ground dynamics, an external wrench estimator is incorporated to provide real-time interaction wrench estimates. The system is validated through simulation and real-world experiments, including seamless air-ground transitions and trajectory tracking tasks. Experimental results demonstrate low tracking errors in both modes and reveal a 92.8% reduction in power consumption during ground locomotion compared with flight, highlighting the platform's potential for long-duration missions where energy efficiency is critical.

URL PDF HTML 收藏
2607.11886 2026-07-14 cs.CV 新提交

Read It Back: Pretrained MLLMs Are Zero-Shot Reward Models for Text-to-Image Generation

读回:预训练的多模态语言模型是文本到图像生成的零样本奖励模型

Runhui Huang, Qihui Zhang, Zhe Liu, Yu Gao, Jie Wu, Hengshuang Zhao

机构 * The University of Hong Kong(香港大学) ByteDance Seed(字节跳动Seed) Peking University(北京大学)

AI总结 研究提出SpectraReward将预训练多模态语言模型转为图像生成强化学习奖励模型,用图像条件提示对数似然作奖励,还引入Self-SpectraReward形成闭环框架。经广泛实验验证,二者能提升生成性能,表明奖励-策略对齐是关键。

详情
AI中文摘要

在本文中,我们提出了SpectraReward,一种无需训练的奖励函数,它将预训练的多模态语言模型转变为用于图像生成强化学习的现成奖励模型。SpectraReward不是要求多模态语言模型判断生成的图像或回答分解的验证问题,而是通过单次图像条件下的教师强制前向传递来衡量从生成的图像中恢复原始提示的程度。我们使用平均图像条件提示对数似然作为奖励,直接重用多模态语言模型的预训练图像-文本对齐能力,无需偏好标签和奖励模型微调。我们进一步引入了Self-SpectraReward,这是统一多模态模型的一种特殊情况,其中策略自身的理解分支作为其生成分支的奖励模型,形成了一个无需外部奖励模型或外部知识的闭环自我改进框架。广泛的实验通过涵盖两个扩散模型、三种强化学习算法、来自四个多模态语言模型家族的九个奖励多模态语言模型主干(参数跨度从4B到235B)以及五个分布外文本到图像基准的广泛图像生成强化学习研究验证了SpectraReward。结果表明,SpectraReward和Self-SpectraReward都显著且持续地提高了生成性能,并且优于先前基于多模态语言模型的奖励训练方法。进一步的分析表明,更大的奖励多模态语言模型并不总是更好,而Self-SpectraReward可以匹配或超过大得多的外部奖励模型,这表明奖励-策略对齐是有效图像生成强化学习的关键因素。

英文摘要

In this paper, we propose SpectraReward, a training-free reward function that turns pretrained MLLMs into off-the-shelf reward models for image-generation reinforcement learning. Instead of asking the MLLM to judge a generated image or answer decomposed verification questions, SpectraReward measures how well the original prompt can be recovered from the generated image through a single image-conditioned, teacher-forced forward pass. We use the average image-conditioned prompt log-likelihood as the reward, directly reusing the MLLM's pretrained image-text alignment ability without preference labels, reward-model fine-tuning. We further introduce Self-SpectraReward, a special case for unified multimodal models where the policy's own understanding branch serves as the reward model for its generation branch, forming a closed-loop self-improving framework without external reward models or external knowledge. Extensive experiments validate SpectraReward through a broad image-generation RL study covering two diffusion models, three RL algorithms, nine reward MLLM backbones from four MLLM families spanning 4B to 235B parameters, and five out-of-distribution text-to-image benchmarks. Results show that both SpectraReward and Self-SpectraReward significantly and consistently improve generation performance and outperform prior MLLM-derived reward training methods. Further analysis reveals that larger reward MLLMs are not always better, while Self-SpectraReward can match or surpass much larger external reward models, suggesting that reward-policy alignment is a key factor for effective image-generation RL. Project Page: https://huangrh99.github.io/SpectraReward/

URL PDF HTML 收藏
2607.11175 2026-07-14 cs.AI 新提交

The Path to Self-Evolving Clinical Systems: Scaling Medical Agents from Assistance to Autonomy

自我进化临床系统之路:将医疗智能体从辅助扩展到自主

Chunzheng Zhu, Lei Tian, Bohan Tan, Ziqi Zhou, Yuxuan Sun, Yijun Wang, Chengchao Lv, Yilin Wen, Yijun He, Jinghao Lin, Yihang Chen, Cheewei Tan, Qianshan Wei, Lei Zhao, Bin Pu, Kenli Li, Yuan Xue, Jianxin Lin

机构 * Hunan University(湖南大学) ByteDance(字节跳动) Duke University(杜克大学) Westlake University(西湖大学) The University of Hong Kong(香港大学) Nanyang Technological University(南洋理工大学) Institute of Automation, Chinese Academy of Sciences(中国科学院自动化研究所) University of Macau(澳门大学) The Ohio State University(俄亥俄州立大学)

AI总结 研究探讨大语言模型等对医疗智能体的重塑,从临床部署出发,将其形式化为决策系统并给出自主性分类。沿统一框架扩展,强调临床环境扩展为关键方向,定位临床自我进化为前沿,还研究了多领域应用及挑战,提供医学成像系统路线图。

Comments Project page: https://github.com/zhcz328/Awesome-Medical-Agents

详情
AI中文摘要

大语言模型和视觉语言模型联合解释和推理图像与文本的能力不断增强,正在重塑医疗智能体,使其从特定任务预测器向能在临床环境中感知、推理、规划、记忆和行动的自主系统转变。本研究从临床部署出发,探讨医疗智能体在实际应用中所需的任务、抗污染基准和交互式训练环境。将医疗智能体形式化为部分可观测下的序列决策系统,并给出了辅助、合作和完全自主操作的三级自主性分类法。沿着由框架扩展、能力扩展和环境扩展组成的统一扩展框架,临床环境扩展被视为在PACS、EHR和FHIR生态系统中运行的智能体最具可行性但未充分探索的方向。临床自我进化被定位为关键研究前沿,借鉴自我改进智能体、智能体训练环境和测试时计算扩展的见解。研究了放射学、病理学、眼科和医院工作流程中的应用以及包括幻觉、级联故障和公平性在内的部署挑战。通过整合300多篇参考文献,特别是2025年至2026年的进展,为实际临床实践中可信的、自我改进的医学成像系统提供了路线图。

英文摘要

The growing ability of large language models and vision language models to jointly interpret and reason over images and text is reshaping medical agents, moving them from task specific predictors toward autonomous systems that perceive, reason, plan, remember, and act in clinical environments. This work departs from the capability first perspective of existing literature and instead begins from clinical deployment, asking what tasks, contamination resistant benchmarks, and interactive training environments are required before medical agents can be trusted in practice. Medical agents are formalized as sequential decision making systems under partial observability, together with a three level autonomy taxonomy spanning assisted, cooperative, and fully autonomous operation. The field is organized along a unified scaling spine consisting of framework scaling, capability scaling, and environment scaling. Within this framework, clinical environment scaling, the integration of tools, data, and clinical gyms, is identified as the most actionable yet underexplored direction for agents operating in PACS, EHR, and FHIR ecosystems. Clinical self evolution, where agents improve through interaction with their environments rather than parameter scaling alone, is further positioned as a key research frontier, drawing insights from self improving agents, agent gyms, and test time compute scaling. Applications across radiology, pathology, ophthalmology, and hospital workflows are examined together with deployment challenges including hallucination, cascading failures, and fairness. By consolidating more than 300 references, with particular emphasis on advances from 2025 to 2026, this work provides a roadmap toward trustworthy, self improving medical imaging systems for real clinical practice.

URL PDF HTML 收藏