archaic
v2.0.1
Published
Reproduce images from geometric primitives.
Downloads
136
Maintainers
Readme
archaic
Reproduce images from geometric primitives (Node.js + browser port of primitive), forked from transitive-bullshit/primitive.
Table of Contents
Install
npm install --save archaic
# or
yarn add archaic
# or
bun install archaic
Usage
Archaic is usable from both Node.js and browser environments. Most of the API options between the two are the same, with minor differences in input and output configurations.
Available shape types:
- triangle
- circle
- ellipse
- rotated-ellipse
- rectangle
- rotated-rectangle
- random (will use all the shape types)
How It Works
A target image is provided as input. The algorithm tries to find the single most optimal shape that can be drawn to minimize the error between the target image and the drawn image. It repeats this process, adding one shape at a time. Around 50 to 200 shapes are needed to reach a result that is recognizable yet artistic and abstract.
This GIF demonstrates the iterative nature of the algorithm, attempting to minimize the mean squared error by adding one shape at a time (use a ".gif" output file to generate one yourself).
Node API
Reproduces the given input image using geometric primitives.
Returns a Promise for the generated model.
Available output formats:
- png
- jpg
- svg
- gif
Type: function (opts): Promise
opts
Object Configuration optionsopts.input
string Input image to process (can be a local path, http url, or data url)opts.output
string? Path to generate output imageopts.numSteps
number Number of steps to process [1, 1000] (optional, default200
)opts.minEnergy
number? Minimum energy to stop processing early [0, 1]opts.shapeAlpha
number Alpha opacity of shapes [0, 255] (optional, default128
)opts.shapeType
string Type of shapes to use (optional, defaulttraingle
)opts.numCandidates
number Number of top-level candidates per step [1, 32] (optional, default1
)opts.numCandidateShapes
number Number of random candidate shapes per step [10, 1000] (optional, default50
)opts.numCandidateMutations
number Number of candidate mutations per step [10, 500] (optional, default100
)opts.numCandidateExtras
number Number of extra candidate shapes per step [0, 16] (optional, default0
)opts.onStep
function? Optional async function taking in the model and step indexopts.log
function Optional logging function (console.log to enable logging) (optional, defaultnoop
)
Browser API
Reproduces the given input image using geometric primitives.
Optionally draws the results to an HTML canvas.
Returns a Promise for the generated model.
Type: function (opts): Promise
opts
Object Configuration optionsopts.input
(string | Image | ImageData) URL, Image, or ImageData of input image to processopts.output
(string | HTMLCanvasElement)? Selector or DOM Element of HTMLCanvas to draw resultsopts.numSteps
number Number of steps to process [1, 1000] (optional, default200
)opts.minEnergy
number? Minimum energy to stop processing early [0, 1]opts.shapeAlpha
number Alpha opacity of shapes [0, 255] (optional, default128
)opts.shapeType
string Type of shapes to use (optional, defaulttraingle
)opts.numCandidates
number Number of top-level candidates per step [1, 32] (optional, default1
)opts.numCandidateShapes
number Number of random candidate shapes per step [10, 1000] (optional, default50
)opts.numCandidateMutations
number Number of candidate mutations per step [10, 500] (optional, default100
)opts.numCandidateExtras
number Number of extra candidate shapes per step [0, 16] (optional, default0
)opts.onStep
function? Optional async function taking in the model and step indexopts.log
function Optional logging function (console.log to enable logging) (optional, defaultnoop
)
Related
There are several other ports of the primitive algorithm, including at least two JavaScript ports that I'm aware of. This module isn't necessarily better; I created it out of pure fascination.
- primitive - The module this library was forked from.
- primitive-cli - CLI version of the module above.
- primitive - Original Go version by Michael Fogleman.
- primitive.js - JavaScript (browser) port by Ondřej Žára.
- geometrize - Haxe and C++ ports by Sam Twidale.
- node-primitive - Node.js port by Vincent Desmares.
- sqip - An SVG-based LQIP library built on top of the original primitive.
Examples
License
MIT © Giorgio Garasto
Original project by Travis Fischer.