I was wondering if anybody had any suggestions or would be able to point me in the right direction to resources where I could better learn how to fine tune my image processing parameters.
I am currently using Jupyter Notebooks, but if anybody suggests accessing Tesseract differently, please let me know.
My Code:
from PIL import Image
column = Image.open('tiktoktest.png')
gray = column.convert('L')
blackwhite = gray.point(lambda x: 0 if x < 200 else 255, '1')
blackwhite.save("tiktok.jpg")
text_from_image = pytesseract.image_to_string(Image.open('tiktok.jpg'))
print(text_from_image)