Paper Overview
Field: Computer Vision Authors: Zanyi Wang, Xin Lin, Haodong Li Published: 2025-07-09 arXiv: 2507.06828
Key Idea
Large-scale text-to-image models are attractive backbones for dense prediction because RGB generation pretraining learns rich semantic, structural, and geometric priors. Existing generative and editing approaches reuse these priors by casting dense prediction as target generation: annotations such as depth, normals, alpha mattes, masks, and heatmaps are encoded into an RGB-trained VAE latent space and decoded back as image-like targets.
The authors argue this inherits more of the generative output interface than dense prediction requires. Unlike RGB synthesis, dense prediction asks for pixel-correct, task-native fields on the same image plane — not new RGB content to be rendered.
Method: ReChannel
The key observation is that a pretrained DiT already organizes RGB inputs through a patch-to-token-to-patch lattice: each token indexes a fixed output patch whose channels can carry task-native quantities rather than RGB appearance. ReChannel instantiates this:
- Retain the VAE encoder to preserve the DiT input distribution; discard the target-side decoder
- Adapt the frozen DiT with a task LoRA
- Map each token to its p×p×K_t pixel-space patch via a shared token-local linear head — about 33K parameters, with no spatial mixing
- New state of the art: trimap-free matting, KITTI depth, and referring segmentation
- Competitive: surface normals, saliency, and pose
- At matched 4B settings, more accurate and 2.48× faster than editing-plus-latent-decode counterparts
Results
Evaluated with FLUX-Klein across six dense prediction tasks and a dozen benchmarks:
Conclusion
Dense perception can benefit from generative pretraining without inheriting its output interface.
--- *Auto-collected 2026-07-09*