https://github.com/kaocc/art
Algorithmic Art Work
https://github.com/kaocc/art
art go image-processing quadtree
Last synced: 27 days ago
JSON representation
Algorithmic Art Work
- Host: GitHub
- URL: https://github.com/kaocc/art
- Owner: KaoCC
- Created: 2020-03-22T20:46:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-25T21:23:43.000Z (over 4 years ago)
- Last Synced: 2025-03-04T14:49:42.690Z (over 1 year 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.

