Processing like API for differentiable vector graphics
Project description
$D\text{py}5$ - Processing-like Differentiable Vector Graphics
dpy5 provides a Processing-inspired API (e.g., push(), pop(), fill(), stroke(), line(), curve()) for building differentiable 2D vector scenes. Under the hood it uses pydiffvg and PyTorch, so all parameters are tensors and gradients can flow through the rendering process. It provides an "immediate mode" API on top of DiffVG, making it easier to experiment and build geometry through the composition of differentiable operations.
dpy5 can be used standalone in Python scripts or Jupyter notebooks, but its API is almost identical to Py5canvas, so it can also be used alongside it to create sketches that take advantage of differentiable rasterization.
Installation
Prerequisites:
Install locally by cloning this repository and then
pip install -e .
Intall from pyPi
Note that this will not install diffvg and the library is new and potentially has bugs. So the PyPi package may not include the latest fixes:
pip install dpy5
Quick Start
import torch
from dpy5 import DiffCanvas
# Create a canvas (width, height)
c = DiffCanvas(256, 256)
c.background(1.0) # white background
c.fill(1.0, 0.0, 0.0, 1.0) # red
c.stroke(0.0) # black stroke
c.stroke_weight(2.0)
c.polyline([[50, 50], [200, 50], [200, 200], [50, 200]], close=True)
# Render the scene (differentiable, img contains the resulting tensor)
img = c.render() # Returns tensor
c.get_image()
The corresponding DiffVG scene is cleared when background is called (think of it as a begin) and then re-constructed each time as drawing commands are called. Calling render rasterizes the scene while allowing gradient propagation to any parameter used in the drawing procedures.
A typical optimization loop, involves re-drawing the scene at each step and using the otuput of render to compute some loss function with respect to the rendered image.
Optimization
All drawing functions accept python sequences (e.g. lists, tuples, numpy arrays or pytorch tensors). Passing arguments as tensors with gradients enabled (requires_grad=True) will enable gradient propagation to the correponding variable. While you can do so explictly (e.g. c.polyline(some_tensor_with_grad)), the API allows you to do so more concisely by using the c.var(value, group_name) syntax.
Optimization variables
The var method returns a PyTorch tensor with requires_grad=True and providing the second group_name argument will cache the tensor so it can be retrieved later together with all the tensors with the same group using c.get_vars(group_name).
The values passed into c.var will be used to initialize the tensor, but subsequent calls to the drawing sequence will use the cached tensor instead of re-creating new ones, as long as the same variable creation order is maintained.
Note: while this caching method saves typing, it expects the drawing order and tensor sizes to remain unchanged for each step of the optimization.
Example
The following is an example that adapts a series of curves to minimize the L1 error with a target image and displays the results:
import os
import torch
import matplotlib.pyplot as plt
from dpy5 import DiffCanvas
from PIL import Image
from tqdm import tqdm
import numpy as np
target_img = Image.open('./spock256.jpg')
w, h = target_img.size
c = DiffCanvas(w, h)
# This function will be called repeatedly during optimization
# and the `c.var` variables will set on the first call to draw and then
# change during optimization
def draw(c):
c.background(1.0)
c.stroke(0); c.no_fill()
c.stroke_weight(2.0)
n_rows = 25
n_pts = 30
h = (c.height / n_rows)*0.1
for row_y in np.linspace(0, c.height, n_rows+2)[1:-1]:
x = np.linspace(0, c.width, n_pts)
y = row_y + c.var(np.random.uniform(-h, h, n_pts), 'offset')
c.curve(x, y)
c.render(prefiltering=True)
return c.img
# Initial image and target
draw(c)
initial_img = c.get_image()
target = c.to(np.array(target_img.convert('L'))/255)
# Optimization loop
optimizers = [
torch.optim.Adam(c.get_vars('offset'), lr=1.0),
]
for step in tqdm(range(250), 'Opt progress:'):
for opt in optimizers:
opt.zero_grad()
img = draw(c)
loss = (c.img.mean(dim=-1) - target).abs().mean() # L1
loss.backward()
for opt in optimizers:
opt.step()
# Display
plt.figure(figsize=(9,4))
plt.subplot(131)
plt.title('init'); plt.axis('off')
plt.imshow(initial_img)
plt.subplot(132)
plt.title('target'); plt.axis('off')
plt.imshow(target_img)
plt.subplot(133)
plt.title('optimizied'); plt.axis('off')
plt.imshow(c.get_image())
plt.tight_layout()
plt.show()
API Overview
Canvas Setup
canvas = DiffCanvas(width, height, device=None)
width,height: image size in pixels.device: PyTorch device (defaults to CUDA if available).
Rendering
canvas.render(prefiltering=False, num_samples=2, seed=0, sdf=False)
prefiltering: ifTrue, uses an anti‑aliasing prefilter. Produces crisper lines, but does not support variable width strokes and produces artefacts in some cases.num_samples: multisampling level.sdf: ifTrue, outputs a signed distance field.
After rendering, the result is stored in canvas.img. Retrieve it as a PIL image with canvas.get_image() or as a NumPy array with canvas.get_array().
Drawing State
| Method | Description |
|---|---|
fill(*args) |
Set fill color. Accepts 1-4 numbers/tensors. |
stroke(*args) |
Set stroke color. |
stroke_weight(w) |
Set line width. |
push() / pop() |
Save/restore transformation and style. |
push_matrix() / pop_matrix() |
Save/restore only the transformation matrix. |
push_style() / pop_style() |
Save/restore only style attributes. |
translate(x, y) |
Apply translation. |
rotate(angle) |
Apply rotation (in radians by default). |
scale(sx, sy) |
Apply scaling. |
identity() / reset_matrix() |
Reset the current transformation to identity. |
angle_mode(mode) |
Set angle mode: 'radians' or 'degrees'. |
rect_mode(mode) |
(future) Set rectangle drawing mode. |
ellipse_mode(mode) |
(future) Set ellipse drawing mode. |
fill_rule(rule) |
Set fill rule: 'evenodd', 'nonzero', 'winding'. |
curve_tightness(val) |
Set tension for cardinal splines (0‑1, default 0.5). |
Drawing Primitives
| Method | Description |
|---|---|
line(x0, y0, x1, y1) or line([x0,y0], [x1,y1]) |
Draw a straight line. |
polyline(points, close=False) |
Draw an open or closed polyline. |
multibezier(points, close=False) |
Draw a sequence of cubic Bézier segments. |
curve(points, close=False) |
Draw a smooth cardinal spline through the given points. |
shape(obj, close=False) |
Draw a Shape object or a list of polylines. |
rect(x, y, w, h, radius=None) or rectangle(...) |
Draw a rectangle. Optional radius for rounded corners. |
square(x, y, size) |
Draw a square. |
ellipse(x, y, w, h) |
Draw an ellipse. |
circle(x, y, r) |
Draw a circle. |
triangle(a, b, c) |
Draw a triangle from three points. |
quad(a, b, c, d) |
Draw a quadrilateral from four points. |
Complex Shapes
Build shapes piece by piece, similar to Processing’s beginShape() / endShape():
canvas.begin_shape()
canvas.begin_contour()
canvas.vertex(0, 0)
canvas.bezier_vertex(100, 50, 200, 50, 300, 0)
canvas.end_contour()
canvas.begin_contour()
canvas.curve_vertex(0, 200)
canvas.curve_vertex(100, 150)
canvas.curve_vertex(200, 150)
canvas.curve_vertex(300, 200)
canvas.end_contour(close=True)
canvas.end_shape()
The Shape class can also be used standalone:
s = Shape(tension=0.5)
s.begin_shape()
s.vertex(...)
s.end_shape()
canvas.shape(s)
Calling canvas.shape(s) multiple times will instance the same geometry with the current transformation, reusing the underlying pydiffvg paths.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dpy5-0.0.3.tar.gz.
File metadata
- Download URL: dpy5-0.0.3.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94b669cacc61aecba93883b01aef1632bd12938b46486e4a0aa75486fe35a475
|
|
| MD5 |
40b426cec4ae224e5dc935a81f8aa3bd
|
|
| BLAKE2b-256 |
6a5e50dddc4e017b1241f01737e5ab4698f3ea4d55ce54226a1b63f5f8dfd93f
|
File details
Details for the file dpy5-0.0.3-py3-none-any.whl.
File metadata
- Download URL: dpy5-0.0.3-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dacb1512957476929edc706f65cf808256322233a528a24943b51ccbc82c9e76
|
|
| MD5 |
dd3fc23107418dea2fc49fe34e1d2fd7
|
|
| BLAKE2b-256 |
308e4a41bf11b689bc9ecc4189d58bade8dd2eac54ce5d3706c7f9115e6ca56f
|