Karen Kim- Project- 01

karenface

function setup() {
    createCanvas(500, 500);
    background(201,191,182);
}

function draw() {
	//hair base
	noStroke()
	fill(143, 97, 61);
	ellipse(250, 250, 350, 400);
	//face
	fill(209, 174, 148);
	ellipse(250, 200, 300, 280)
    //hair coloring
	fill(179, 122, 77);
	rotate(-75);
	ellipse(320, -20, 280, 100);
	//eyes
	fill(39, 25, 12);
	noFill()
	stroke(0);
	arc(250, 100, 45, 40, -PI, 0);
	arc(350, 100, 45, 40, -PI, 0);
	//mouth
	fill(255, 153, 153);
	stroke(0);
	arc(350, 150, 80, 80, 0, PI);
	//neck
	noStroke()
	fill(209, 174, 148);
    rect(280, 200, 100, 60);
    //shirt
    fill(230, 230, 255);
    rect(170, 260, 320, 280, 500, 500, 500, 500);
    //cheeks
    fill(255, 230, 230);
    ellipse(200, 150, 30);
    ellipse(430, 120, 30);
    //necklace
    fill(0, 0, 0);
    rect(280, 230, 100, 15);
    //eye crinkle
    noFill()
    rotate(-25);
    stroke(10);
    triangle(380, 10, 450, 10, 400, 20);
    triangle(380, 20, 450, 20, 400, 30);
}

Aside from basic facial features, I tried to graphically represent in the most basic way some characteristics that people have pointed out about me, such as my cheeks or the crinkles next to my eyes when I smile.

karen-LookingOutwards-1

A New American Picture by Doug Rickard is a project in which he aimed to bridge the gap between art and technology. More specifically, he utilized Google street view images as inspiration, taking images from Google Maps and then digitally manipulating them to create his final project. Ultimately, Rickard was seeking to make social commentary on the state of social classes in America. In his series of photographs, he chose specific locations across America that were “abandoned,” areas with high unemployment rates or low amounts of any type of opportunities. In order to create these manipulated photographs, Rickard first carefully examined the images from Google Maps, composed images on his personal screen, then photographed again.

The algorithms and “code” that already exists within Google Street View already composed most of the photograph, but he manipulated the images further in order to match his vision, purposefully making images low resolution or containing blur. He employed many artistic concepts when manipulating the images existing on the internet, from the resolution of the image, darkness, shadows, etc. Rickard aimed to give his photographs a sense of anonymity at the end, as the subjects in the photos that he selects are often isolated or in desolate locations, trying to develop this idea that the social structure in America is becoming increasingly separated and stratified.

Although this project did not require extensive creation of a custom software or script, or a high level of “technique,” this project sticks out to me because the way Rickard effectively utilized Google Maps, a source that is not usually considered artistic, in order to create his final product.

http://www.dougrickard.com/a-new-american-picture/