Last active
October 6, 2023 08:01
-
-
Save neozhaoliang/02754b488de2de857a57e98ac6e59168 to your computer and use it in GitHub Desktop.
Given an input image, convert it to a circle packing pattern
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
import cv2 | |
import cairocffi as cairo | |
import numpy as np | |
import taichi as ti | |
ti.init(arch=ti.cpu) | |
scale = 5 | |
@ti.dataclass | |
class Circle: | |
x : int | |
y : int | |
r : int | |
circles = Circle.field() | |
ti.root.dynamic(ti.i, 100000, chunk_size=64).place(circles) | |
def load_image(imgfile): | |
image = cv2.imread(imgfile) | |
h, w = image.shape[:2] | |
image = cv2.resize( | |
image, (int(scale * w), int(scale * h)), | |
interpolation=cv2.INTER_AREA | |
) | |
return cv2.cvtColor(image, cv2.COLOR_BGR2RGB) | |
def get_dist_transform_image(image): | |
canny = cv2.Canny(image, 100, 200) | |
edges_inv = 255 - canny | |
dist_image = cv2.distanceTransform(edges_inv, cv2.DIST_L2, 0) | |
return dist_image | |
@ti.kernel | |
def add_new_circles(filled: ti.types.ndarray(), | |
dist_image: ti.types.ndarray(), | |
min_radius: int, max_radius: int) -> int: | |
H, W = dist_image.shape[0], dist_image.shape[1] | |
ti.loop_config(serialize=True) | |
for x in range(min_radius, W - min_radius): | |
for y in range(min_radius, H - min_radius): | |
valid = True | |
if dist_image[y, x] > min_radius: | |
r = int((dist_image[y, x] + 1) / 2) | |
r = ti.min(r, max_radius) | |
if not filled[y, x] and r <= x < W - r and r <= y < H - r: | |
for ii in range(x - r, x + r + 1): | |
for jj in range(y - r, y + r + 1): | |
if (ii - x) ** 2 + (jj - y)**2 < (r + 1) ** 2: | |
if filled[jj, ii]: | |
valid = False | |
break | |
if not valid: | |
break | |
if valid: | |
circles.append(Circle(x, y, r)) | |
for ii in range(x - r, x + r + 1): | |
for jj in range(y - r, y + r + 1): | |
if (ii - x)**2 + (jj - y)**2 < (r + 1)**2: | |
filled[jj, ii] = 1 | |
return circles.length() | |
def plot_cirlces(image, ctx, n): | |
for i in range(n): | |
c = circles[i] | |
fc = image[c.y, c.x] / 255 | |
if all(fc < 0.1): | |
ec = (0.5, 0.5, 0.5) | |
else: | |
ec = (0, 0, 0) | |
ctx.arc(c.x, c.y, c.r, 0, 2*np.pi) | |
ctx.set_source_rgb(*fc) | |
ctx.fill_preserve() | |
ctx.set_source_rgba(*ec) | |
ctx.stroke() | |
def main(imgfile): | |
image = load_image(imgfile) | |
dist_image = get_dist_transform_image(image) | |
image = cv2.GaussianBlur(image, (5, 5), 0) | |
H, W = image.shape[:2] | |
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, W, H) | |
ctx = cairo.Context(surface) | |
ctx.set_source_rgb(0, 0, 0) | |
ctx.paint() | |
filled = np.zeros([H, W], dtype=np.int32) | |
R = [150, 120, 100, 80, 50, 30, 25, 20, 15, 10, 7, 5, 3, 2] | |
for i in range(1, len(R)): | |
n = add_new_circles(filled, dist_image, R[i], R[i - 1]) | |
ctx.set_line_width(1) | |
plot_cirlces(image, ctx, n) | |
surface.write_to_png("circle_packing_result.png") | |
if __name__ == '__main__': | |
main("input.png") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A test image.