So what I would like to achieve is this:
- User submits Image 1 - this image is then broken down into X by X sized blocks
- User submits Image 2 - then the program/algorithm takes all the blocks generated in the above step, and reconstructs Image 2 using them
Example Image 2:
Example Output:
What I would like to know is, are there any libraries, or some easy way of doing this (ideally in Javascript, as I don't know any other languages) - or even some standalone software tool to accomplish this?
One solution you could think of is reducing each X by X square to one colour (e.g. by averaging) and then using the algorithm presented in the linked challenge.
– flawr May 18 '17 at 22:09