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

前端 未结 2 1881
无人共我
无人共我 2021-01-03 15:09

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 pu

2条回答
  •  北海茫月
    2021-01-03 15:44

    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/iphone - high accuracy, customer support, etc. but costs money. Disclaimer: I work for ABBYY
    • Open Source OCR - Tesseract http://code.google.com/p/tesseract-ocr/ - completely free, but less accurate. This sample shows how to run it on iPhone: https://github.com/nolanbrown/Tesseract-iPhone-Demo

提交回复
热议问题