/ai_printer

Artificial intelligence printer, real time image recognition

Primary LanguageShellThe UnlicenseUnlicense

Super Tiger AI Printer 1.2.1

Artificial intelligence printer, REAL time image recognition.

Written by 张春哲 with love. Contact: sepmein@gmail.com

1. HardWare and Frameworks

1.1 Realtime image recognition framework

tensorflow

This framework used full CNN

Convolutional Neural Network

CNN

1.2 SnapMaker 2.0

SnapMaker

1.3 RasperryPI 4.0 Pro

Rasperry

2. Install and Usage

2.1 Getting started

See the install guide for the pip package, to enable GPU support, use a Docker container, and build from source.

To install the current release, which includes support for CUDA-enabled GPU cards (Ubuntu and Windows):

$ pip install tiger-printer

2.2 Basic Usage

Run the following code in your terminal

$ echo -e "\e[1;40m" ; clear ; while :; do echo $LINES $COLUMNS $(( $RANDOM % $COLUMNS)) $(( $RANDOM % 72 )) ;sleep 0.05; done|awk '{ letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()"; c=$4; letter=substr(letters,c,1);a[$3]=0;for (x in a) {o=a[x];a[x]=a[x]+1; printf "\033[%s;%sH\033[2;32m%s",o,x,letter; printf "\033[%s;%sH\033[1;37m%s\033[0;0H",a[x],x,letter;if (a[x] >= $1) { a[x]=0; } }}'