Skip to content

With the EasyOCR library, the software can recognize up to 80 languages. Using the OpenCV library, we can recognize text in realtime.

Notifications You must be signed in to change notification settings

Michael-BJ/Text-Recognition-Using-EasyOCR-Realtime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

How it's works

  1. Import the library that we need
import cv2
import numpy as np
from matplotlib import pyplot as plt
import easyocr

First install the pytoch library before installing the easyocr library. The pytorch library can be downloaded from here (https://pytorch.org/). 2. Add the image you want to use for identification

img_path = "stop.jpg"

3.Load the model into memory

reader = easyocr.Reader(['en'], gpu = False)
  1. Make a program that can read and identify images, also print the result
result = reader.readtext(img_path)
print (result)

Demo

Clik the picture to see the Video Watch the video

About

With the EasyOCR library, the software can recognize up to 80 languages. Using the OpenCV library, we can recognize text in realtime.

Topics

Resources

Stars

Watchers

Forks

Languages