TL;DR
Image super-resolution (enlarging low-resolution images) using generative models often creates fake details instead of faithfully restoring real ones. ASASR (Adversarial Sobolev Alignment for Super Resolution) fixes this by aligning the noise model to match natural image frequency patterns and using an adversarial network to distinguish hallucinations from genuine details.
✦ Why It Matters
Engineers can now build super-resolution systems that preserve faithful image details rather than hallucinating plausible-looking but incorrect content.
Key Takeaways
Full Summary
Image super-resolution aims to reconstruct high-resolution images from low-resolution inputs. Current generative models, which learn from data distributions, often prioritize perceptual quality over accuracy, introducing hallucinated details that don't exist in the original.
The core problem is spectral misalignment: the noise used during training (isotropic Gaussian noise with uniform frequency distribution) doesn't match how real images naturally decay across frequencies. ASASR addresses this by reformulating the generative process using Sobolev geometry (a mathematical framework measuring smoothness), explicitly coloring the noise to mirror natural spectral decay patterns.
The method integrates a parametric adversary grounded in the Riesz Representation Theorem, which generates worst-case failure examples to guide optimization toward plausible reconstructions. Extensive evaluations demonstrate ASASR outperforms leading generative baselines in preserving spectral consistency and structural fidelity while mitigating artifacts.
Related