All Projects → ribab → quadart

ribab / quadart

Licence: MIT License
Python module for producing quad-tree art

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to quadart

elm-generative
Making generative art in Elm
Stars: ✭ 23 (-30.3%)
Mutual labels:  art
text2painting
Convert text into beautiful artistic images
Stars: ✭ 55 (+66.67%)
Mutual labels:  art
ofxOilPaint
An oil painting simulation addon for openFrameworks
Stars: ✭ 45 (+36.36%)
Mutual labels:  art
Acid.Cam.v2.OSX
Acid Cam v2 for macOS distorts video to create art.
Stars: ✭ 91 (+175.76%)
Mutual labels:  art
pixelino
Pixel-drawing app for iOS ✍️
Stars: ✭ 45 (+36.36%)
Mutual labels:  art
staticfuzz
Memories which vanish
Stars: ✭ 15 (-54.55%)
Mutual labels:  art
Pix
🎨 Pix is an online pixel art community where everyone can unleash their creativity on a 16x16 canvas, built with React-Native for iOS devices. 🚀
Stars: ✭ 86 (+160.61%)
Mutual labels:  art
gb-convert
Gameboy tile conversion and map editor tool
Stars: ✭ 26 (-21.21%)
Mutual labels:  art
droste-creator
Create recursive images with the droste effect.
Stars: ✭ 27 (-18.18%)
Mutual labels:  art
ZaneAPI
Image manipulation API for the layman.
Stars: ✭ 12 (-63.64%)
Mutual labels:  wand
durdraw
Animated Unicode, ANSI and ASCII Art Editor for Linux/Unix/macOS
Stars: ✭ 55 (+66.67%)
Mutual labels:  art
multiverse
Adobe Photoshop scripts for making generative art
Stars: ✭ 21 (-36.36%)
Mutual labels:  art
DIP-In-Python
Play around with Pixel in Python
Stars: ✭ 42 (+27.27%)
Mutual labels:  imageio
DrawBot
Repository for DrawBot. The Discord Art bot!
Stars: ✭ 11 (-66.67%)
Mutual labels:  art
Binarify
Convert Images to Binary Art!
Stars: ✭ 15 (-54.55%)
Mutual labels:  art
macuahuitl
The "Macuahuitl" Generative Art Toolbox
Stars: ✭ 68 (+106.06%)
Mutual labels:  art
arboles
Mapa de Arbolado Urbano
Stars: ✭ 13 (-60.61%)
Mutual labels:  art
art
Exploring the connections between artworks with deep "Visual Analogies"
Stars: ✭ 73 (+121.21%)
Mutual labels:  art
upstage
UpStage is a platform for cyberformance: remote players combine digital media in real-time for an online audience. All you need is a web browser!
Stars: ✭ 14 (-57.58%)
Mutual labels:  art
random color
⚙️🎨 Rust crate for generating random attractive colors
Stars: ✭ 30 (-9.09%)
Mutual labels:  art

QuadArt

Simple module for generating QuadTree art

featured in codingwithricky.com

Input Output

Image attribution: kstudio on freepik.com

Example usage through shell

Setup:

$ virtualenv --python=python3 env
$ source env/bin/activate
$ pip3 install -r requirements.txt

Run:

$ wget https://image.freepik.com/free-photo/green-apple-with-leaves_1101-453.jpg
$ ./quadart.py green-apple-with-leaves_1101-453.jpg --thresh 40

Example usage as a python module

QuadArt isn't currently a pip module, so you first need to clone it first before you can use it.

Bash:

$ git clone https://github.com/ribab/quadart

Python3:

>>> from quadart import quadart
>>> q = quadart.QuadArt()
>>> q.generate('green-apple-with-leaves_1101-453.jpg')
>>> q.display() # to display without saving
>>> q.save('green-apple-quadart.jpg') # save to file
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].