Papers
Topics
Authors
Recent
Search
2000 character limit reached

Object-Centric Generative Models Overview

Updated 13 June 2026
  • Object-centric generative models are probabilistic frameworks that decompose scenes into discrete object representations using structured latent factorization and specialized decoders.
  • They leverage mechanisms like slot attention, autoregressive priors, and diffusion-based conditioning to achieve interpretable reconstructions and compositional editing.
  • Applications include 3D scene generation, video synthesis, and robotics, emphasizing robust segmentation, occlusion handling, and object-level manipulation.

Object-centric generative models are probabilistic frameworks that explicitly factor visual, 3D, or spatiotemporal scenes into representations of discrete objects and their interactions. Unlike classic “holistic” models that encode the entire scene as a monolithic latent, object-centric approaches assign latent codes—often called “slots”—to individual entities, and define mechanisms for segmenting, generating, reasoning about, and manipulating these slots in both supervised and unsupervised settings. This structured decomposition is foundational for generalization, compositionality, interpretability, and many control and reasoning tasks in machine perception, graphics, and robotics.

1. Mathematical Principles of Object-Centric Generative Models

Formally, object-centric generative models posit a latent-variable architecture: xpθ(x{zk}),zkp(zk)\mathbf{x} \sim p_\theta(\mathbf{x} \mid \{z_k\}), \quad z_k \sim p(z_k) where {zk}k=1K\{z_k\}_{k=1}^K are object-centric latents (“slots”) representing K components, each typically encoding spatial or appearance information. Central factorization strategies include:

  • Spatial mixture models: The observed image (or volume) is decomposed as a normalized weighted sum of per-slot image or patch likelihoods, often realized via spatial Gaussian mixtures (Engelcke et al., 2019).
  • Structured latent factorization: Each zkz_k may be split into interpretable components (e.g. “what,” “where,” “depth,” “mask,” appearance), enabling explicit modeling of occlusion, amodal completion, and geometric transformations (Anciukevicius et al., 2020, Wu et al., 2022).
  • Autoregressive and compositional priors: The prior p(z1:K)p(z_{1:K}) is often designed to enable dependencies (e.g., via RNNs), enforcing non-overlapping masks or compositional rendering (Engelcke et al., 2019, Brady et al., 2023).

Inference leverages amortized variational encoders, often with sequential or parallel slot extraction (Slot Attention, Stick-Breaking, RNN-based), and is trained via the evidence lower bound (ELBO) or soft-constrained objectives (e.g. GECO) (Engelcke et al., 2019, Engelcke et al., 2020).

2. Reconstruction Bottlenecks and Inductive Bias

A critical insight from empirical investigation with models such as GENESIS is the identification of the reconstruction bottleneck principle. The per-object decoder, pθ(xkzkc)p_\theta(x_k \mid z^c_k), is deliberately restricted in capacity either by:

  • Latent dimensionality bottleneck: Limiting Dc=dim(zkc)D_c = \dim(z^c_k) upper-bounds the mutual information between slot codes and pixel output (Engelcke et al., 2020).
  • Architectural bottleneck: Using spatial broadcast decoders (SBDs), which mix spatial information minimally, limits each slot’s ability to model multiple objects or global structure.

If the per-slot decoder can reconstruct the entire image, slot specialization collapses, with all content assigned to one slot. If the bottleneck is excessive, individual slots underfit, degrading both reconstruction and segmentation. A "sweet spot" regime (e.g., Dc=4D_c = 4 to $8$ for DC-based decoders) yields both accurate decomposition and faithful image reconstruction. Tuning such bottlenecks, or using robust architectural bottlenecks, is thus essential for unsupervised object discovery (Engelcke et al., 2020).

3. Model Classes, Slot Parameterizations, and Compositionality

A. Mixture-based VAEs and Autoregressive Priors

  • GENESIS and related models (Engelcke et al., 2019, Engelcke et al., 2020) implement the generative process as autoregressive spatial Gaussian mixtures, enabling scene generation by sequentially sampling and compositing objects, backgrounds, and their relations.

B. Structured Latent VAEs

  • Factored latent VAEs (Anciukevicius et al., 2020) introduce interpretable slots per object: depth dkd_k, location k\ell_k, mask {zk}k=1K\{z_k\}_{k=1}^K0, and appearance {zk}k=1K\{z_k\}_{k=1}^K1. Scenes are rendered via depth-sorted alpha blending, enabling explicit modeling of occlusion, amodal shape inference, and per-object manipulations.

C. Slot Attention and Relational Graphs

  • Slot Attention (Akan, 29 Sep 2025, Wu et al., 2023, Jiang et al., 2023) and its extensions provide a competitive attention-based, permutation-invariant mechanism. Each slot attends over image or feature patches, and slots compete via softmax-normalized assignment.
  • Graph-based approaches encode object relationships or structure conditioning in attributed graphs or scene graphs (Sylvain et al., 2020, Butera et al., 2023), supporting structure-guided generation, layout control, and relational regularization.

D. Provable Identifiability

  • Under assumptions of compositionality (no pixel generated by more than one slot) and irreducibility (no slot can be split into independent subparts), it is possible to provably identify the ground-truth object slots given a diffeomorphic (invertible, compositional) inference model (Brady et al., 2023). This formalism guides regularization, decoder design, and architectural constraints to ensure true object-level disentanglement.

4. Slot-Conditioned High-Fidelity Generative Models

Recent advances focus on integrating high-capacity latent diffusion or adversarial modules with slot-based conditioning:

  • Diffusion-based slot models (SlotDiffusion (Wu et al., 2023), LSD (Jiang et al., 2023), SlotAdapt (Akan, 29 Sep 2025), Compositional Video Synthesis (Akan et al., 28 Jul 2025)):
    • Slot extraction via Slot Attention is followed by a frozen (or partially fine-tuned) Latent Diffusion Model (LDM) backbone.
    • Cross-attention injects slot codes into the U-Net at each layer, enabling per-object control, compositionality, and manipulations such as swapping, insertion, or deletion.
    • State-of-the-art segmentation, image/video generation, and compositional editing are achieved without object-level supervision.
    • Temporal slot tracking and Transformer aggregation (e.g. ISA+Transformer) extend this framework to videos, achieving temporally coherent object identity, controllable dynamics, and superior video FID/FVD (Akan, 29 Sep 2025, Akan et al., 28 Jul 2025).
    • Self-supervised attention alignment losses (SlotAdapt) further enforce correspondence between the encoder’s slot masks and the generative decoder’s attention (Akan, 29 Sep 2025).
  • GAN-based object-centric models (OC-GAN (Sylvain et al., 2020), ORGAN (Küchler et al., 2 Mar 2026)):
    • Instance-aware styling and scene-graph similarity modules (SGSM) regularize generation to respect input layouts and pairwise spatial relationships.
    • Cycle-consistent mapping between the image domain and explicit object lists enables object slot disentanglement, manipulation, permutation, and large-scale handling, even in low-contrast, high-object-count settings (Küchler et al., 2 Mar 2026).

5. Object-Centric Generative Modeling in 3D and Video

A. 3D Scene Understanding and Generation

  • Models such as ObPose (Wu et al., 2022) and DreamUp3D (Wu et al., 2024) combine object slots, 3D pose estimation (minimum-volume bounding box, point clouds), and neural field decoders (NeRF or GRAF) to simultaneously segment, reconstruct, and represent full 6-DoF pose of each object, from a single RGB-D input, without supervision.
  • Object-centric NeRF decomposition enables per-object editing, shape completion, swapping, or pose manipulation.
  • ROOTS (Chen et al., 2020) extends this to multi-view 3D scenes, using variational grouping, APP-based slot localization, and multi-level autoencoding.

B. Temporal and Video Generation

  • Models such as G-SWM (Lin et al., 2020), GATSBI (Min et al., 2021), and time-conditioned generative modeling (Gao et al., 2023) apply slot-based VAEs with structured stochasticity (context, state, attribute latents), hierarchical latents for multi-modal future prediction, and relational reasoning (GNNs).
  • Transformer-based slot dynamics, optionally conditioned on language (Villar-Corrales et al., 17 Feb 2025), provide controllable, interpretable video generation with compositional slot manipulation and forward prediction.
  • Gaussian process and time-aware slot attention disentangle object identity from view or temporal latents, enabling robust object permanence, occlusion reasoning, and novel-view synthesis without pose supervision (Gao et al., 2023).

6. Applications, Metrics, and Empirical Results

Model/Class Segmentation ARI Generation FID 3D Pose/Recon Compositional Editing Real-World Scaling
GENESIS/GENESIS-II 0.73–0.9 24.9–80.5 N/A moderate Limited (toy)
SlotDiffusion 68.4 (FG-ARI) 28–32 N/A strong Yes (COCO/VOC)
SlotAdapt/ISA+Transformer 41.4 (FG-ARI) 10.9 N/A state-of-the-art Yes (real images)
OC-GAN (layout-to-image) CA=60.4 28.3 N/A layout control Yes (COCO/VG)
ORGAN (cycle-GAN) F1~88% (Sprites) N/A N/A manipulations Yes (synthetic, Cells)
ObPose/DreamUp3D ARI-FG 0.96–0.99 N/A mIoU 0.75–0.97 3D object composition Yes (real RGB-D)

7. Theoretical Limitations and Future Directions

  • Bottleneck tuning is essential: excessive capacity per slot causes segmentation collapse; too little, underfitting (Engelcke et al., 2020).
  • Identifiability fundamentally depends on the compositionality and irreducibility of the rendering/inference architecture; violations (e.g. in part–whole, shading, occlusion, or transparency) challenge perfect slot-object correspondence (Brady et al., 2023).
  • Real-world scaling: Variable object complexity, texture, and non-local context demand per-slot adaptive capacity, additional inductive biases (motion, depth, geometry), and dynamic allocation (Engelcke et al., 2020, Akan, 29 Sep 2025).
  • Interactive and multimodal conditioning: Slot-to-token mapping opens the door to language-driven control, visual reasoning, planning, and causal intervention at an object level (Akan et al., 28 Jul 2025, Villar-Corrales et al., 17 Feb 2025).
  • Explicit 3D scene decomposition: Ongoing advances incorporate neural fields for per-object editing, shape completion, and fast per-object inference in robotics and AR (Wu et al., 2022, Wu et al., 2024).
  • New theoretical frameworks: Development of regularization criteria (e.g. compositional contrast), soft compositionality relaxations for realistic scenes, and permutation-invariance under occlusion remain active research topics (Brady et al., 2023).

Object-centric generative models are establishing a new paradigm at the intersection of machine perception, structured reasoning, and generative synthesis, achieving interpretable, manipulable, and generalizable representations of complex real-world scenes (Akan, 29 Sep 2025, Wu et al., 2023, Wu et al., 2024).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (18)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Object-Centric Generative Models.