Skip to main content

tinyfilter is the computer vision equivalent to micrograd. It convert images into ASCII art using the principles of CNNs (convolutional neural networks).

Project description

tinyfilter

Screenshot 2023-08-05 at 4 52 21 PM

link to PyPi link to license link to license

tinyfilter [^1] is the computer vision equivalent to Andrej Karpathy's micrograd. It convert images into ASCII art using the principles of CNNs (convolutional neural networks).

Unlike other tools of its type, which map pixel darkness to an ASCII character, tinyfilter uses filters and convolution to detect features in an image and prints ASCII characters that correspond to them. This leads to much better results compared to other libraries, especially for smaller images.

[^1]: For consistency, the first letter in "tinyfilter" is always lowercase, even when it begins a sentence.

Installation

To install tinyfilter locally run the command below. When installing python packages such as tinyfilter, I recommend using a virtual environment, but this is optional.

pip install tinyfilter

How to use tinyfilter

To print an image as ASCII characters using tinyfilter run the following command in your terminal. (Replace "image.png" with the name of your image.)

 tinyfilter image.png

You can also import tinyfilter inside a python file or interpreter to do the same thing:

from tinyfilter import tiny_print
tiny_print('image.png')

NOTE: You do not need to specify how many columns wide you want your image to be. tinyfilter automatically prints the image with the exact amount of columns wide your terminal window was at the time the function was called.

Why tinyfilter wins

Screenshot 2023-08-05 at 7 53 28 PM

While other python packages have features that tinyfilter doesn't yet support, tinyfilter clearly does win at one thing: recognizing the important features in an image and focusing on those. In the example above tinyfilter and Ascii-magic bother print images that are 80 columns wide. The difference is that tinyfilter's output is based on where there are edges in the image while Ascii-magic only focuses on where the image is dark and where is it bright.

Examples of tinyfilter

Github logo:

Screenshot 2023-08-05 at 9 53 08 PM

The numbers at the top of the images show how many columns the output is in ASCII characters. The example shows how depite losing large amounts of detail as the image gets smaller, tinyfilter is able to retain important elements of the orginal.

Balloon dog (110 columns):

Screenshot 2023-08-05 at 10 02 38 PM

The balloon dog is a good example of edge detection (notice tinyfilter doesn't print anything when the balloon is solid purple but prints a line when the image transfers to white).

Einstein (271 columns):

Screenshot 2023-08-05 at 10 14 57 PM

The Einstein image is a good example of how tinyfilter can scale to large images.

How tinyfilter works (it's simpler than you think)

To make sense of the terms in this section you will need a little background on CNNs (convolutional neural networks). The design of tinyfilter is based on the technique these networks use called convolution. Reading the first half of this source from IBM should get you up to speed.

The most important part of an image is the lines. Thats what tinyfilter detects using only 5 filters which I hardcoded as numpy arrays (shown below). When the filters are applied to an image, tinyfiler calculates if the feature the filter is detecting for is present. If it is, tinyfilter prints the ASCII character that corresponds to the feature.

BACKSLASH_FILTER = np.array([[3, -1, -1], [-1, 3, -1], [-1, -1, 3]], dtype="int32")
FORWARDSLASH_FILTER = np.array([[-1, -1, 3], [-1, 3, -1], [3, -1, -1]], dtype="int32")
VERTICAL_BAR_FILTER = np.array([[-1, 3, -1], [-1, 3, -1], [-1, 3, -1]], dtype="int32")
HYPEN_FILTER = np.array([[-1, -1, -1], [3, 4, 3], [-1, -1, -1]], dtype="int32")
UNDERSCORE_FILTER = np.array([[-1, -1, -1], [-1, -1, -1], [3, 4, 3]], dtype="int32")

Resources and sources

For more information about resources and their licenses, visit THANKS.txt under this repository.

  • Pillow is a dependency for tinyfilter
  • numpy is a dependency for tinyfilter
  • mypy was used for type checking
  • Black was used for python code formatting
  • This MIT lecutre is a great resource for learning about CNNs and filters. I learned a lot from it and this project would not have been possible without it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tinyfilter-0.1.6.tar.gz (9.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tinyfilter-0.1.6-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file tinyfilter-0.1.6.tar.gz.

File metadata

  • Download URL: tinyfilter-0.1.6.tar.gz
  • Upload date:
  • Size: 9.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.1

File hashes

Hashes for tinyfilter-0.1.6.tar.gz
Algorithm Hash digest
SHA256 699bed0a5a626a16086d7585ff66907d8ed1a169c1278fbb4ee3d8d9ecba620d
MD5 a393d988fdf41ed0d11ebfd52965c333
BLAKE2b-256 34e607df9cbe9ae7e2b0c32bc14d518a551c3083af5c9174c3d3e480ddf6e37f

See more details on using hashes here.

File details

Details for the file tinyfilter-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: tinyfilter-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.1

File hashes

Hashes for tinyfilter-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 eabfffbca495adbd53d49c5ec2864d34d1cee0696ed561404f1c4ec698b69ea2
MD5 11c03e9d7160ea89a990bc08d274ca13
BLAKE2b-256 3a9b44a16105d1654a810ca70b764d189611a1b4e822e702df0c27318df99ba0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page