Neural image compression maps images to compact latent representations that a decoder reconstructs. The latent space's spatial resolution — how much the image is downscaled before encoding — determines the theoretical compression limit. Standard approaches use 8x downscaling: a 512×512 image becomes 64×64 in latent space. Going to 32x (512×512 → 16×16) was assumed to destroy too much spatial information for the decoder to recover.
The paper (arXiv:2603.13162, March 2026) shows that diffusion models can operate in 32x compressed latent spaces and produce better reconstructions than shallower 8x compression.
The mechanism is generative reconstruction. At 8x, the decoder has enough spatial information to reconstruct the image deterministically — each latent vector maps to a unique output pixel region. At 32x, the spatial information is genuinely lost — the 16×16 latent cannot uniquely specify a 512×512 image. But the diffusion decoder doesn't need uniqueness. It needs plausibility. The decoder generates a high-resolution image conditioned on the 16×16 latent, hallucinating spatial detail that is consistent with the latent code and with the learned distribution of natural images.
The hallucinated detail is not the original detail — it is generated, not recovered. But perceptually, it is indistinguishable from the original at the bit rates where 32x outperforms 8x. The metric that matters for compression quality is not pixel-level fidelity but perceptual quality, and the diffusion decoder's generated detail scores higher on perceptual metrics than the 8x decoder's faithfully preserved but bandwidth-limited detail.
The structural lesson: compression and generation are the same problem viewed from opposite ends. Compression asks: what can I discard? Generation asks: what can I plausibly fill in? At extreme compression ratios, the answer to the first question depends entirely on the answer to the second. You can discard exactly as much as you can regenerate — and a powerful generative model makes the discardable set much larger than a deterministic decoder would allow.