In my experience, OCR libraries tend to merely output the text found within an image but not where the text was found. Is there an OCR library that outputs both the words found within an image as well as the coordinates (x, y, width, height
) where those words were found?
相关问题
- How to get the bounding box of text that are overl
- How to improve OCR accuracy?
- How to get Ocrad.js example to work [closed]
- Changing image DPI for usage with tesseract
- Using Ruby And Ubuntu With Optical Character Recog
相关文章
- I want to sort the words extracted from image in o
- Moroccan License Plate Recognition (LPR) using Ope
- Tesseract thinks my 1's are 7's
- How to hide the console window when I run tesserac
- Recognizing numbers in an image in java
- OCR code in android platform [duplicate]
- tesseract OCR in iphone application
- What is a good OCR that can detect handwriting? [c
Google Vision API does this. https://cloud.google.com/vision/docs/detecting-text
ABCocr.NET (our component) will allow you to obtain the coordinates of each word found. The values are accessible through the Word.Bounds property, which simply returns a System.Drawing.Rectangle.
The example below shows how you can OCR an image using ABCocr.NET and output the information you need:
Disclosure: posted by a member of the WebSupergoo team.
The free OCR.space OCR API returns word coordinates once you set the parameter
isOverlayRequired = true
: