23 releases

0.10.7 Dec 24, 2022
0.10.6 May 22, 2022
0.10.5 Feb 8, 2022
0.10.4 Jul 28, 2021
0.4.0 Dec 30, 2018

#513 in Algorithms

Download history 16/week @ 2024-02-19 19/week @ 2024-02-26 13/week @ 2024-03-04 21/week @ 2024-03-11 18/week @ 2024-03-18 10/week @ 2024-03-25

65 downloads per month
Used in 3 crates

MIT license

77KB
2K SLoC

Wave Function Collapse

Version Documentation

Library for generating grids of values which are similar to a specified grid. A typical use case for this is procedurally-generated images, though it generalizes to any grid of values.

Similar is defined as both:

  • strictly locally similar: every small (typically 3x3) pattern in the output image appears somewhere in the input image.
  • loosely globally similar: the distribution of small patterns in the output image is roughly the same as the distribution of small patterns in the input image.

Grids are populated using a constraint solver. For each cell, we store a probability distribution representing how likely that cell is to contain the top-left corner of possible pattern. Initially the probability of each pattern is based on its frequency in the sample image. Then, it repeatedly identifies the cell whose entropy is the lowest, and decides (randomly, weighted by probability distribution) which pattern to assign to the cell. This assignment may remove some candidate patterns from neighbouring cells, so it then updates candidate cells. This process of choosing a cell, assigning it a pattern, and propagating incompatible neighbours continues until either the entire grid is populated with values, or all the candidates are removed from a cell.

Example of Similar Images

Flowers Input -> Flowers Output1 Flowers Output2

For more image examples, see wfc-image.

Animation

This shows the process of generating an image based on the sample flowers image above. The colour of each pixel is the average of all colours which could be assigned to it, weighted by probability.

Flowers Animation

Dependencies

~1.8–2.6MB
~42K SLoC