Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Namit2111
/
id_verfiy
like
1
Runtime error
App
Files
Files
Community
137d023
id_verfiy
/
ocr.py
Namit2111
Create ocr.py
2883069
over 1 year ago
raw
Copy download link
history
blame
138 Bytes
import
easyocr
def
ocr
(
img,reader
):
result = reader.readtext(img,details=
0
)
if
result:
return
True
return
False