-2

I am trying to read characters from the captcha image using OCR engine. Unfortunately, I am unable to get a proper result. The image is being read as

:
18<?.< rest of the content is trimmed due to evaluation restriction>.

Which OCR I should implement and use in Java so that every character is read with 100% accuracy.

enter image description here

James Z
  • 12,209
  • 10
  • 24
  • 44
hdhj
  • 1
  • 2

1 Answers1

1

Looking at the image, it looks like a captcha. Instead of reading it as a whole you can segment the letters first using a library like OpenCV (link).(Maybe the findContours() method) Once you have every letter seperately, you can apply your OCR and then combine the results obtained.

unholy_me
  • 460
  • 3
  • 14