SteerFlow: Steering Rectified Flows for Faithful Inversion-Based Image Editing

TL;DR

SteerFlow introduces fixed-point and trajectory interpolation techniques to improve faithful inversion-based image editing, outperforming existing methods in source preservation.

cs.CV 🔴 Advanced 2026-04-02 39 views
Thinh Dao Zhen Wang Kien T. Pham Long Chen
image editing flow models inverse inference trajectory control deep learning

Key Findings

Methodology

SteerFlow combines an Amortized Fixed-Point Solver (AFPS) and Trajectory Interpolation (TI). AFPS ensures a smooth, straightened forward trajectory by implicitly solving fixed points, reducing inversion errors. TI dynamically blends target editing and source reconstruction velocities during the backward process, maintaining trajectory anchoring. An adaptive masking mechanism, leveraging concept-guided segmentation and velocity differences, further localizes edits and preserves backgrounds. The framework is model-agnostic, with theoretical guarantees on source fidelity, validated through extensive experiments on FLUX.1-dev and Stable Diffusion 3.5 Medium, outperforming state-of-the-art methods.

Key Results

  • On PIE-Bench, SteerFlow ranks highest in source preservation and target alignment, with DinoDist reduced to 0.015, LPIPS to 0.045, and background SSIM reaching 0.92, significantly surpassing baselines like UniEdit and FireFlow.
  • In multi-turn editing tests, the method maintains low drift, with source deviation remaining minimal across successive edits, demonstrating robustness in iterative scenarios.
  • Ablation studies confirm that AFPS reduces inversion error and trajectory interpolation effectively mitigates divergence, leading to consistent improvements in detail retention and structural fidelity.

Significance

This work provides a theoretically grounded, architecture-agnostic framework for high-fidelity, controllable image editing via flow models. It addresses longstanding issues of error accumulation and trajectory divergence, enabling reliable multi-step edits. Its ability to preserve source structure while aligning with target prompts opens new avenues for personalized content creation, virtual environments, and interactive editing tools, bridging the gap between research and practical applications.

Technical Contribution

The paper introduces a novel fixed-point solver that implicitly straightens the forward trajectory, reducing inversion errors. It also proposes a trajectory interpolation strategy that adaptively blends velocities, with a formal error bound analysis. The adaptive masking mechanism further localizes edits spatially, preventing leakage. These innovations collectively enhance the stability, control, and fidelity of inversion-based image editing, expanding the capabilities of flow models beyond generation to precise editing tasks.

Novelty

This is the first work to embed implicit fixed-point iteration within flow-based inversion, combined with adaptive velocity blending for trajectory control. Unlike heuristic feature injection or truncated inversion, SteerFlow offers a rigorous, theoretically supported approach that guarantees source fidelity. Its adaptive masking based on velocity differences is a novel concept for spatially constrained editing, setting a new standard in flow model-based editing frameworks.

Limitations

  • Despite improvements, the method may still struggle with highly complex backgrounds or extreme edits, where subtle details are lost or artifacts appear. Multi-turn editing can accumulate small errors over many steps.
  • Computational overhead remains significant, especially at high resolutions, due to multiple NFEs required by fixed-point iterations and trajectory computations.
  • Dependence on concept-guided segmentation limits generalization to unseen concepts or domains, requiring further robustness enhancements.

Future Work

Future research will focus on optimizing fixed-point solvers for efficiency, integrating multi-modal cues for richer semantic control, and extending multi-turn editing with error correction mechanisms. Developing lightweight variants and improving generalization across diverse concepts will further bridge the gap toward real-world deployment.

AI Executive Summary

Flow-based generative models have revolutionized image synthesis, enabling high-quality, training-free, text-guided editing by inverting images into latent noise and regenerating under new prompts. However, existing inversion methods face critical challenges: higher-order solvers improve accuracy but increase computational cost; truncated inversion and feature injection heuristics often compromise source fidelity and transferability. These limitations hinder practical deployment, especially in multi-step editing scenarios demanding high structural preservation.

This paper introduces SteerFlow, a novel, theoretically grounded framework that addresses these issues through two key innovations. The Amortized Fixed-Point Solver (AFPS) in the forward process implicitly straightens the trajectory by enforcing velocity consistency across steps, significantly reducing inversion errors. During the backward process, Trajectory Interpolation (TI) adaptively blends target and source velocities, anchoring the editing path to the source image and preventing drift. An adaptive masking mechanism, leveraging concept-guided segmentation and velocity differences, spatially constrains edits, preserving backgrounds and reducing leakage.

Extensive experiments on PIE-Bench, using datasets like FLUX.1-dev and Stable Diffusion 3.5 Medium, demonstrate that SteerFlow consistently outperforms existing methods in source fidelity, target alignment, and multi-turn editing stability. Quantitative metrics such as DinoDist, LPIPS, and CLIP scores show significant improvements, validating the theoretical error bounds established in the paper. The approach's model-agnostic nature and strong guarantees make it a versatile tool for high-fidelity, controllable image editing.

Overall, SteerFlow advances the state-of-the-art in flow-based image editing, bridging the gap between theoretical rigor and practical robustness. Its ability to maintain source structure across multiple editing steps opens new possibilities for personalized content creation, virtual reality, and interactive media. Future work will focus on efficiency improvements, multi-modal integration, and broader concept generalization, aiming to make high-quality, faithful editing accessible in real-world applications.

Deep Dive

Abstract

Recent advances in flow-based generative models have enabled training-free, text-guided image editing by inverting an image into its latent noise and regenerating it under a new target conditional guidance. However, existing methods struggle to preserve source fidelity: higher-order solvers incur additional model inferences, truncated inversion constrains editability, and feature injection methods lack architectural transferability. To address these limitations, we propose SteerFlow, a model-agnostic editing framework with strong theoretical guarantees on source fidelity. In the forward process, we introduce an Amortized Fixed-Point Solver that implicitly straightens the forward trajectory by enforcing velocity consistency across consecutive timesteps, yielding a high-fidelity inverted latent. In the backward process, we introduce Trajectory Interpolation, which adaptively blends target-editing and source-reconstruction velocities to keep the editing trajectory anchored to the source. To further improve background preservation, we introduce an Adaptive Masking mechanism that spatially constrains the editing signal with concept-guided segmentation and source-target velocity differences. Extensive experiments on FLUX.1-dev and Stable Diffusion 3.5 Medium demonstrate that SteerFlow consistently achieves better editing quality than existing methods. Finally, we show that SteerFlow extends naturally to a complex multi-turn editing paradigm without accumulating drift.

cs.CV