This project is a simple implementation of a genetic algorithm to recreate an image using polygons.
For more information about genetic algorithms, see Genetic Algorithms.
This version is based on this paper by Sebastian Charmot.
The first version of the algorithme is based on the following steps:
- Generate a random population of polygons
- Compute the fitness of each individual
- Select the best individual
- Apply crossover between the best individual and the population (with stocking the previous best individual)
- Apply mutation to the population (except the previous best individual), which consists in adding a random polygon to all individuals
- Repeat from step 2, x times to upgrade the image
The result of this different steps are shown below.
image | 485 generations | 1000 generations |
---|---|---|
image | 500 generations |
---|---|
But After the 1000th generation, the algorithm has a low probability to improve the image anymore, due to the size of the polygons. The algorithm is stuck in a local minimum.
The main problem of the first version is the precision of the polygons. As the polygons are represented by a list of points, the more points are far from others, less the polygon is precies. To solve this problem, I decide to search on progressively reduce the size of the polygons. So the algorithm is based on the following steps:
- Generate a random population of polygons
- Compute the fitness of each individual
- Select the best individual
- Equilibrate the limit size of the polygons, when the process is stuck (the fitness is not increasing), we will reduce the limit size of the polygons and when the process is not stuck, we will increase the limit size of the polygons.
- Apply crossover between the best individual and the population (with stocking the previous best individuals)
- Apply mutation to the population (except the previous best individuals), which consists in adding a random polygon to all individuals
- Repeat from step 2, x times to upgrade the image
image | 200 generations | 1000 generations | 2000 generations | 3000 generations | 4000 generations | 5000 generations |
---|---|---|---|---|---|---|
In comparison with the first version:
First version | Second version |
---|---|
And for the result on 5000 generations:
Objectif | Result |
---|---|
With this version, the algorithm is able to improve the image without being stuck. Now, the algorithm is able to recreate the image with a precision of 1 pixel.
Monalisa | Logo | |
---|---|---|
Number of step | 10000 | 10000 |
Result |
Tip
You can convert the image in mp4 via: ffmpeg -framerate 60 -pattern_type glob -i 'step/generation*.png' -c:v libx264 -pix_fmt yuv422p output-60fps.mp4