'Extract text from blurred rotated image in python?

enter image description here

enter image description here

I have lots of image like these. Basically it's rotated and blur in nature. I just want to extract the table that contains items, description and sale. Can you please help me, how to extract that table from these type of image.

I have tried, but it's works for clear and non-rotated image.

pytesseract.pytesseract.tesseract_cmd = r'C:/Program Files/Tesseract-OCR/tesseract.exe'

text = pytesseract.image_to_string(Image.open(d), lang="eng")
print(text)

In our case, image might be rotated like 10, 20, 30, 40, or any angle.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source