Paddle Ocr handwritten text and number detection from cheque

568 views Asked by At

I am trying to detect information from check such as pay name and date and other, I want to use paddle OCR currently I am using bounding box to get specific area image which I feed to paddle OCR and get the result

I have tried

enter image description here

with open(r'C:\Users\samir\Desktop\Signature\json\anna.json') as json_file:
    json_data = json.load(json_file)
ocr = PaddleOCR(use_angle_cls=True, lang='en')

if "amount in words" in region_name:
    result = ocr.ocr(gray, det=False, cls=False)
    print("amount in words",result)

enter image description here

0

There are 0 answers