How to OCR an Index in Python with PyTesseract (OCR in Python Tutorials 03.01)

preview_player
Показать описание
If you enjoy this video, please subscribe.

If there's a specific video you would like to see or a tutorial series, let me know in the comments and I will try and make it.

You can follow me at:
Рекомендации по теме
Комментарии
Автор

In-depth OCR intuition video. Thank you, sir.

yashnimavat
Автор

Thank you sir, this content is amazing!

kalebteshome
Автор

please help, I added a file in the data directory and tried to do Image.open and it says " no such file or directory. Please help! 
I have checked that the new file is in the files, but PIL does not see it for some reason.

FileNotFoundError Traceback (most recent call last)
in <module>
1 #open file
----> 2 img = Image.open(img_file)

in open(fp, mode, formats)
3090
3091 if filename:
-> 3092 fp = builtins.open(filename, "rb")
3093 exclusive_fp = True

FileNotFoundError: [Errno 2] No such file or directory: 'data/page_04.jpg'"

ppmanguin