Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaocc/art
Algorithmic Art Work
https://github.com/kaocc/art
art go image-processing quadtree
Last synced: 1 day ago
JSON representation
Algorithmic Art Work
- Host: GitHub
- URL: https://github.com/kaocc/art
- Owner: KaoCC
- Created: 2020-03-22T20:46:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-25T21:23:43.000Z (about 3 years ago)
- Last Synced: 2024-11-14T21:35:03.577Z (2 months ago)
- Topics: art, go, image-processing, quadtree
- Language: Go
- Size: 39.2 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Art
## QuadTree
Quadtree is a tree data structure in which each node has zero or four children. Here, it is used to create a special kind of encoding that transforms the original image into colorful grids.The algorithm builds a Quadtree by recursively dividing the image into four subimages. For each subimage, the average color and deviation are computed.
Later a priority queue is utilized along with a traversal algorithm to decide which node should be processed and animated first based on the related deviation.![](lenna_animated.gif)
![](ckao_animated.gif)