image-triangles/README.md
Jack Wines 0ef4f9b654
svg -> jpeg | different voronoi diagram method
Svg diagrams backend to jpeg was to make it easier to render & share.
The existing method stressed firefox if too many shapes were there.

The new voronoi diagram method is much faster. Examples now take
approximately 40 seconds to render as opposed to the 5-10 minutes
previously.

In short, it no longer makes the Delunay triangulation. It feeds the 20
closest points to the candidate midpoint. Those points turn out to be
enough, no need to construct the planar graph.

Additionally, dependencies were bumped.
2024-06-07 02:53:06 -04:00

29 lines
868 B
Markdown

# image-triangles
Makes a [voroni diagram](https://en.wikipedia.org/wiki/Voronoi_diagram) and fills each cell with the average color the image below in.
### examples
![Sierra mountains original](examples/sierra.jpeg)
![Sierra mountains post-filter](examples/sierra-result.jpeg)
![Hawaii original](examples/birds-eye-view.png)
![Hawaii post-filter](examples/birds-eye-view-result.jpeg)
![Dog original](examples/luna.jpeg)
![Dog post-filter](examples/luna-result.jpeg)
### to run:
#### with nix
```
nix run --experimental-features "nix-command flakes" ".#" -- --minDistance 0.02 --input examples/birds-eye-view.png --output output.jpeg
```
#### with cabal
Install [cabal & ghc](https://www.haskell.org/ghcup/) if you don't have them.
```
cabal update
cabal run image-triangles -- --minDistance 0.02 --input examples/birds-eye-view.png --output output.jpeg
```