user1624508
user1624508

Reputation: 49

Read form fields from an image for OCR using java

I'm just extracting text from image but when I try to process form program doesn't work for character extraction due to form boundaries. How to extract characters from a form which contains boundaries?

Upvotes: 1

Views: 527

Answers (1)

ankita sharma
ankita sharma

Reputation: 57

Recognize the lines in the form , collect their positions in an array and write the image without considering values in the array using ImageIO.write

Upvotes: 2

Related Questions