// Get a picture from the location given and return // a 2D arry of RGB pixel colors color [][] getPicture(String location) { PImage p; int i; color pix[][]; p = loadImage(location); pix = new color [p.width][p.height]; i = 0; for (int y=0; y