//Shipra Gupta //Processing, Image5 //Write your own image filter by modifying the values of pixels[]. size(401, 300); PImage tower; tower = loadImage("P1013001.jpg"); int count = tower.width * tower.height; tower.loadPixels(); loadPixels(); for (int i = 0; i < count; i ++) { pixels[i] = tower.pixels[i/3]; } updatePixels();