Note
WIP - Work In Progress
The program converts images into ascii art. Supported image formats:
- PNG
- JPG
- GIF
- PIC
- git clone github.com/Robotozzz/tinyAscii
- cmake
- make
Run with the -i path_to_file parameter
First we get the image, and pixel by pixel we go over it, using BT.601 coefficients
Then we divide the image into small squares, for each of the squares we count its "brightness" and using this brightness we map it to a symbol from a special alphabet
std::string asciiCharacters = " .:-=+*#%@";

