An ascii art generator that's actually good. Does edge detection and selects the most appropriate characters.
Project description
Ascii Artist
An ascii art generator that's actually good. Does edge detection and selects the most appropriate characters.
Installing
Installing with pip:
pip install asciiartist
Installing from wheel:
Download the wheel file from this project's releases and run
pip install <path/to/wheel>
Quick Start
from asciiartist import asciiartist, display_edges
from PIL import Image
img = Image.open("niko.png")
art, edges = asciiartist(
img, # The image!
30, # Number of lines of the output ascii art
noise_reduction=2, # Level of noise reduction (optional)
line_weight=1, # Weight of the lines to draw (optional)
text_ratio=2.2 # Height/width ratio of each character (optional)
)
print(art) # `art` is a string u can just print
# v Display the result of edge detection.
# Good for finetuning params.
display_edges(edges)
Build from Source
Run the script ./model/model-gen.py
and build the wheel with poetry build -f wheel
.
How it works
Roughly, how Ascii Artist generates the drawings:
- Run edge detection
- Segment the image for each char
- Pass each segment through a CNN to get the most appropriate character.
The CNN is trained with distorted images of characters (in font consolas), created in a way that emulates the output of the edge detection.
Bye
^-^
__=E.L__
>#-=@>@F* `<_
_/`@o<FTFC@[_~_.__
_./`\_`<__ @@7*`
_,~`` *v `^L_ )(
_,~^C___ _ ````*@```````
__,;@"*'`C` *@@_ _-V
__,@'^`CC)-[_L-----o,,}<@F--
__,-Ec>C<4@'C`'`"-[_,/ _,L-L ,"
-````` ```` _-'
_ _ __~``
`` "<` _
`(V\_
`V(<_
_____,,~~<7oEE(@@_Eo@@Fo,
___,-~-^```` .-.__V) ,_
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file asciiartist-0.5.4.tar.gz
.
File metadata
- Download URL: asciiartist-0.5.4.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.7.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f02b93509dd99feda953141f87041a11fdec3edf3d47da5d6ab0011a57635e8 |
|
MD5 | ce62b032f112c42967c8aea60e7156ab |
|
BLAKE2b-256 | 2101c9dc763b314863bd6041623406fe1206ca40e14bc4833bbdf6745cb011a4 |
File details
Details for the file asciiartist-0.5.4-py3-none-any.whl
.
File metadata
- Download URL: asciiartist-0.5.4-py3-none-any.whl
- Upload date:
- Size: 3.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.7.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff4b2abb25fd631ad11b5117e408b3967670d2a86cf258f4a903f68c550af8dd |
|
MD5 | 3b8f2e19bbd83dfdf091ffe3f3159fe4 |
|
BLAKE2b-256 | 310c4bc3d1956479746846e4311206b15017698eb79771c4a84f94b6a1be5d82 |