- Row1 : Low resolution, Row2 : Medium resolution
- Left : source, Middle : Derivative, Right : Binarized

Create an image made with texts out of an image.
This small toy is to study python.
OpenCV (Probably any version will fit)
from ImageTextifier import ImageTextifier
import cv2
def simple_example():
textifier = ITEX.ImageTextifier()
result_text, result_image = textifier.textify(cv2.imread("img_path.jpg"))- For more options, refer to full_function_example() in example.py
- Prepare alphabets, numbers, and characters
- Make those as a set of binary images
- Preprocess : Source(wid * hi) to gray, blur, canny
- Begin comparing
- Divide ROI mask into blocks(Higher blocks means higher resolution)
- Compare each block with pre-maid text images, and choose one with the highest score
- Return
- texts
- an image with texts on it
- Make the result look better
- Python environment setup using Conda
- Basic OpenCV & NumPy
- Basic multiprocess module & Timer