Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Text Recognition

import pytesseract
import cv2

img = cv2.imread('test.jpg')
img = cv2.resize(img, (720, 480))

cv2.imshow('Result', img)
cv2.waitKey(0)
Source by www.topcoder.com #
 
PREVIOUS NEXT
Tagged: #Python #Text #Recognition
ADD COMMENT
Topic
Name
4+7 =