Mosaify Image Filter
Guest post written and illustrated by ↱ Jonathan Frech.
This Python program mosaifies a given image. By pseudo-randomly drawing lines, polygons are defined which are then filled with the original image’s colors.
Gastbeitrag von ↱ Jonathan Frech geschrieben und bebildert.
Dieses Python-Programm mosaifiziert ein gegebenes Bild. Dieser Effekt wird dadurch erreicht, dass pseudozufällige Strecken gezeichnet werden, welche durch ihre Schnittpunkte Polygone definieren. Ebendiese werden anschließend mit den Farbdaten des ursprünglichen Bildes gefüllt.
Mosaify is an image filter written in ↱ Python 2.71 utilizing the Python Imaging Library2. It takes in an input image and outputs a mosaified version of it. (🗎 Sourcecode)
Starting with a blank canvas the size of the original image, lines are randomly drawn, which will most likely intersect to form polygons of different sizes and shapes. Said polygons are filled with the original image’s color at each polygon’s most top-left pixel position.
As a final touch, the lines drawn at the beginning are filled in with one pseudo-randomly chosen surrounding pixel. Because of this, edges are a bit frazzled.
Other appearances can be achieved by changing parameters n and k, which define the number of lines drawn and their distribution (both floating-point numbers larger than zero, by default n = 5 and k = 1). It may also help to run the filter a few times to get a visually pleasing output, as the polygons are pseudo-randomly determined.
The program usage is as follows: python mosaify.py <image file name> [n] [k]



1 | ↑ (2025-03-02, Jonathan Frech): Python 2 hat mich viele Jahre begleitet. 2020 wurde die Sprache abgewickelt. Viel Menschheitszeit und -arbeit wurde vernichtet, da ihre Nachfolgerin in vielerlei, oft subtiler Weise inkompatibel ist. Ich habe gerne Python 2 geschrieben und ab 2017 gerne gegolft. Python 2 hatte für mich einen Charme, der unwiederbringlich fort ist. |
2 | ↑ Python Imaging Library (PIL): https:// |