Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Namit2111
/
id_verfiy
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
id_verfiy
/
ocr.py
Namit2111
Update ocr.py
bed3833
almost 2 years 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