"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

June 22, 2023

Text Detection Models - Vision - GCP - Azure - Tesseract

 GCP - Link


Azure



Tesseract Results

!sudo apt install tesseract-ocr
!pip install pytesseract
import pytesseract
import shutil
import os
import random
try:
from PIL import Image
except ImportError:
import Image
from google.colab import files
uploaded = files.upload()
extractedInformation = pytesseract.image_to_string(Image.open('F1.jpg'))
print(extractedInformation)
view raw ocrteseract.py hosted with ❤ by GitHub





Keep Exploring!!!

No comments: