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
main
id_verfiy
/
ocr.py
Namit2111
Update ocr.py
bed3833
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
import
easyocr
def
ocr
(
img,reader
):
result = reader.readtext(img,detail=
0
)
if
len
(result)>
1
:
return
True
return
False