6 lines
158 B
Python
6 lines
158 B
Python
|
import easyocr
|
||
|
|
||
|
reader = easyocr.Reader(['ar']) # this needs to run only once to load the model into memory
|
||
|
result = reader.readtext('00.jpg')
|
||
|
print(result)
|