Created
May 17, 2012 10:34
-
-
Save sport4minus/2718040 to your computer and use it in GitHub Desktop.
Animated Processing Image Blur Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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