I use a Python Module EasyOCR for extracting text from image. This Method works for PNG Format but in TIFF Situation give me a error
Code look like this:
import easyocr
import cv2
from matplotlib import pyplot as plt
import numpy as np
IMAGE_PATH = 'IMG_4022.tif'
reader = easyocr.Reader(['en'], gpu=False)
result = reader.readtext(IMAGE_PATH)
result
I work with Juypter Notebook