Created
July 25, 2024 16:50
-
-
Save farbod-s/dbff6bc693a6f61c7d37f7f48600a3a7 to your computer and use it in GitHub Desktop.
Voronoi Diagram
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
# Source: https://rosettacode.org/wiki/Voronoi_diagram | |
# Dependency: ➜ ~ pip install pillow | |
from PIL import Image | |
import random | |
import math | |
def generate_voronoi_diagram(width, height, num_cells): | |
image = Image.new("RGB", (width, height)) | |
putpixel = image.putpixel | |
imgx, imgy = image.size | |
nx = [] | |
ny = [] | |
nr = [] | |
ng = [] | |
nb = [] | |
for i in range(num_cells): | |
nx.append(random.randrange(imgx)) | |
ny.append(random.randrange(imgy)) | |
nr.append(random.randrange(256)) | |
ng.append(random.randrange(256)) | |
nb.append(random.randrange(256)) | |
for y in range(imgy): | |
for x in range(imgx): | |
dmin = math.hypot(imgx-1, imgy-1) | |
j = -1 | |
for i in range(num_cells): | |
d = math.hypot(nx[i]-x, ny[i]-y) | |
if d < dmin: | |
dmin = d | |
j = i | |
putpixel((x, y), (nr[j], ng[j], nb[j])) | |
image.save("VoronoiDiagram.png", "PNG") | |
image.show() | |
generate_voronoi_diagram(500, 500, 25) |
Author
farbod-s
commented
Jul 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment