I am trying to detect text from image after image processing by using paddlepaddle ocr. but paddle ocr is unable to detect the text.
from paddleocr import PaddleOCR,draw_ocr
ocr = PaddleOCR(use_angle_cls=True, lang='en')
img_path = '123.jpg'
result = ocr.ocr(img_path, cls=True)
r=[]
for line in result:
r.append(line[1][0])
print(r)
[![Image link is here][1]][1]