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
derived from www.flickr.com/photos/jonathanmccabe/15647422780/in/faves...
exploring the #deepdream example github.com/google/deepdream
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.
/*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);
}