Skip to content

C++ implementation of an Activator-Inhibitor Cellular Automata, used for generating images that reflect many natural forming patterns, such as zebra skin.

Notifications You must be signed in to change notification settings

ahnilica/Animal-Skin-Pattern-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Animal-Skin-Pattern-Generator

C++ implementation of an Activator-Inhibitor Cellular Automata, used for generating images that reflect many natural forming patterns, such as zebra skin.

This process starts with randomly setting a grid of "cells" to each have a value of either 0 or 1. Each cell is randomly picked and updated based on a rule that will either change or not change the value of the cell. When the grid converges to a stable state or the max number of steps has been reached, a PGM image of the grid is generated. Distance Formula Cell State Update Formua

Examples of Generated Images:

Crazy Pattern Dalmatian Dots Other

Step 1) Compile CA.cpp using g++ (no other libraries needed)

Step 2) Execute script. Using no command line args, parameter values are pre-set to an interesting pattern. To input your own custom parameters, include them as command line arguments.

USAGE: double h, double J1, double J2, int R1, int R2, (optional int maxSteps) string outputFilename

Example Parameter Settings:

Dalmatian: 2 1 -1 4 9

Crazy Pattern: 1.5 0.5 -0.5 10 14

Blobs: 1.5 0.5 -0.5 10 15

About

C++ implementation of an Activator-Inhibitor Cellular Automata, used for generating images that reflect many natural forming patterns, such as zebra skin.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages