Earlier quoted context omitted.
This will be abstract, but you seem to know your abstract algebra -- is it possible to do this kind of thing with graphs? It should be, right? And we all know code can be constructed with graphs, so… voila, you can generate code, no?
What do you mean by "code can be constructed with graphs"?
Show HN: Wave function collapse algorithm
101–110 of 127 posts
Re: Show HN: Wave function collapse algorithm
#102Is that the idea? The description wasn't completely clear to me.
Re: Show HN: Wave function collapse algorithm
#103Fantastic stuff. I love it! As with most meachine learning stuff and these very cool ideas (of which I am very hazy on, esp their categorizations) I immediately want to use it for our lab's brain work. We have a LOT of 3-D images (per voxel is ~200nmx200nmx~600nm for a lot of 1028x1028 .tiff images all stitched together) and would love to feed these images BACKWARDS into this. IE we have the 'far field', and we want…
Re: Show HN: Wave function collapse algorithm
#104Re: Show HN: Wave function collapse algorithm
#105Re: Show HN: Wave function collapse algorithm
#106Earlier quoted context omitted.
Just to make sure I understand, if I were to use 1D WFC with 1xN tiles, would it be the same as an (N-1)th order Markov chain? Or would it be a 1st-order Markov chain with (N-1) simultaneous outputs?
If you use overlapping model (there are 2 models in the repo) with 1xN patterns, it would be a the same as (N-1)th order Markov chain.
Re: Show HN: Wave function collapse algorithm
#107Re: Show HN: Wave function collapse algorithm
#108As I understand it: this treats image generation as constraint satisfaction. The constraints are that each NxN patch appears in the source image. The satisfaction method is arc consistency https://en.wikipedia.org/wiki/AC-3_algorithm , except, when that settles down prematurely, pick the least-constrained patch and make a random valid choice, then continue. (If this leads to getting stuck, then give up instead of bac…
Re: Show HN: Wave function collapse algorithm
#109Re: Show HN: Wave function collapse algorithm
#110Earlier quoted context omitted.
Thanks! Efros' and Leung's method doesn't satisfy the (C1) condition. The closest previous work is Paul Merrel's model synthesis. WFC and texture synthesis serve similar purposes: they produce images similar to the input image. However, the definition of what is "similar" is different in each case. If you have a high def input with noise (like realistic rocks and clouds) then you really want to to use texture synthes…
Thanks for the reply! So what I'm really after is a way to iteratively "perturb" the sample in such a way that the resulting texture will smoothly reflect those changes. Take a look at this rough illustration: Op-Art Texture Synthesis http://imgur.com/a/1IKN3 You mentioned rotation and mirroring type bitmap ops in your algorithm. But how do we precisely apply a series of dynamic filters to the input to "evolve" the p…