I have been trying to blur an image using the PIL.
from what I know i need to copy the image, and then change every pixel to the average of the pixels surrounding him, from the original picture. so I didn't get really far, i'm using python 3.3x
from PIL import Image
img = Image.open("source")
im = Image.copy(img)
I know how to use putpixe, and get a pixel's data, but I can't figure out how to get the average of the pixels around.
Thanks in advance for the help!