Extract text with strikethrough from image
问题 Here's an example image -> I would like to extract text that has text-decoration/styling of strikethrough. So for the above image I would like to extract - de location How would I do this ? Here's what I have so far using OpenCV and python : import cv2 import numpy as np import matplotlib.pyplot as plt im = cv2.imread(<image>) kernel = np.ones((1,44), np.uint8) morphed = cv2.morphologyEx(im, cv2.MORPH_CLOSE, kernel) plt.imshow(morphed) This gives me the horizontal lines -> I am new to image