View allAll Photos Tagged generative

I have been playing with AI and generative art for a few months now and I really start wondering what is the future of photography.

 

But one thing is certain: AI is going to change everything in almost all domains.

Made with processing.

A simple algorithm positioning 3D cubes randomly on space and rendered with ambient occlusion

Generative art made with Adobe Flash. High resolution available for Giclée print.

 

Credits:

the color matrix of these image was used

www.flickr.com/photos/cluke111/3113573089/

generative design - compositions

based on geometric forms and small patterns

Generative pattern

Generative art made with Adobe Flash. High resolution available for Giclée print.

generative character - collage

Generative pattern

drawing on canvas with trear physics tendrils using texones creative computing framework which is based on processing

I've been following Nervous System on Flickr for some time now - they make beautiful generatively designed products. n-e-r-v-o-u-s.com/shop/

 

Sophy and I spotted their work at the SF MoMA and picked up this Subdivision Cuff for her.

piece delivered to gallery today, better photos soon....

/*processingworkshop example by philip whitfield and martin fuchs, hyperwerk 08*/

 

float angle = 170;

float leng = 90;

 

PVector last;

float lastAngle = 0;

 

void setup(){

size(800, 650);

last = new PVector(width/2,height/2);

smooth();

background(255);

}

 

void draw(){

PVector dir;

stroke(0,80);

float pre = 1;

if(frameCount % 9 == 0 || frameCount % 7 == 0 || frameCount % 2 == 0){

pre = -1;

}

 

lastAngle += angle*pre;

dir = new PVector(sin(radians(lastAngle))*leng, cos(radians(lastAngle))*leng);

 

line(last.x, last.y, last.x+dir.x, last.y+dir.y);

last.add(dir);

}

 

void mouseClicked(){

last = new PVector(mouseX,mouseY);

}

 

void keyReleased(){

if(key == ' ')

save(day()+"_"+month()+"_"+year()+"__"+minute()+"_"+second()+".png");

if(key == 'c')

background(255);

}

 

1 2 ••• 9 10 12 14 15 ••• 79 80