Spaces:
Running
Running
File size: 400 Bytes
d69917c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from ObjCharRec import ocr_with_paddle
from textblob import TextBlob
def demo():
paths = ['Images/download.jpeg', 'Images/download.png', 'Images/hq720.jpg', 'Images/testocr.png']
l = []
for img in paths:
text = ocr_with_paddle(img)
txtblob = TextBlob(text)
l.append(str(txtblob.correct()))
return l
if __name__ == "__main__":
print(demo()) |