🤖 AI Summary
Existing automatic floorplan generation methods typically operate in raster space and rely on post-hoc vectorization, leading to structural inconsistencies and hindering end-to-end training. This work proposes the first end-to-end vector-based floorplan generation model, which employs a two-level VQ-VAE to construct a hierarchical codebook that separately captures global layout and local geometry. A unified CodeTree representation encodes both room bounding boxes and polygon-level semantics. Leveraging an autoregressive Transformer, the model directly generates diverse, topologically valid designs from boundary inputs without requiring explicit topological or dimensional priors, aligning closely with human design workflows. It achieves state-of-the-art performance on both the RPLAN (FID=1.84, MSE=2.06) and LIFULL datasets, significantly improving generation quality and practical utility.
📝 Abstract
Automated floorplan generation aims to improve design quality, architectural efficiency, and sustainability by jointly modeling global spatial organization and precise geometric detail. However, existing approaches operate in raster space and rely on post hoc vectorization, which introduces structural inconsistencies and hinders end-to-end learning. Motivated by compositional spatial reasoning, we propose TLC-Plan, a hierarchical generative model that directly synthesizes vector floorplans from input boundaries, aligning with human architectural workflows based on modular and reusable patterns. TLC-Plan employs a two-level VQ-VAE to encode global layouts as semantically labeled room bounding boxes and to refine local geometries using polygon-level codes. This hierarchy is unified in a CodeTree representation, while an autoregressive transformer samples codes conditioned on the boundary to generate diverse and topologically valid designs, without requiring explicit room topology or dimensional priors. Extensive experiments show state-of-the-art performance on RPLAN dataset (FID = 1.84, MSE = 2.06) and leading results on LIFULL dataset. The proposed framework advances constraint-aware and scalable vector floorplan generation for real-world architectural applications. Source code and trained models are released at https://github.com/rosolose/TLC-PLAN.