Skip to content

Instantly share code, notes, and snippets.

@sport4minus
Created May 17, 2012 10:34
Show Gist options
  • Save sport4minus/2718040 to your computer and use it in GitHub Desktop.
Save sport4minus/2718040 to your computer and use it in GitHub Desktop.
Animated Processing Image Blur Demo
PImage myImage;
void setup() {
size(400,300);
myImage = loadImage("image.jpg");
}
void draw() {
for(int y = 0; y < myImage.height; y++) {
for (int x = 0; x < myImage.width; x++ ) {
float r = 0;
float g = 0;
float b = 0;
for(int i = 0; i < 9 ; i++) {
int xoffs = (i%3)-1;
int yoffs = (i/3)-1;
color col = myImage.get(x + xoffs, y + yoffs);
r += red(col);
g += green(col);
b += blue(col);
}
r /= 9;
g /= 9;
b /= 9;
color newColor = color(r,g,b);
myImage.set(x,y,newColor);
}
}
image(myImage,0,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment