“Reconhecimento de texto Python” Respostas de código

Reconhecimento de texto Biblioteca Python

import cv2 
import pytesseract

img = cv2.imread('image.jpg')

# Adding custom options
custom_config = r'--oem 3 --psm 6'
pytesseract.image_to_string(img, config=custom_config)
Dizzy Dotterel

Reconhecimento de texto Python

import pytesseract
import cv2

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

cv2.imshow('Result', img)
cv2.waitKey(0)
Fine Falcon

Respostas semelhantes a “Reconhecimento de texto Python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código