2883069
1
2
3
4
5
6
7
8
9
import easyocr def ocr(img,reader): result = reader.readtext(img,details=0) if result: return True return False