Image Division Raster

hello guys,

I am interested in creating a similar effect like this:

I am interested in recreating this irregular grid effect that follows the brightness of different areas of the image.
any advice where to start, an algorithm or tutorial ?
thanx

Hi @jeykech,

Starting points …

Cheers
— mnse

1 Like

Hi @mnse ,

Thanks for your answer, I am familiar with quad tress but what about the initial seeding ?

Hi @jeykech,

Not clear what you exactly mean…
If I wanted to recreate the above I would do the following as a starting point …

  • Choose a picture
  • Calculate the average brightness
  • Subdivide and compare the single averages against threshold. If under threshold discard.
  • Otherwise repeat the process with subdivisions.
  • Consider the max depth level to not let the smallest quads to small.
  • For the visual representation it’s weather white on black or black on while depending of the average brightness compared to another threshold and size of round rect depending on the variance.
  • Refine to get a good result…

Cheers
— mnse

1 Like

@mnse I’ll give it a try, thanx !