This is a photo I took back home. I wanted to pick a photo that I had taken myself and found this photo. I found the photo to be fairly simple and something that I can easily transfer as a few simple shapes and lines.
So, I first used the paper we were given to create a sketch of the picture. I was able to lightly trace the shapes by placing the paper over the screen. Using that, I was able to mark the basic shapes, like the main pole as a trapezoid, or as a quadrilateral, and the lines and rectangles. I noted the coordinates as I wrote the code. I think if I spent more time, my code in processing would have been better in realizing the original photo. I was not able to get the texture of the wood or all the telephone lines into the image.
void setup() {
size(1000, 700);
}
void draw() {
// Your drawing code goes here
background(255);
fill(222);
strokeWeight(0);
beginShape(QUAD);
vertex(460, 700);
vertex(820, 700);
vertex(700, 240);
vertex(620, 325);
endShape(CLOSE);
fill(0);
strokeWeight(0);
beginShape(QUAD);
vertex(375, 130);
vertex(395, 110);
vertex(610, 270);
vertex(590, 290);
endShape(CLOSE);
beginShape(QUAD);
vertex(710, 280);
vertex(715, 305);
vertex(790, 350);
vertex(800, 340);
endShape(CLOSE);
beginShape(QUAD);
vertex(710, 340);
vertex(715, 380);
vertex(900, 555);
vertex(920, 515);
endShape(CLOSE);
beginShape(QUAD);
vertex(650, 230);
vertex(630, 250);
vertex(570, 190);
vertex(590, 170);
endShape(CLOSE);
strokeWeight(9);
line(0, 360, 440, 480);
strokeWeight(9);
line(0, 450, 360, 600);
strokeWeight(9);
line(720, 410, 1000, 100);
strokeWeight(9);
line(720, 510, 1000, 200);
beginShape();
vertex(220, 700);
vertex(280, 700);
vertex(920, 0);
vertex(860, 0);
vertex(440, 440);
vertex(450, 450);
endShape(CLOSE);
}