J-Filters II (#64)
Jonathan Frech
Playing around with pygame and image manipulation, I created another set of filters. My previous filters can be found here.
For demonstration purposes I used an image from my post Stacking Stones.

This is a simple blur filter. It takes the average of pixel attached to one another.

This filter changes the color depth. A usual image has color values from 0 to 255 on red, green and blue. The filter changes those values to 0 to 8.

Mix-up repositions the pixels from their original position. So it creates a mixed-up image.

Source code: j-filters-ii_blur.py
Source code: j-filters-ii_color-depth.py
Source code: j-filters-ii_mix-up.py