Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.4 KB

File metadata and controls

65 lines (36 loc) · 1.4 KB

Welcome to this Genetic algorithm 👋

We will try to recreate an image with rectangles.

The resulting images will be created in the folder bestIndividus.

Example

generation 0 :

demo

generation 100 :

demo

generation 600 :

demo

Installation

# Clone the project :
git clone https://github.com/samuel3105/Python-genetic-algorithm_Rectangle-art-portrait.git
cd ./Python-genetic-algorithm_Rectangle-art-portrait

python3 imageGenetic.py

Documentation

Use args to change defaults settings

  • --N_RECTS = int

    default = 50

  • --CANVAS_SIZE = int

    default = 100

  • --POP_SIZE = int

    default = 100

  • --PROB_RECT_RESET = float

    default = 0.01

  • --INPUT_FILE = string

    default = "original.jpg"

Example

python3 imageGenetic.py --N_RECTS 20 --INPUT_FILE myFile.jpg
python3 imageGenetic.py --CANVAS_SIZE 150 --INPUT_FILE myFile.jpg --POP_SIZE 150