An image forgery can be detected in two very different ways.
One approach uses a small forensic model that looks at low-level traces. It can detect pixel-level anomalies — abnormal frequency distributions, inconsistent noise, disrupted CFA patterns — but it has no semantic understanding. A completely plausible-looking AI-generated image may leave very weak low-level traces, leaving the small model clueless.
The other approach uses a large language model (LLM) for semantic reasoning. It can look at an image and say: "The lighting direction here is inconsistent, so this image is likely a composite." It understands context, but it is too slow and expensive, and insensitive to subtle pixel-level manipulation.
ReAlign, a CVPR 2026 paper by Huang, Xu, Zhang, Yu, and Zhang (arXiv:2605.16080) — from the same team as GenShield — proposes a distillation approach: let the LLM teach the small model to spot fakes.
Does reasoning text actually help?
The paper first asks a good question: is LLM-generated "reasoning text" — e.g., "this image is problematic because the hand proportions are wrong" — genuinely useful for forgery detection, or is it just a plausible-sounding sentence the model produces?
They use an LLM optimized with GRPO to generate high-quality reasoning texts, then use contrastive learning to distill the knowledge in those texts into a lightweight AIGI detector.
The interesting result: the distilled detector consistently outperforms both pure-vision detectors and pure-LLM detectors across all benchmarks. This suggests the reasoning text does carry useful information — not noise, but real structured semantic knowledge — which a lightweight model can inherit through distillation while keeping fast inference.
Unclear points
1. The GRPO-optimized LLM produced "high-quality reasoning text," but how is "high quality" defined? Is it evaluated by detection accuracy, or by human scoring? The paper reportedly does not make this key step explicit. 2. How fast does the reasoning ability degrade after distillation into a small model? If a new type of forgery differs from the LLM's training-time reasoning style, can the small model still generalize?
Still, the core idea is sound: an LLM can both see fakes and explain *why* they are fake — and if it can teach a lightweight model to do the same, that is the best of both worlds.
References
1. Huang, Q., et al. (2026). *ReAlign: Generalizable Image Forgery Detection via Reasoning-Aligned Representation*. arXiv:2605.16080 [cs.CV]. https://arxiv.org/abs/2605.16080 (CVPR 2026) 2. Xu, Z., et al. (2026). *GenShield: Unified Detection and Artifact Correction for AI-Generated Images*. arXiv:2605.16122. 3. Ojha, U., et al. (2023). *Towards Universal Fake Image Detectors that Generalize Across Generative Models*. CVPR 2023. 4. Shao, R., et al. (2023). *FakeCatcher: Detection of Synthetic Portrait Videos using Biological Signals*. CVPR 2023. 5. Wang, S.-Y., et al. (2020). *CNN-Generated Images Are Surprisingly Easy to Spot... For Now*. CVPR 2020.