Paper: 2607.18217 Authors: Yiyang Cai, Nan Chen, Rongchang Xie, Junwen Pan, Chunyang Jiang, Cheng Chen, Wen Zhou, Zhenbang Sun, Wei Xue, Wenhan Luo Categories: cs.CV

The Gap

Existing research in subject-driven video generation, particularly for human-object centric video personalization (HOCVP), is stuck in a tough trade-off. Methods focusing on inter-subject personalization can make a person and an object look right individually, but they often botch the interaction between them—like getting the face perfect but the handshake weird. This is even harder when the “object” is abstract, like a logo. On the other hand, using extra reference inputs (like multiple views or text maps, i.e., intra-subject references) could help, but current systems lack a good way to understand and use this extra information without breaking the model’s controllability or getting too expensive to retrain.

[Problem: HOCVP struggles with]
|         |
v         v
[Inter-Subject Personalization] [Intra-Subject References]
|                            |     |                   |
v                            v     v                   v
[Poor Human-Object           [Lack of            [Costly Re-alignment]
 Interaction & Control]        Correspondence]     |
                           |   |   |               v
                           v   v   v               [No Unified
                       [Need for a unified solution]    Framework]
                           |
                           v
[HOMIE: Integrates MLLM Knowledge via Novel Mechanisms]
                           |
                           v
[SOTA Results & Ablation on Inter/Intra Tasks]
                           |
                           v
[Conclusion: Unified, controllable, and efficient HOCVP]

The Increment

One sentence: Before this paper, achieving high-fidelity, interactive personalized videos required fragile, disconnected methods; after, a single framework gracefully integrates rich semantic understanding from multimodal LLMs into the generation process, setting a new performance standard.

Core Mechanism

HOMIE’s core idea is to smartly inject knowledge from a powerful Multimodal Large Language Model (MLLM) into a standard diffusion-based video generator. The MLLM is great at understanding relationships (like “person holding cup” or “person wearing shirt with logo”), but its features live in a different “language” than the image features the diffusion model works with. Directly mixing them causes chaos, losing the precise control of text prompts.

HOMIE’s solution has two key parts. First, it uses a Global Multimodal Guidance mechanism within the diffusion model’s self-attention layers. Think of it as the MLLM giving the video model a high-level “semantic briefing” at every step of generation, guiding the overall scene composition without overwriting the detailed instructions from the text prompt. Second, to handle the tricky intra-subject references (e.g., “here’s a picture of the exact person I want”), it introduces Modality-Reference Embedding. This acts like a smart tagging system. It tags tokens coming from the MLLM and from the VAE (the image feature extractor) differently, and crucially, it explicitly links the tokens from the reference image to the corresponding tokens in the generated video frame, ensuring the subject’s identity is preserved consistently.

[Reference Image(s)] --> [VAE Encoder] --> [VAE Tokens (Tag A)]
         |                                         |
         +-------> [MLLM] --> [MLLM Features] --> [Multimodal Guidance Module]
         |                                         |
[Text Prompt] --> [Text Encoder] --> [Text Tokens] |
         |                                         | (Integrated via self-attention)
         v                                         v
[Diffusion Transformer (Self-Attention Layer)] <--- [Modality-Reference Embedding: Tags & Links]
         |
         v
[Denoising Process] --> [Generated Video Frame]

Structural Metaphor: A Film Director’s Crew Imagine the diffusion model is the cinematographer (handles the camera, lighting, visuals). The text prompt is the screenplay (the scene description). The MLLM is the veteran art director who understands deep relationships (e.g., “this character’s emotional state should be reflected in how they hold the prop”).

  • Global Multimodal Guidance: This is like the art director (MLLM) constantly whispering semantic advice (“More tension in their posture”) to the cinematographer (diffusion model) on set, improving the scene’s logic without rewriting the screenplay (text prompt).
  • Modality-Reference Embedding: This is the set continuity manager. They take a reference photo of the actor (VAE token from reference image) and physically put them on set, tagging them as “the main actor.” They ensure the same actor (same tag) is filmed from every angle, maintaining perfect continuity (intra-subject fidelity). They also make sure the actor interacts properly with the prop (art director’s advice). Without the art director’s guidance, the scene is technically correct but emotionally hollow. Without the continuity manager, you get a different-looking actor in every shot. HOMIE hires both for the same production.

Key Concepts

  • Human-Object Centric Video Personalization (HOCVP): This is the specific job. You’re given reference pictures of a person and an object (which could be a physical thing or an abstract logo), and you need to generate a new video where that specific person is doing something with that specific object. The hard part isn’t just putting them in a video; it’s making the interaction look natural and true to life.
  • Multimodal Large Language Model (MLLM) Integration: Instead of just using an MLLM to caption images, HOMIE uses it as a deep relationship analyzer. The key is the *integration strategy: it doesn’t replace the text encoder (which would break controllability) or require a massive retraining of the whole system. It adds a new “guidance stream” of semantic features that the generation process can attend to.
  • Intra-Subject vs. Inter-Subject: “Inter-subject” means the relationship *between different subjects (human and object). “Intra-subject” means the consistency within one subject (the person in the video looking like the person in the reference photo). Previous methods often focused on one; HOMIE unifies them. A simple example: inter-subject fidelity is about making sure the person is holding the logo-branded cup correctly. Intra-subject fidelity is about making sure that person looks like the same person in every frame of the video.

Framework Shift

Before (mainstream approach):            After (this paper):
[Text Prompt] --> [Generator]            [Text Prompt] --> [Generator] <---+
[Ref Image 1] -----> (Maybe attention)   [Ref Image(s)] --> [VAE] -->[Tagged Tokens]-+
[Ref Image 2] -----> (Maybe separate)                                          |    |
                                        [MLLM] -------> [Semantic Features]---->[Global &
Multiple paths, fragile balancing.      Unified pathway with explicit            Modality-
MLLM knowledge hard to inject.          tagging and guidance mechanisms.         Reference]

From X to Y, the core shift is from fragmented, post-hoc adjustments to a unified, architecturally integrated guidance system for semantics and identity.

Expert Assessment

Problem choice: This is a real and important gap. HOCVP is where the rubber meets the road for subject-driven video generation. The inter/intra-subject tension is a fundamental bottleneck, and the problem of “abstract objects” (logos) is cleverly highlighted. It sits squarely at the frontier of making diffusion models truly controllable for complex, multi-entity scenes.

Method maturity: It’s clever engineering more than a brute-force throw of compute. The insight to use self-attention for *global guidance and a special embedding for explicit token association is sound and targeted. They avoid the simpler (but destructive) approach of replacing the text encoder. Are there simpler approaches? Maybe, but they likely wouldn’t achieve the same balance. The design feels intentional.

Experimental integrity: The experiments are comprehensive. They test on both inter and intra tasks, include challenging abstract concepts (logos), and provide meaningful ablations (e.g., removing guidance vs. removing embedding). Comparisons against strong baselines (like DreamVideo and VideoComposer) appear fair. The numbers look convincing, though real-world robustness always needs more diverse testing. No obvious red flags.

Writing quality: The paper is generally clear but can be dense. The “Method” section, while detailed, could be more pedagogical. Rewriting the first two pages of the method to walk through the film crew metaphor (or similar) before diving into the technical formulas would make the core contribution instantly graspable to a broader audience. The related work section is solid.

Verdict: Weak Accept — The contribution is incremental but significant. It unifies two key problems in HOCVP with a well-motivated and effective architectural solution, backed by solid experiments. It moves the state-of-the-art forward in a clear, practical way.

Takeaways

  1. The Unified Framework Principle: When you have two related but distinct sub-problems (here, inter- and intra-subject fidelity), don’t treat them as separate tasks with separate fixes. Design a single architectural component (like Modality-Reference Embedding) that can naturally handle both by construction.
  2. Semantic Guidance via Attention: For injecting knowledge from a powerful external model (like an MLLM) into a generative process, consider using cross- or self-attention layers as the “integration point.” This allows for continuous, nuanced guidance without disrupting the core controllability of the original model (e.g., the text encoder).
  3. Tag, Don’t Mix: When combining features from different modalities (image features from VAE, semantic features from MLLM), don’t just concatenate or add them. Use a learned embedding or positional tag to explicitly distinguish their source. This lets the downstream network treat them appropriately and maintain their unique characteristics.

论文: 2607.18217 作者: Yiyang Cai, Nan Chen, Rongchang Xie, Junwen Pan, Chunyang Jiang, Cheng Chen, Wen Zhou, Zhenbang Sun, Wei Xue, Wenhan Luo 分类: cs.CV

缺口

在以主体驱动的视频生成,尤其是人物-物体中心视频个性化(HOCVP)领域,现有研究陷入了一个两难困境。 专注于“主体间”个性化的现有方法,或许能让人和物单独看起来都很像,但往往处理不好两者之间的交互——比如人脸完美,但握手动作却很别扭。 当“物体”是抽象概念(如Logo)时,问题更甚。 另一方面,使用额外的参考输入(如多视角、OCR图等“主体内”参考)本可增强保真度,但现有方法大多缺乏理解这种潜在对应关系的机制,强行整合又会破坏模型的可控制性或导致昂贵的再训练。

[问题:HOCVP面临的困境]
|         |
v         v
[主体间个性化]        [主体内参考]
|              |      |           |
v              v      v           v
[交互质量差]    [保真度不足]  [缺乏对应理解]  [成本高昂]
|              |      |           |
|              |      |           v
|              +------|-------> [需要一个统一解决方案]
|                     |                |
|                     v                v
[单一路径难以兼顾]  <------------------[需要新的整合机制]
                           |
                           v
[HOMIE:通过新机制整合MLLM知识]
                           |
                           v
[在主体间/主体内任务上达到SOTA]
                           |
                           v
[结论:统一、可控、高效的HOCVP]

增量

一句话: 在此论文之前,要生成高保真、有交互的个性化视频,需要各种脆弱、割裂的方法;在此之后,一个统一框架优雅地将多模态大语言模型的丰富语义理解整合进生成过程,树立了新的性能标杆。

核心机制

HOMIE的核心思路是巧妙地将多模态大语言模型(MLLM)的知识注入到标准的基于扩散的视频生成器中。 MLLM擅长理解关系(如“人拿着杯子”、“人穿着带Logo的衬衫”),但其特征所在的“语言空间”与扩散模型工作的图像特征空间不同。 直接混合会导致混乱,失去文本提示的精确控制力。

HOMIE的方案包含两个关键部分。 首先,在扩散模型的自注意力层中引入全局多模态引导。 可以把它想象成MLLM在生成的每一步都给视频模型一个高层次的“语义简报”,指导整体场景构成,但不会覆盖文本提示的详细指令。 其次,为了处理棘手的主体内参考(例如,“这是我想要的那个人的照片”),它引入了模态-参考嵌入。 这像一个智能的标签系统。 它将来自MLLM和来自VAE(图像特征提取器)的标记用不同标签区分,并且关键地,它明确地将参考图像的标记与生成视频帧中对应的标记关联起来,确保主体的身份被稳定地保留。

[参考图像] --> [VAE 编码器] --> [VAE 标记 (标签A)]
     |                              |
     +------> [MLLM] --> [MLLM 特征] --> [全局多模态引导模块]
     |                              |
[文本提示] --> [文本编码器] --> [文本标记] |
     |                              | (通过自注意力整合)
     v                              v
[扩散 Transformer (自注意力层)] <-- [模态-参考嵌入:标签与关联]
     |
     v
[去噪过程] --> [生成的视频帧]

结构性比喻:一个电影导演团队 将扩散模型比作摄影师(掌镜、布光、处理视觉)。 文本提示是剧本(场景描述)。 MLLM是资深艺术指导,他深刻理解内在关系(例如,“这个角色的情绪状态应该体现在他如何拿道具上”)。

  • 全局多模态引导:这就如同艺术指导(MLLM)在片场不断向摄影师(扩散模型)低语语义建议(“他们的姿态再紧张一点”),提升了场景的逻辑,但并没有重写剧本(文本提示)。
  • 模态-参考嵌入:这就是现场连续性监督员。 他们拿着演员的参考照片(来自参考图像的VAE标记),把演员本人带到片场,贴上“主角”的标签。 他们确保从每个角度拍摄的都是同一个演员(同一个标签),保持完美的连续性(主体内保真度)。 他们也确保演员与道具(艺术指导的建议)进行恰当的互动。 没有艺术指导的指导,场景技术上正确但情感空洞。 没有连续性监督员,你可能会在每个镜头里得到一个长相不同的演员。 HOMIE为同一个制片团队雇用了两者。

关键概念

  • 人物-物体中心视频个性化:这是具体的任务目标。 给定一个人和一个物体(可以是实物,也可以是抽象Logo)的参考图片,你需要生成一个新视频,其中是那个特定的人与那个特定的物体互动。 难点不仅在于把他们放进视频,更在于让互动看起来自然、真实。
  • 多模态大语言模型整合策略:HOMIE不只是用MLLM给图像打标签,而是将其作为深层关系分析器。 关键在于整合策略:它没有替换文本编码器(这会破坏可控制性),也不需要对整个系统进行昂贵的再训练。 它增加了一个新的“引导流”,包含语义特征,生成过程可以关注这些特征。
  • 主体间 vs. 主体内:“主体间”指不同主体之间的关系(人与物)。 “主体内”指单一主体内部的一致性(视频中的人是否像参考照片中的那个人)。 以前的方法常侧重其一;HOMIE将两者统一。 一个简单例子:主体间保真度是关于确保人正确地拿着印有Logo的杯子。 主体内保真度是关于确保视频每一帧中的人都是同一个人。

框架转变

之前(主流方法):                      之后(本文方法):
[文本提示] --> [生成器]                 [文本提示] --> [生成器] <----+
[参考图1] ---> (可能用到注意力)         [参考图] --> [VAE] -->[带标签的标记]-+
[参考图2] ---> (可能独立处理)                                              |    |
                                    [MLLM] -------> [语义特征]-----------+>[全局与
多条路径,需要脆弱的平衡。                                                  模态参考]
整合MLLM知识困难。                  统一路径,带有显式的标签和引导机制。

从 X 到 Y,核心转变是从碎片化的、事后调整,转向一个统一的、架构内嵌的语义与身份引导系统。

专家评审

选题眼光:这是一个真实且重要的缺口。 HOCVP是主体驱动视频生成领域的“试金石”。 主体间/主体内的张力是一个根本性瓶颈,而“抽象物体”(Logo)问题的提出也很巧妙。 它正处于让扩散模型真正可控以处理复杂多实体场景的前沿。

方法成熟度:这是巧妙的工程设计,而非蛮力堆砌算力。 利用自注意力进行全局引导,以及用特殊嵌入实现显式标记关联,这个洞见是合理且有针对性的。 他们避开了更简单(但具有破坏性)的替换文本编码器的方案。 有更简单的方法吗?可能有,但很难达到同样的平衡。 整体设计感觉是深思熟虑的。

实验诚意:实验全面。 他们在主体间和主体内任务上都进行了测试,包含了具有挑战性的抽象概念(Logo),并进行了有意义的消融实验(如去除引导与去除嵌入)。 与强基线(如DreamVideo和VideoComposer)的对比看起来是公平的。 数据令人信服,不过实际应用中的鲁棒性仍需更多样化测试。 没有明显可疑之处。

写作功力:论文总体清晰,但有些地方较密集。 “方法”部分虽然详尽,但可以更具启发性。 重写方法部分的前两页,用电影团队的比喻(或类似方式)引导,然后再深入技术细节,能让核心贡献被更广泛的读者瞬间理解。 相关工作部分写得不错。

判决弱接收 — 贡献是渐进式的,但意义重大。 它用一个动机充分、效果显著的架构方案统一了HOCVP中的两个关键问题,并有扎实的实验支持。 它以清晰、实用的方式推动了技术前沿。

要点总结

  1. 统一框架原则:当你面对两个相关但不同的子问题(如本例中的主体间和主体内保真度)时,不要用单独的修复方案来分别处理它们。 设计一个单一的架构组件(如模态-参考嵌入),让它能自然地通过构造同时处理两者。
  2. 通过注意力实现语义引导:要将强大外部模型(如MLLM)的知识注入生成过程,可以考虑使用交叉或自注意力层作为“整合点”。 这允许连续、细微的引导,而不破坏原始模型(如文本编码器)的核心可控性。
  3. 打标签,而非混合:当组合来自不同模态的特征(来自VAE的图像特征,来自MLLM的语义特征)时,不要只是简单地拼接或相加。 使用一个可学习的嵌入或位置标签来显式地区分它们的来源。 这让下游网络可以区别对待它们,并保持其独特性质。