text-recognition

Google Cloud Vision - Numbers and Numerals OCR

吃可爱长大的小学妹 提交于 2019-12-01 13:55:47
问题 I've been trying to implement an OCR program with Python that reads numbers with a specific format, XXX-XXX. I used Google's Cloud Vision API Text Recognition, but the results were unreliable. Out of 30 high-contrast 1280 x 1024 bmp images, only a handful resulted in the correct output, or at least included the correct output in the results. The program tends to omit some numbers, output in non-English languages or sneak in a few special characters. The goal is to at least output the correct

Is there any iphone Class that converts images to text format?

强颜欢笑 提交于 2019-11-29 23:37:58
问题 I want to develop an iPhone application that is going to convert some sort of images to text formats. I want to know that is there any built-in library for achieving this purpose? 回答1: I suppose you are asking about recognizing text from images (OCR) and not about something like encoding image file into base64 There's no build-in OCR libraries in iPhone. Depending on your budget and what accuracy you trying to achieve, you can try Commertical OCR - MSDK from ABBYY http://abbyy.com/mobileocr

JavaScript text recognition and OCR on <canvas> [closed]

左心房为你撑大大i 提交于 2019-11-29 00:08:35
I found a web application that recognizes handwritten math equations: http://webdemo.visionobjects.com/equation.html?locale=default I would like to know if someone knows an app or a tutorial or an open source project that implements this mechanism, because getting it from this webapp is really complex. Note: I just need the equation drawn in the canvas to be translated in an input text box that's all. Jack burridge Tesseract OCR has been ported to JavaScript . Google Cloud Vision is a very accurate OCR service, and it's free for up to 1000 requests per month . It's also easy to use via its

Google Mobile Vision Text API Example

北城余情 提交于 2019-11-28 05:29:10
I am currently writing code that should be able to view a picture of text and then extract the text from the picture for android based devices. I did some research online and found that Google provides their own API called "Mobile Vision" (a package with many items i.e. text recognition, facial recognition, etc). However, in their demos they only demonstrate live text recognition. I was wondering if anyone could give me an example of text recognition on a still image using the Mobile Vision API. Any help is welcome. Thanks. The Google Play Services Mobile Vision API Documentation describes how

C/C++/Objective-C text recognition library [closed]

半腔热情 提交于 2019-11-28 03:29:53
Does anyone know of any free/open-source text recognition libraries in C/C++/Objective-C? Basically something that can scan an image, and read out all of the plain text. rxin The most famous one is Tesseract OCR developed initially by Motorola and later become open source. It is also promoted by Google. There are a few more, perhaps not as famous as Tesseract: http://en.wikipedia.org/wiki/OCRopus http://jocr.sourceforge.net/ Here is an interesting article on how to extract numbers from picture. The author collects large number of samples to train his neural networks algorithm and I believe

JavaScript text recognition and OCR on <canvas> [closed]

天涯浪子 提交于 2019-11-27 15:14:00
问题 I found a web application that recognizes handwritten math equations: http://webdemo.visionobjects.com/equation.html?locale=default I would like to know if someone knows an app or a tutorial or an open source project that implements this mechanism, because getting it from this webapp is really complex. Note: I just need the equation drawn in the canvas to be translated in an input text box that's all. 回答1: Tesseract OCR has been ported to JavaScript. 回答2: Google Cloud Vision is a very

Google Mobile Vision Text API Example

你。 提交于 2019-11-27 05:35:30
问题 I am currently writing code that should be able to view a picture of text and then extract the text from the picture for android based devices. I did some research online and found that Google provides their own API called "Mobile Vision" (a package with many items i.e. text recognition, facial recognition, etc). However, in their demos they only demonstrate live text recognition. I was wondering if anyone could give me an example of text recognition on a still image using the Mobile Vision

C/C++/Objective-C text recognition library [closed]

安稳与你 提交于 2019-11-27 05:08:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Does anyone know of any free/open-source text recognition libraries in C/C++/Objective-C? Basically something that can scan an image, and read out all of the plain text. 回答1: The most famous one is Tesseract OCR developed initially by Motorola and later become open source. It is also promoted by Google. There