GCP - Link
Azure
Tesseract Results
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!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) | |
Keep Exploring!!!
No comments:
Post a Comment