JAIDED- AI(OCR Owner) uses the OCR mainly to Extract key informations from
ID Card / Passport / Identification Document.
Suitable to incorporate into KYC processing.
If you need to check simple text in the images you can use the OCR library available on easy_ocr.
- Run these commands to install pytorch.
!pip install torch torchvision torchaudio
- Run these commands to install easy_ocr.
!pip install easyocr
- Run these commands to import Libraries
import easyocr
import cv2
import matplotlib.pyplot as plt
import numpy as np
Read the image using easyocr module and store the results into variable.
Use the saved result to display on the image itself to rectify.