Associative Trails

Drawing Recognition. Integrating Machine Learning Systems into Architectural Design Workflows (2020)

Notes on a 2020 paper by Lachlan Brown, Michael Yip, Nicole Gardner, M. Hank Haeusler Haeusler, Nariddh Khan, Yannis Zavoleas, and Christina Ramos

Development of a convolutional neural network for the recognition and labelling of rooms within floor plan images of multi-residential apartments. Trains on 454 floor plan images sorting into 6 categories - claims the results were "satisfactory".

Read the paper: 2020 eCAADE conference, ResearchGate, PDF.

 machine-learning  bim  cad  construction

  • Development of a CNN for the recognition and labelling of rooms within floor plan images of multi-residential apartments.
  • Meeting a need to improve solar analysis compliance checking according to the local building code. Only living rooms and balconies need to be assessed, but these rooms were not defined in the BIM data.
  • Input a floor plan, output an instance segmentation function where each room is classified and the region it occupies is masked.
  • Using Action Design Research methodology - Investigate, act, observe.
  • Contains a good review of other papers in the field
  • Uses Python, TensorFlow, Keras, Visual Studio Code IDE.
  • Data set of 454 floor plan images - CAD drawings, marketing images and hand-drawn floor plans. Compiling and classifying the training data proved to be the most extensive and time-consuming part of the project.
  • Labels help in JSON files that defined the regions of rooms.
  • 6 room classes used - Bedroom, Bathroom (including ensuite), Living room, Dining room, Kitchen, Balcony
  • Labelled using VGG image annotator
  • Instance segmentation - the classification of multiple class regions within a single image and produces a mask the defines the space the classes occupy within the image.
  • Used 1000 epochs!
  • Does not publish the results. Claims the results were “Satisfactory”, and “beginning to develop a fundamental understanding of design”.
  • All training data came from one single architectural practise - did the CNN learn their “house style”?
 Jump to top