| 123456 |
- from PIL import Image
- import pytesseract
- file = Image.open(
- 'C:/Users/Caner/Desktop/pyton-invoices-ocr/20220411_one_line_data_date/20220411_one_line_data_rebot num/000006.jpg')
- result = pytesseract.image_to_string(file, lang='rebot', config='--psm 7')
- print(result)
|